/* =============================================
   Lang Nuong Vietnam – Stylesheet
   Matching langnuonggroup.com exactly
   Font: Gilroy (self-hosted)
   Palette: #492200 (nav), #F6D879 (gold), kraft bg
   ============================================= */

/* --- Gilroy Self-Hosted Font --- */
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Light.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-ExtraBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brown:       #492200;
  --brown-dark:  #311700;
  --gold:        #F6D879;
  --gold-dark:   #F5D063;
  --gold-hover:  #e8c04a;
  --kraft-bg:    #F0DABD;
  --white:       #ffffff;
  --black:       #000000;
  --text:        #000000;
  --muted:       #555555;
  --light-gray:  #c4c4c4;
  --section-bg:  #ffffff;
  --font:        "Gilroy", Arial, Helvetica, sans-serif;
  --font-vietnamese: Arial, "Helvetica Neue", sans-serif;
  --radius:      4px;
  --shadow:      0 4px 20px rgba(0,0,0,.15);
  --max-w:       1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Use a full Vietnamese glyph set for brand names and accented words. */
[lang="vi"] {
  font-family: var(--font-vietnamese);
}

a {
  color: var(--brown);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(49, 23, 0, .96);
  border-bottom: 1px solid rgba(246,216,121,.45);
  box-shadow: 0 8px 24px rgba(49,23,0,.18);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .7rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-logo img {
  width: auto;
  height: 58px;
  max-width: 170px;
  object-fit: contain;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 1rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu */
.nav-menu {
  display: none;
  flex-direction: column;
  flex-basis: 100%;
  width: 100%;
  margin: 0;
  background: rgba(49,23,0,.98);
  border-top: 1px solid rgba(246,216,121,.18);
  padding: .35rem 1.25rem .75rem;
}

.nav-menu.open {
  display: flex;
}

.nav-menu a {
  padding: .8rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s, transform .2s;
}

.nav-menu a:last-child { border-bottom: none; }
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(246,216,121,.12);
  color: var(--gold);
}

.nav-menu a.active {
  box-shadow: inset 3px 0 0 var(--gold);
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    flex-basis: auto;
    width: auto;
    max-width: none;
    margin: 0;
    background: none;
    border: none;
    padding: 0;
    gap: .2rem;
    align-items: center;
  }

  .nav-menu a {
    padding: .55rem .7rem;
    font-size: .68rem;
    border-bottom: none;
    border-radius: 999px;
    color: var(--white);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: none;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 55vw;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  padding: 2.5rem 2rem 3rem;
  max-width: 800px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .015em;
  text-wrap: balance;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  text-transform: none;
}

.animated-underline {
  position: relative;
  display: inline-block;
  padding-bottom: .16em;
}

.underline-layer {
  position: absolute;
  left: -2%;
  width: 104%;
  height: .58em;
  min-height: 17px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateX(var(--underline-offset, 0)) scaleX(0);
  transform-origin: left;
  animation: underline-draw 1.1s .35s ease-out forwards;
  pointer-events: none;
}

.underline-back {
  --underline-offset: 5px;
  bottom: .03em;
  opacity: .42;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 9 C14 1 21 17 35 9 S56 1 70 9 S91 17 105 9 S126 1 140 9 S161 17 175 9 S190 3 200 8' fill='none' stroke='%23F6D879' stroke-width='2.5'/%3E%3C/svg%3E");
  animation-delay: .15s;
}

.underline-mid {
  --underline-offset: 2px;
  bottom: -.08em;
  opacity: .7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 14 C12 22 23 5 37 14 S60 22 74 14 S97 5 111 14 S134 22 148 14 S171 5 185 14 S194 19 200 14' fill='none' stroke='%23F6D879' stroke-width='3'/%3E%3C/svg%3E");
  animation-delay: .25s;
}

.underline-front {
  --underline-offset: 0;
  bottom: -.2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 12 C10 3 22 21 34 12 S58 3 70 12 S94 21 106 12 S130 3 142 12 S166 21 178 12 S192 5 200 11' fill='none' stroke='%23F6D879' stroke-width='3.6' stroke-linecap='round'/%3E%3C/svg%3E");
  animation-delay: .35s;
}

@keyframes underline-draw {
  to { transform: translateX(var(--underline-offset, 0)) scaleX(1); }
}

.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: .9;
  letter-spacing: .04em;
}

/* Page hero (inner pages — shorter) */
.page-hero {
  min-height: 40vw;
  max-height: 500px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary: gold fill / black text — matches live site buttons */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(246,216,121,.5);
}

/* Gold outline */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* White outline — used in heroes */
.btn-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Gold filled (download/menu links) */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black);
  transform: translateY(-2px);
}

/* WhatsApp button */
.btn-wa {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 3.5rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-full {
  width: 100%;
}

/* Light kraft background — matches live site main content areas */
.section-light {
  background-color: var(--kraft-bg);
  background-image: url("kraftbg.jpg");
  background-size: cover;
  background-position: center;
}

/* White background sections */
.section-white {
  background-color: var(--white);
}

/* Dark brown sections */
.section-dark {
  background-color: var(--brown);
}

/* Slightly lighter brown */
.section-darker {
  background-color: var(--brown-dark);
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: .4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .025em;
  text-wrap: balance;
}

/* White title variant for dark sections */
.section-title-white {
  color: var(--white);
}

/* Gold title variant */
.section-title-gold {
  color: var(--gold);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: .5rem 0 1.5rem;
  border-radius: 2px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 1.25rem;
  max-width: 750px;
  line-height: 1.8;
}

/* =============================================
   BRAND CARDS (home page grid)
   ============================================= */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: #ccc;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: block;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.brand-card:hover img { transform: scale(1.08); }

.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  transition: background .3s;
}

.brand-card:hover .brand-card-overlay {
  background: rgba(0,0,0,.45);
}

.brand-card-name {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.brand-card-cta {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =============================================
   GALLERY GRID
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  background: #ddd;
}

.gallery-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s;
}

.gallery-grid a:hover img {
  transform: scale(1.1);
  filter: brightness(.85);
}

/* =============================================
   INFO BLOCKS (location / details)
   ============================================= */
.info-block {
  background: rgba(255,255,255,.8);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.5rem;
}

.info-block h3 {
  font-family: var(--font);
  color: var(--brown);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.info-block p,
.info-block li {
  font-size: .93rem;
  color: var(--black);
  margin-bottom: .4rem;
}

.info-block ul {
  list-style: none;
  padding: 0;
}

.info-block li::before {
  content: "→ ";
  color: var(--brown);
}

.info-block strong {
  color: var(--brown);
}

/* =============================================
   MAP EMBED
   ============================================= */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.25rem;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   SPECIALTY CARDS (horizontal scroll)
   ============================================= */
.specialty-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .75rem;
  margin-top: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brown) #ddd;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.specialty-scroll::-webkit-scrollbar { height: 4px; }
.specialty-scroll::-webkit-scrollbar-track { background: #ddd; }
.specialty-scroll::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 2px; }

.specialty-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e8d8c0;
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.specialty-card-body {
  padding: .75rem 1rem;
}

.specialty-card-body h4 {
  font-family: var(--font);
  color: var(--brown);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

/* =============================================
   SPECIALTY TEXT GRID (feature cards)
   ============================================= */
.specialty-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .specialty-text-grid { grid-template-columns: repeat(2, 1fr); }
}

.specialty-text-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.specialty-text-card h4 {
  font-family: var(--font);
  color: var(--brown);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
  letter-spacing: .03em;
}

.specialty-text-card p {
  font-size: .9rem;
  color: #333;
  line-height: 1.65;
}

/* =============================================
   PRESS / MEDIA MENTIONS
   ============================================= */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 600px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

.press-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid #e8d8c0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.press-card h4 {
  font-family: var(--font);
  color: var(--brown);
  font-size: 1rem;
  font-weight: 600;
}

.press-card p {
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
}

.press-card a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
}

.press-card a:hover { color: var(--gold-dark); }

/* =============================================
   ABOUT COLS (home page 2-col layout)
   ============================================= */
.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

@media (min-width: 800px) {
  .about-cols { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   EMPHASIS BLOCK (italic highlight)
   ============================================= */
.emphasis-block {
  border-left: 3px solid var(--gold);
  padding: .85rem 1.25rem;
  background: rgba(246,216,121,.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: .92rem;
  color: var(--black);
  margin: 1.25rem 0;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--brown);
  background-image: url("footerbgkraft.jpg");
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--gold);
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand {
  font-family: var(--font);
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: .5rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: .85rem;
  color: #000000;
  margin-bottom: 1rem;
}

.site-footer p {
  color: #000000 !important;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.55);
  border-radius: 50%;
  color: #180e08;
  transition: background .2s, color .2s;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--gold);
  color: #180e08;
}

.footer-col h4 {
  font-family: var(--font);
  color: #000000;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-col ul li a {
  font-size: .85rem;
  color: #000000;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--brown); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(24,14,8,.25);
  font-size: .75rem;
  color: #000000;
  text-align: center;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.rule {
  border: none;
  border-top: 1px solid #e8d8c0;
  margin: 2rem 0;
}

.menu-btn-wrap { margin-top: 1.5rem; }

/* =============================================
   SHOP HERO
   ============================================= */
.shop-hero {
  background-color: var(--brown);
  background-image: url("kraftbg.jpg");
  background-size: cover;
  background-position: center;
  padding: 4rem 1.25rem 3.5rem;
  text-align: center;
}

.shop-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.shop-hero .hero-title {
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.15;
  margin-bottom: .5rem;
}

.shop-hero .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}

.shop-cart-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  padding: .55rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-cart-link:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.shop-cart-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .25rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: .7rem;
}

/* =============================================
   PRODUCT / SHOP GRID
   ============================================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  border: 1px solid #e8d8c0;
  transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--brown);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 2px;
}

.product-body {
  padding: .9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.product-name {
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  margin: 0;
}

.product-name-zh {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 400;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
}

.product-btn {
  margin-top: auto;
  text-align: center;
  font-size: .78rem;
  padding: .55rem 1rem;
}

.cart-placeholder {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.72);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  text-align: center;
}

.cart-placeholder .section-title {
  margin-bottom: .4rem;
}

.cart-placeholder .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.cart-placeholder p {
  margin-bottom: 1.25rem;
  color: #333;
}

/* =============================================
   GALLERY CAROUSEL
   ============================================= */
.gallery-carousel {
  margin-top: 1.5rem;
  user-select: none;
}

/* Main large image */
.gc-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 520px;
  margin: 0 auto;
  width: 100%;
}

.gc-main-img-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gc-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .15s ease;
}
.gc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 48px;
  height: 64px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  border-radius: 3px;
}

.gc-arrow:hover { background: rgba(73,34,0,.85); color: var(--gold); }
.gc-prev { left: 0; border-radius: 0 3px 3px 0; }
.gc-next { right: 0; border-radius: 3px 0 0 3px; }

/* Counter */
.gc-counter {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  padding: .5rem 0 .4rem;
}

/* Thumbnail strip */
.gc-thumbs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .25rem .1rem .5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brown) #ddd;
  scroll-snap-type: x mandatory;
}

.gc-thumbs::-webkit-scrollbar { height: 4px; }
.gc-thumbs::-webkit-scrollbar-track { background: #ddd; }
.gc-thumbs::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 2px; }

.gc-thumb {
  flex: 0 0 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  scroll-snap-align: start;
  transition: opacity .2s, border-color .2s, transform .2s;
}

.gc-thumb:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.gc-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .gc-thumb {
    flex: 0 0 100px;
    height: 72px;
  }
}

/* =============================================
   HERO CAROUSEL (full-width at top)
   ============================================= */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 60vw;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111;
}

.hc-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hc-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}

.hc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

/* Hero text sits above the image */
.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 1.25rem;
}

/* Thumbnails pinned to bottom of hero */
.hero-carousel .gc-thumbs {
  position: relative;
  z-index: 2;
  padding: .6rem .75rem;
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 0;
  flex-shrink: 0;
}

/* Arrows on hero */
.hero-carousel .gc-arrow {
  position: absolute;
  top: 45%;
  z-index: 3;
}
