/* ===== ACAD Global - Premium Agarwood Brand ===== */
/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-primary: #2C1810;
  --color-secondary: #5C3A1E;
  --color-accent: #C9A961;
  --color-accent-light: #E0C893;
  --color-bg: #FAF7F2;
  --color-bg-alt: #F2EDE4;
  --color-text: #3D2B1F;
  --color-text-light: #8B7355;
  --color-white: #FFFFFF;
  --color-dark: #1A0F08;
  --color-success: #4A7C59;
  --color-border: #E0D5C7;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.16);
  --container: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--color-primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent-light);
}
.btn-primary:hover { background: var(--color-accent); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-accent-light); }

.btn-gold {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-gold:hover { background: var(--color-accent-light); color: var(--color-primary); transform: translateY(-2px); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled { background: rgba(250, 247, 242, 0.98); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}
.logo span { color: var(--color-accent); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: var(--transition);
}
.nav a:hover { color: var(--color-accent); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--color-accent); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: var(--transition);
}
.cart-icon:hover { color: var(--color-accent); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--color-primary); background: none; border: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A0F08 0%, #2C1810 40%, #3D2B1F 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><radialGradient id="g" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23C9A961" stop-opacity="0.15"/><stop offset="100%25" stop-color="%23C9A961" stop-opacity="0"/></radialGradient></defs><circle cx="600" cy="200" r="300" fill="url(%23g)"/><circle cx="200" cy="600" r="250" fill="url(%23g)"/></svg>') no-repeat center;
  background-size: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero .eyebrow { color: var(--color-accent); }

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero h1 .accent { color: var(--color-accent); font-style: italic; }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.hero-stat .num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--color-accent); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }

/* Section Headers */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header p { color: var(--color-text-light); margin-top: 16px; font-size: 1.05rem; }

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-img {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #F2EDE4, #E0D5C7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img .product-emoji { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

.product-badge.compliance { background: var(--color-success); }

.product-info { padding: 24px; }

.product-category { font-size: 0.75rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }

.product-name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--color-primary); margin-bottom: 8px; }

.product-desc { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 16px; line-height: 1.6; }

.product-footer { display: flex; align-items: center; justify-content: space-between; }

.product-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--color-accent); }

.product-price .old { text-decoration: line-through; color: var(--color-text-light); font-size: 1rem; margin-right: 8px; }

.btn-add {
  background: var(--color-primary);
  color: var(--color-accent-light);
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add:hover { background: var(--color-accent); color: var(--color-white); }

/* Features / Values */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
  font-size: 1.75rem;
}

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: var(--color-text-light); }

/* Brand Story */
.story-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><defs><radialGradient id="g2" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23C9A961" stop-opacity="0.1"/><stop offset="100%25" stop-color="%23C9A961" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="250" fill="url(%23g2)"/></svg>') no-repeat center;
}

.story-section .eyebrow { color: var(--color-accent); }
.story-section h2 { color: var(--color-white); }
.story-section p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><defs><pattern id="p" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23C9A961" fill-opacity="0.1"/></pattern></defs><rect width="400" height="500" fill="url(%23p)"/></svg>');
}

.story-visual .story-emoji { font-size: 8rem; position: relative; z-index: 2; opacity: 0.9; }

.story-stats { display: flex; gap: 40px; margin-top: 32px; }
.story-stat .num { font-family: var(--font-serif); font-size: 2rem; color: var(--color-accent); font-weight: 700; }
.story-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* CITES Compliance Banner */
.compliance-banner {
  background: linear-gradient(135deg, #4A7C59, #2D5A3D);
  padding: 80px 0;
  text-align: center;
  color: var(--color-white);
}

.compliance-banner h2 { color: var(--color-white); }
.compliance-banner p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 16px auto 32px; }

.compliance-badges { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.compliance-badge .icon { font-size: 1.5rem; }
.compliance-badge .text { font-size: 0.85rem; font-weight: 500; }

/* Market Section */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.market-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.market-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.market-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.market-card:nth-child(1) .market-header { background: linear-gradient(135deg, #1B4D3E, #2D6A4F); }
.market-card:nth-child(2) .market-header { background: linear-gradient(135deg, #8B0000, #B22222); }
.market-card:nth-child(3) .market-header { background: linear-gradient(135deg, #1E3A8A, #3B5998); }

.market-header .flag { font-size: 3.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }

.market-body { padding: 28px; }
.market-body h3 { margin-bottom: 8px; }
.market-body .region { font-size: 0.75rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.market-body p { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 16px; }
.market-body ul { font-size: 0.85rem; color: var(--color-text); }
.market-body ul li { padding: 4px 0; padding-left: 20px; position: relative; }
.market-body ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

/* Testimonials */
.testimonials { background: var(--color-bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.testimonial-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--color-text); margin-bottom: 24px; position: relative; z-index: 2; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; color: var(--color-primary); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--color-text-light); }

/* Newsletter / CTA */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
  padding: 100px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><radialGradient id="g3" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23C9A961" stop-opacity="0.08"/><stop offset="100%25" stop-color="%23C9A961" stop-opacity="0"/></radialGradient></defs><ellipse cx="600" cy="200" rx="400" ry="150" fill="url(%23g3)"/></svg>') no-repeat center;
}
.cta-section h2 { color: var(--color-white); position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 16px auto 40px; position: relative; z-index: 2; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; position: relative; z-index: 2; }
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-radius: 2px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus { border-color: var(--color-accent); background: rgba(255,255,255,0.12); }

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--color-white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; max-width: 320px; }
.footer-col h4 { color: var(--color-accent); font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--color-accent); }

.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--color-accent); color: var(--color-white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom .payment-icons { display: flex; gap: 12px; }
.footer-bottom .payment-icons span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  text-align: center;
}
.page-hero h1 { color: var(--color-white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 16px auto 0; }
.page-hero .eyebrow { color: var(--color-accent); }

/* Breadcrumb */
.breadcrumb { padding: 24px 0; background: var(--color-bg-alt); }
.breadcrumb ul { display: flex; gap: 8px; font-size: 0.85rem; }
.breadcrumb ul li { color: var(--color-text-light); }
.breadcrumb ul li a { color: var(--color-accent); }
.breadcrumb ul li::after { content: '/'; margin-left: 8px; color: var(--color-border); }
.breadcrumb ul li:last-child::after { display: none; }

/* Product Filter */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 24px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); color: var(--color-accent-light); border-color: var(--color-primary); }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}
.cart-header h3 { margin: 0; }
.cart-close { font-size: 1.5rem; cursor: pointer; color: var(--color-text-light); background: none; border: none; transition: var(--transition); }
.cart-close:hover { color: var(--color-primary); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--color-text-light); }
.cart-empty .icon { font-size: 3rem; margin-bottom: 16px; }

.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.cart-item-emoji { font-size: 2.5rem; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--font-sans); font-size: 0.9rem; color: var(--color-primary); margin-bottom: 4px; }
.cart-item-info .price { color: var(--color-accent); font-weight: 600; font-size: 0.85rem; }
.cart-item-info .qty { font-size: 0.8rem; color: var(--color-text-light); }
.cart-item-remove { color: var(--color-text-light); cursor: pointer; font-size: 0.8rem; background: none; border: none; transition: var(--transition); }
.cart-item-remove:hover { color: #c0392b; }

.cart-footer { padding: 24px; border-top: 1px solid var(--color-border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 1.1rem; }
.cart-total .amount { font-family: var(--font-serif); font-weight: 700; color: var(--color-accent); font-size: 1.3rem; }
.cart-checkout { width: 100%; padding: 14px; background: var(--color-primary); color: var(--color-accent-light); border: none; border-radius: 2px; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition); }
.cart-checkout:hover { background: var(--color-accent); color: var(--color-white); }

/* About Page */
.about-hero-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.about-hero-img .emoji { font-size: 6rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.value-item { text-align: center; }
.value-item .num { font-family: var(--font-serif); font-size: 3rem; color: var(--color-accent); font-weight: 700; margin-bottom: 8px; }
.value-item h4 { margin-bottom: 8px; }
.value-item p { font-size: 0.875rem; color: var(--color-text-light); }

/* Compliance Page */
.compliance-section { padding: 80px 0; }
.compliance-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.flow-step { text-align: center; padding: 32px 20px; background: var(--color-white); border-radius: 4px; border: 1px solid var(--color-border); position: relative; }
.flow-step .step-num { width: 40px; height: 40px; margin: 0 auto 16px; background: var(--color-accent); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.flow-step h4 { margin-bottom: 8px; }
.flow-step p { font-size: 0.825rem; color: var(--color-text-light); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-info-item .icon { width: 48px; height: 48px; background: var(--color-bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--color-text-light); }

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1); }
.contact-form textarea { min-height: 150px; resize: vertical; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 24px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--color-primary); font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--color-text-light); font-size: 0.9rem; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--color-primary);
  color: var(--color-accent-light);
  padding: 16px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Chinese font override */
html[lang="zh-CN"] body { font-family: 'Noto Sans SC', 'Inter', sans-serif; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3, html[lang="zh-CN"] h4 { font-family: 'Noto Serif SC', 'Cormorant Garamond', serif; }

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }
.lang-toggle .lang-icon { font-size: 0.9rem; }
.lang-toggle .lang-current { min-width: 28px; text-align: center; }
.lang-toggle .lang-arrow { font-size: 0.65rem; transition: var(--transition); }

.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 1001;
}

.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--color-bg-alt); color: var(--color-accent); }
.lang-option.active { background: rgba(201, 169, 97, 0.08); color: var(--color-accent); font-weight: 600; }
.lang-option .check { margin-left: auto; color: var(--color-accent); opacity: 0; }
.lang-option.active .check { opacity: 1; }

/* Language switcher in mobile nav */
@media (max-width: 968px) {
  .lang-switcher { margin-left: auto; margin-right: 12px; }
}

/* Responsive */
@media (max-width: 968px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .story-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cta-form { flex-direction: column; }
  .section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ===== Design Enhancements (Gymshark + Bocce's Bakery inspired) ===== */

/* Hero enhancements - more dramatic, premium feel */
.hero {
  background: linear-gradient(135deg, #0F0805 0%, #1A0F08 30%, #2C1810 60%, #3D2B1F 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,8,5,0.8), transparent);
  z-index: 1;
}
.hero h1 { letter-spacing: -0.5px; font-weight: 600; }
.hero .eyebrow { letter-spacing: 4px; font-size: 0.75rem; }
.hero p { font-weight: 300; letter-spacing: 0.3px; }
.hero-stat .num { font-weight: 600; letter-spacing: -1px; }

/* Navigation - cleaner, smoother */
.nav a {
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a::after {
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header { border-bottom: none; }
.header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 1px 0 rgba(201, 169, 97, 0.15);
}

/* Logo - more premium */
.logo {
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.logo span { font-weight: 400; font-style: italic; }

/* Buttons - more modern, Gymshark-style */
.btn {
  padding: 16px 40px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-gold {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}
.btn-gold:hover {
  background: var(--color-accent-light);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent-light);
}
.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-outline {
  border-width: 2px;
  letter-spacing: 2px;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* Product cards - Gymshark-inspired clean design */
.product-card {
  border: none;
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.06);
  border-radius: 2px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}
.product-img {
  height: 340px;
  background: linear-gradient(135deg, #F5F0E8, #E8DDC9);
  position: relative;
}
.product-img .product-emoji {
  font-size: 5.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-emoji {
  transform: scale(1.1) translateY(-4px);
}
.product-badge {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 0;
  font-weight: 700;
}
.product-info { padding: 28px 24px 24px; }
.product-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
}
.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.product-desc { font-size: 0.85rem; font-weight: 300; }
.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.btn-add {
  padding: 12px 24px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-accent-light);
  transition: all 0.3s ease;
}
.btn-add:hover {
  background: var(--color-accent);
  color: var(--color-white);
  letter-spacing: 2px;
}

/* Section headers - more impactful */
.section-header h2 {
  letter-spacing: -0.5px;
  font-weight: 600;
}
.section-header p { font-weight: 300; }
.eyebrow { letter-spacing: 3.5px; font-size: 0.75rem; }

/* Feature cards - cleaner */
.feature-card {
  border: none;
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.06);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(44, 24, 16, 0.12);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1.5px solid var(--color-accent);
  font-size: 1.5rem;
}

/* Story section - more premium */
.story-section p { font-weight: 300; }
.story-visual {
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Compliance banner - bolder */
.compliance-banner h2 { letter-spacing: -0.5px; }
.compliance-badge {
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.compliance-badge:hover { transform: translateY(-3px); }

/* Market cards - cleaner */
.market-card {
  border: none;
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.06);
  border-radius: 2px;
}
.market-card:hover {
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.15);
  transform: translateY(-6px);
}

/* Testimonials - more elegant */
.testimonial-card {
  border: none;
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.06);
  border-radius: 2px;
}

/* CTA section - more dramatic */
.cta-section h2 { letter-spacing: -0.5px; font-weight: 600; }
.cta-section p { font-weight: 300; }
.cta-form input {
  border-radius: 0;
  padding: 16px 24px;
}
.cta-form .btn { padding: 16px 32px; }

/* Footer - more refined */
.footer { background: #0F0805; }
.footer-col h4 { letter-spacing: 2.5px; }

/* Page hero - more impactful */
.page-hero {
  background: linear-gradient(135deg, #0F0805 0%, #1A0F08 40%, #2C1810 100%);
  padding: 160px 0 80px;
}
.page-hero h1 { letter-spacing: -0.5px; font-weight: 600; }

/* Filter buttons - cleaner */
.filter-btn {
  border-radius: 0;
  padding: 10px 28px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-width: 1.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-color: var(--color-primary);
}

/* Contact form - more premium */
.contact-form input, .contact-form textarea, .contact-form select {
  border-radius: 0;
  padding: 16px 24px;
  border-width: 1.5px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.08);
}

/* FAQ - cleaner */
.faq-item summary { letter-spacing: 0.3px; }
.faq-item[open] summary { color: var(--color-accent); }

/* Cart drawer - more refined */
.cart-drawer { box-shadow: -10px 0 50px rgba(0,0,0,0.15); }
.cart-checkout { border-radius: 0; }

/* Value items - bolder numbers */
.value-item .num { letter-spacing: -2px; }

/* Animations - smoother */
.fade-up { transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

/* Toast - more modern */
.toast {
  border-radius: 0;
  padding: 18px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Smooth scroll for the whole page */
html { scroll-behavior: smooth; }

/* Selection color */
::selection { background: var(--color-accent); color: var(--color-white); }

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--color-secondary); }
