/* ============================================
   SAIGON SPIRITS - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700;900&family=Permanent+Marker&family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --black: #1c1c1c;
  --white: #ffffff;
  --pink: #ff0090;
  --blue: #0f9cfe;
  --green: #28e831;
  --dark-bg: #111111;
  --card-bg: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --font-header: 'League Spartan', sans-serif;
  --font-brush: 'Permanent Marker', cursive;
  --font-body: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark-bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Age Gate ── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}
#age-gate.hidden { display: none; }
.age-gate-inner {
  max-width: 560px;
  animation: fadeInUp 0.8s ease both;
}
.age-gate-logo { width: 200px; margin: 0 auto 2rem; }
.age-gate h1 {
  font-family: var(--font-header);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.age-gate h1 span { color: var(--pink); }
.age-gate p { color: rgba(255,255,255,0.6); margin-bottom: 3rem; font-size: 0.95rem; line-height: 1.7; }
.age-gate-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: nowrap; margin-top: 1.2rem; padding: 0.6rem 0; }
.btn-age-yes {
  background: var(--pink); color: var(--white);
  font-family: var(--font-header); font-weight: 700; font-size: 1rem;
  padding: 0.6rem 2rem; border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-age-yes:hover { background: #d40079; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,144,0.4); }
.btn-age-no {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.6);
  font-family: var(--font-header); font-weight: 400; font-size: 1rem;
  padding: 0.6rem 2rem; border-radius: 50px;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-age-no:hover { border-color: var(--white); color: var(--white); }
.age-gate-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 2.5rem; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
nav.scrolled {
  background: rgba(17,17,17,0.97);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border);
}
nav.menu-open {
  background: rgba(17,17,17,0.99);
}
.nav-logo { height: 62px; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-header); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--pink); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: flex; gap: 0.25rem;
  background: rgba(255,255,255,0.08); border-radius: 20px; padding: 3px;
}
.lang-btn {
  font-family: var(--font-header); font-weight: 700; font-size: 0.75rem;
  padding: 0.25rem 0.65rem; border-radius: 16px;
  color: rgba(255,255,255,0.5); transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--pink); color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-bg);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; font-size: 1.5rem;
    transform: translateX(100%); transition: var(--transition);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--dark-bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,0,144,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(15,156,254,0.22) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 20%, rgba(40,232,49,0.18) 0%, transparent 50%);
}
.hero-lotus-bg {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 55%; opacity: 0.04;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 8rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { animation: fadeInLeft 1s ease both; }
.hero-eyebrow {
  font-family: var(--font-brush); font-size: 1.4rem;
  color: var(--pink); margin-bottom: 1rem; display: block;
  letter-spacing: 0.02em;
}
.hero-eyebrow-vi { display: none; }
.hero-title {
  font-family: var(--font-header); font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1;
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero-title .accent-pink { color: var(--pink); }
.hero-title .accent-blue { color: var(--blue); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--pink); color: var(--white);
  font-family: var(--font-header); font-weight: 700; font-size: 0.9rem;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0.6rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,0,144,0.4); }
.btn-secondary {
  border: 2px solid var(--blue); color: var(--blue);
  font-family: var(--font-header); font-weight: 700; font-size: 0.9rem;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0.6rem;
}
.btn-secondary:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,156,254,0.3); }
.hero-bottles {
  position: relative; animation: fadeInRight 1s ease 0.3s both;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: end;
}
.hero-bottle {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.hero-bottle:nth-child(2) { transform: translateY(-30px); }
.hero-bottle img { width: 100%; height: 280px; object-fit: cover; object-position: center top; }
.hero-bottle:hover { transform: translateY(-8px) scale(1.02); }
.hero-bottle:nth-child(2):hover { transform: translateY(-38px) scale(1.02); }

/* ── Section Shared ── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-brush); color: var(--pink); font-size: 1.1rem;
  display: block; margin-bottom: 0.75rem; letter-spacing: 0.02em;
}
.section-title {
  font-family: var(--font-header); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--pink); }
.section-desc { color: rgba(255,255,255,0.65); max-width: 600px; font-size: 1.05rem; line-height: 1.7; }

/* ── About Strip ── */
.about-strip {
  background: var(--black);
  padding: 5rem 2rem;
}
.about-strip .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text { }
.about-philosophy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.phil-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.phil-card:hover { border-color: var(--pink); background: rgba(255,0,144,0.05); }
.phil-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.phil-card h3 { font-family: var(--font-header); font-weight: 700; font-size: 1rem; text-transform: uppercase; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.phil-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.about-visual { position: relative; }
.about-bottle-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-bottle-item { border-radius: var(--radius); overflow: hidden; }
.about-bottle-item img { width: 100%; height: 220px; object-fit: cover; object-position: center top; }
.about-bottle-item:first-child { grid-column: span 2; }
.about-bottle-item:first-child img { height: 300px; }

/* ── Products Page ── */
.products-hero {
  padding: 8rem 2rem 4rem;
  background: var(--dark-bg);
  text-align: center;
  position: relative; overflow: hidden;
}
.products-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,144,0.12) 0%, transparent 70%);
}
.products-hero .container { position: relative; z-index: 1; }
.products-filter {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.filter-btn {
  font-family: var(--font-header); font-weight: 700; font-size: 0.8rem;
  padding: 0.5rem 1.25rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid var(--border); color: rgba(255,255,255,0.5);
  transition: var(--transition); background: transparent;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--pink); color: var(--pink); background: rgba(255,0,144,0.08); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem; padding: 3rem 2rem 6rem; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--pink); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-card-img {
  height: 320px; overflow: hidden; position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--card-bg), transparent);
}
.product-type-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(17,17,17,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 20px;
  font-family: var(--font-header); font-weight: 700; font-size: 0.7rem;
  padding: 0.3rem 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  z-index: 1; color: rgba(255,255,255,0.7);
}
.product-card-body { padding: 1.5rem; }
.product-name {
  font-family: var(--font-header); font-weight: 900;
  font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.25rem;
}
.product-tagline { font-family: var(--font-brush); color: var(--pink); font-size: 1rem; margin-bottom: 1rem; }
.product-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.5rem; }
.product-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.meta-tag {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 20px; padding: 0.3rem 0.75rem;
  font-family: var(--font-header); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6);
}
.product-usps { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.product-usps li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding-left: 1.25rem; position: relative; }
.product-usps li::before { content: '✦'; position: absolute; left: 0; color: var(--pink); font-size: 0.6rem; top: 4px; }
.btn-view-cocktails {
  display: block; width: 100%; text-align: center; margin-top: 1.5rem;
  background: transparent; border: 1px solid var(--pink); color: var(--pink);
  font-family: var(--font-header); font-weight: 700; font-size: 0.85rem;
  padding: 0.5rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1.8rem;
  transition: var(--transition);
}
.btn-view-cocktails:hover { background: var(--pink); color: var(--white); }

/* ── Cocktails Page ── */
.cocktails-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; padding: 3rem 2rem 6rem; max-width: 1200px; margin: 0 auto;
}
.cocktail-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; padding: 0; transition: var(--transition);
}
.cocktail-card:hover { border-color: var(--blue); box-shadow: 0 12px 40px rgba(15,156,254,0.12); transform: translateY(-4px); }
.cocktail-card-img { width: 100%; height: 320px; overflow: hidden; position: relative; border-radius: 0; margin: 0; }
.cocktail-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, var(--card-bg), transparent); }
.cocktail-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.cocktail-card:hover .cocktail-card-img img { transform: scale(1.05); }
.cocktail-card > :not(.cocktail-card-img) { padding-left: 2rem; padding-right: 2rem; }
.cocktail-card > .cocktail-spirit { padding-top: 1.5rem; }
.cocktail-card > .cocktail-section:last-of-type { padding-bottom: 2rem; }
.cocktail-spirit {
  font-family: var(--font-brush); color: var(--pink); font-size: 0.95rem;
  margin-bottom: 0.5rem; display: block;
}
.cocktail-name {
  font-family: var(--font-header); font-weight: 900;
  font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.25rem;
}
.cocktail-level {
  display: inline-block; font-family: var(--font-header); font-weight: 700;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1.25rem;
  margin-left: 2rem;
}
.level-easy { background: rgba(40,232,49,0.15); color: var(--green); border: 1px solid rgba(40,232,49,0.3); }
.level-medium { background: rgba(15,156,254,0.15); color: var(--blue); border: 1px solid rgba(15,156,254,0.3); }
.level-expert { background: rgba(255,0,144,0.15); color: var(--pink); border: 1px solid rgba(255,0,144,0.3); }
.level-beginner { background: rgba(40,232,49,0.15); color: var(--green); border: 1px solid rgba(40,232,49,0.3); }
.cocktail-section { margin-bottom: 1rem; }
.cocktail-section h4 {
  font-family: var(--font-header); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.cocktail-ingredients { list-style: none; }
.cocktail-ingredients li { font-size: 0.88rem; color: rgba(255,255,255,0.7); padding: 0.2rem 0; border-bottom: 1px solid var(--border); }
.cocktail-ingredients li:last-child { border-bottom: none; }
.cocktail-glass {
  font-family: var(--font-header); font-weight: 700; font-size: 0.85rem; color: var(--blue);
}
.cocktail-method { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.cocktail-garnish { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-style: italic; }
.cocktail-filter-bar {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  padding: 1.5rem 2rem 0; max-width: 1200px; margin: 0 auto;
}

/* ── Find Us Page ── */
.find-us-hero { padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.find-us-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(15,156,254,0.12) 0%, transparent 70%); }
.find-us-hero .container { position: relative; z-index: 1; }
.map-wrapper {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 3rem;
  border-radius: 20px; overflow: hidden;
}
.map-wrapper iframe { width: 100%; height: 400px; border: none; border-radius: 20px; }
.stockist-grid {
  max-width: 1200px; margin: 0 auto; padding: 2rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.stockist-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition); display: flex; align-items: flex-start; gap: 1rem;
}
.stockist-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.stockist-icon { font-size: 1.5rem; flex-shrink: 0; }
.stockist-name { font-family: var(--font-header); font-weight: 700; font-size: 1rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.stockist-area { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.stockist-note { font-size: 0.8rem; color: var(--blue); margin-top: 0.25rem; font-style: italic; }

/* ── About Page ── */
.about-page-hero { padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.about-page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); }
.about-page-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-big-text { font-family: var(--font-header); font-weight: 900; font-size: clamp(2.5rem, 5vw, 4.5rem); text-transform: uppercase; line-height: 1; }
.about-big-text .line1 { color: var(--white); }
.about-big-text .line2 { color: var(--green); }
.about-big-text .line3 { color: var(--blue); }
.about-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
.about-stat { text-align: center; }
.stat-num { font-family: var(--font-header); font-weight: 900; font-size: 2.5rem; color: var(--pink); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.process-section { background: var(--black); padding: 5rem 2rem; }
.process-steps { max-width: 900px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-family: var(--font-header); font-weight: 900; font-size: 3rem;
  color: var(--pink); opacity: 0.3; line-height: 1;
}
.step-content h3 { font-family: var(--font-header); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── Contact Page ── */
.contact-section { padding: 8rem 2rem 6rem; }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info-col { }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-family: var(--font-header); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.contact-info-value a:hover { color: var(--pink); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); color: rgba(255,255,255,0.7);
  overflow: hidden;
}
.social-link svg { width: 20px; height: 20px; display: block; }
.social-link img { width: 22px; height: 22px; object-fit: contain; border-radius: 3px; flex-shrink: 0; }
.social-link:hover { border-color: var(--pink); background: rgba(255,0,144,0.1); transform: translateY(-2px); color: var(--white); }
.float-option-icon svg { width: 18px; height: 18px; display: block; }
.float-icon svg { width: 22px; height: 22px; display: block; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-title { font-family: var(--font-header); font-weight: 900; font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-header); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select, .form-group textarea:focus { border-color: var(--pink); background: rgba(255,0,144,0.04); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--black); }
.btn-submit {
  width: 100%; background: var(--pink); color: var(--white);
  font-family: var(--font-header); font-weight: 700; font-size: 0.9rem;
  padding: 0.65rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em;
  transition: var(--transition); margin-top: 1.2rem;
}
.btn-submit:hover { background: #d40079; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,0,144,0.4); }

/* ── Footer ── */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-header); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-right { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── Floating Chat ── */
.float-chat {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
}
.float-main-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(255,0,144,0.5);
  transition: var(--transition); cursor: pointer; position: relative; z-index: 2;
  font-size: 1.5rem;
}
.float-main-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(255,0,144,0.6); }
.float-main-btn.open { background: rgba(50,50,50,0.95); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.float-options {
  position: absolute; bottom: 70px; right: 0;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: var(--transition);
}
.float-options.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.float-option {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(28,28,28,0.95); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 30px;
  padding: 0.6rem 1.2rem 0.6rem 0.6rem;
  text-decoration: none; transition: var(--transition); white-space: nowrap;
}
.float-option:hover { transform: translateX(-4px); border-color: currentColor; }
.float-option-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.float-option-messenger .float-option-icon { background: linear-gradient(135deg, #0099ff, #a033ff, #ff5c00); }
.float-option-messenger .float-option-icon svg { fill: #fff !important; color: #fff !important; }
.float-option-zalo .float-option-icon { background: #0068FF; }
.float-option-zalo .float-option-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.float-option span { font-family: var(--font-header); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); }
.float-option-messenger { color: #a033ff; }
.float-option-zalo { color: #0068FF; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(-30px); } 50% { transform: translateY(-50px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-bottle:nth-child(2) { animation: float 4s ease-in-out infinite; }
.hero-bottle:nth-child(1) { animation: float2 5s ease-in-out infinite; }
.hero-bottle:nth-child(3) { animation: float2 6s ease-in-out 0.5s infinite; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Page banner ── */
.page-banner {
  padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden;
  background: var(--dark-bg);
}
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(40,232,49,0.18) 0%, transparent 70%); }
.page-banner .container { position: relative; z-index: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-bottles { max-width: 500px; margin: 0 auto; }
  .about-strip .container { grid-template-columns: 1fr; }
  .about-page-hero .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .cocktails-grid { grid-template-columns: 1fr; }
  .stockist-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-philosophy { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: repeat(3,1fr); }
  .hero-bottles { grid-template-columns: repeat(2, 1fr); }
  .hero-bottle:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  /* Community gallery responsive */
  section > div > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  section > div > div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Awards strip responsive */
  div[style*="grid-template-columns: 1fr auto 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}
@media (max-width: 500px) {
  section > div > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  section > div > div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
/* Language toggle — !important overrides all inline style="display:none" */
[lang="vi"] { display: none !important; }
body.vi [lang="en"] { display: none !important; }
body.vi [lang="vi"] { display: block !important; }
body.vi span[lang="vi"] { display: inline !important; }
body.vi span[lang="en"] { display: none !important; }
body.vi h1[lang="vi"], body.vi h2[lang="vi"], body.vi h3[lang="vi"],
body.vi h4[lang="vi"], body.vi p[lang="vi"], body.vi li[lang="vi"] { display: block !important; }
body.vi h1[lang="en"], body.vi h2[lang="en"], body.vi h3[lang="en"],
body.vi h4[lang="en"], body.vi p[lang="en"], body.vi li[lang="en"] { display: none !important; }

/* Vietnamese diacritic spacing — more room for accent marks */
body.vi .hero-title { line-height: 1.25 !important; }
body.vi .section-title { line-height: 1.35 !important; }
body.vi .about-big-text { line-height: 1.3 !important; }
body.vi h1, body.vi h2, body.vi h3 { line-height: 1.35 !important; }
body.vi .hero-desc { line-height: 1.85 !important; }
body.vi .section-desc { line-height: 1.85 !important; }

/* Seven Spirits grid — responsive for mobile */
.seven-spirits-row {
  display: flex;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.seven-spirits-item {
  flex: 0 0 200px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .seven-spirits-row { flex-wrap: wrap; gap: 0.75rem; }
  .seven-spirits-item { flex: 0 0 calc(33.333% - 0.75rem); }
}
@media (max-width: 480px) {
  .seven-spirits-item { flex: 0 0 calc(50% - 0.5rem); }
}

/* ============================================
   WHITE THEME OVERRIDES — v35
   All dark→light swaps live here only.
   HTML and JS are completely untouched.
   ============================================ */

:root {
  --dark-bg:  #f5f5f5;
  --card-bg:  #ebebeb;
  --border:   rgba(0,0,0,0.1);
}

/* Body */
body { background: var(--dark-bg); color: var(--black); }

/* Nav */
nav.scrolled {
  background: #f5f5f5;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
nav.menu-open { background: #f5f5f5; }
.nav-links a { color: rgba(0,0,0,0.7); }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.lang-toggle { background: rgba(0,0,0,0.06); }
.lang-btn { color: rgba(0,0,0,0.45); }
.hamburger span { background: var(--black); }
@media (max-width: 900px) {
  .nav-links a { color: rgba(0,0,0,0.7); }
}

/* Age gate */
#age-gate { background: rgba(245,245,245,0.98); backdrop-filter: blur(8px); }
.age-gate h1 { color: var(--black); }
.age-gate p { color: rgba(0,0,0,0.55); }
.btn-age-no { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.5); }
.btn-age-no:hover { border-color: var(--black); color: var(--black); }
.age-gate-disclaimer { color: rgba(0,0,0,0.3); }

/* Hero */
.hero { background: var(--dark-bg); }
.hero-desc { color: rgba(0,0,0,0.6); }

/* Sections */
.section-desc { color: rgba(0,0,0,0.55); }
/* section-desc on explicitly dark sections stays readable */
section[style*="background:var(--black)"] .section-desc,
section[style*="background: var(--black)"] .section-desc,
.about-strip .section-desc,
.products-section .section-desc { color: rgba(255,255,255,0.65); }

/* About strip */
.about-strip { background: #e8e8e8; }
.phil-card { background: rgba(0,0,0,0.03); }
.phil-card p { color: rgba(0,0,0,0.5); }

/* Product cards */
.product-type-badge {
  background: rgba(255,255,255,0.9);
  color: rgba(0,0,0,0.6);
  border-color: rgba(0,0,0,0.1);
}
.product-card-img::after {
  background: linear-gradient(to top, var(--card-bg), transparent);
}
.product-desc { color: rgba(0,0,0,0.55); }
.meta-tag { background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.55); }
.product-usps li { color: rgba(0,0,0,0.5); }
.filter-btn { color: rgba(0,0,0,0.45); border-color: rgba(0,0,0,0.15); }

/* Cocktail cards */
.cocktail-section h4 { color: rgba(0,0,0,0.4); }
.cocktail-ingredients li { color: rgba(0,0,0,0.65); border-bottom-color: rgba(0,0,0,0.08); }
.cocktail-method { color: rgba(0,0,0,0.55); }
.cocktail-garnish { color: rgba(0,0,0,0.45); }

/* Process / Our Story */
.process-section { background: #e8e8e8; }
.step-content p { color: rgba(0,0,0,0.55); }

/* Find Us */
.stockist-area { color: rgba(0,0,0,0.45); }

/* Contact */
.contact-info-label { color: rgba(0,0,0,0.4); }
.contact-info-value { color: rgba(0,0,0,0.75); }
.form-group label { color: rgba(0,0,0,0.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.12);
  color: var(--black);
}
.form-subtitle { color: rgba(0,0,0,0.5); }

/* Footer */
footer { background: #e8e8e8; }
.footer-brand p { color: rgba(0,0,0,0.45); }
.footer-col h4 { color: rgba(0,0,0,0.4); }
.footer-col ul a { color: rgba(0,0,0,0.6); }
.footer-bottom p,
.footer-bottom-right { color: rgba(0,0,0,0.35); }
.footer-disclaimer { color: rgba(0,0,0,0.3); }

/* Float chat popup */
.float-option { background: rgba(255,255,255,0.97); border-color: rgba(0,0,0,0.1); }
.float-option span { color: rgba(0,0,0,0.7); }


/* ── Additional white theme fixes ── */

/* Social icons — SVGs were white, now need to be dark */
.social-link { color: rgba(0,0,0,0.5); }
.social-link svg { fill: currentColor; }
.social-link[title="Instagram"] svg { fill: none; stroke: currentColor; }
.social-link:hover { color: var(--pink); }

/* Messenger float button — icon must stay white (it's on a coloured bg) */
.float-main-btn svg { fill: #ffffff !important; color: #ffffff !important; }

/* About page stat labels */
.stat-label { color: rgba(0,0,0,0.5); }
.about-page-hero .stat-label { color: rgba(255,255,255,0.6); }

/* About page — paragraph text on right side of hero (sits over dark photo, keep white) */
.about-page-hero .container p { color: rgba(255,255,255,0.85); }


/* About page hero — nav links need to be white when over the dark photo hero */
.about-page-hero ~ * .nav-links a,
.about-page-hero + nav .nav-links a { color: rgba(255,255,255,0.8); }

/* Nav links on pages with photo heroes — force white until scrolled */
body:not(.scrolled) .about-page-hero ~ nav .nav-links a { color: rgba(255,255,255,0.8); }


/* About page — nav sits over dark photo hero, needs white links until scrolled */
nav.dark-hero-nav .nav-links a { color: rgba(255,255,255,0.85); }
nav.dark-hero-nav .hamburger span { background: var(--white); }
nav.dark-hero-nav.scrolled .nav-links a { color: rgba(0,0,0,0.7); }
nav.dark-hero-nav.scrolled .hamburger span { background: var(--black); }
nav.dark-hero-nav.menu-open .nav-links a { color: rgba(0,0,0,0.7); }


/* ── Hero — boosted lotus + vivid colour gradients ── */
.hero-lotus-bg { opacity: 0.18; }
.hero-bg {
  background: radial-gradient(ellipse at 70% 50%, rgba(255,0,144,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(15,156,254,0.42) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 20%, rgba(40,232,49,0.32) 0%, transparent 50%);
}


/* ── Boosted gradients across all pages ── */

/* Products page hero — pink */
.products-hero::before { background: radial-gradient(ellipse at center, rgba(255,0,144,0.35) 0%, transparent 70%); }

/* Find Us page hero — blue */
.find-us-hero::before { background: radial-gradient(ellipse at center, rgba(15,156,254,0.48) 0%, transparent 70%); }

/* About page hero overlay glow — green */
.about-page-hero::before { background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%); }

/* Page banners (Cocktails, Contact, Culture) — pink */
.page-banner::before { background: radial-gradient(ellipse at center, rgba(40,232,49,0.38) 0%, transparent 70%); }

