
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FAF6F0;
  color: #2A241E;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {

  --brand-orange: #C45A28;
  --brand-orange-l: #D97040;
  --brand-orange-dark: #A04820;
  --brand-orange-pale: #FBF0E8;
  --brand-green: #1F4D3B;
  --brand-green-dark: #163529;
  --cream: #FAF6F0;
  --cream-dark: #F3EBE0;

  --green: var(--brand-orange);
  --green-l: var(--brand-orange-l);
  --green-pale: var(--brand-orange-pale);
  --green-dark: var(--brand-green);
  --green-950: #2A1810;

  --accent: var(--brand-orange);
  --accent-l: #E8A574;
  --accent-dark: var(--brand-orange-dark);

  --red: #ef4444;
  --red-pale: #fef2f2;
  --blue: #3b82f6;
  --blue-pale: #eff6ff;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --shadow-green: 0 8px 24px rgba(196,90,40,.18);
  --shadow-accent: 0 8px 24px rgba(196,90,40,.22);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(196,90,40,.15); }
  50% { box-shadow: 0 0 40px rgba(196,90,40,.3); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gray-800);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.logo:hover { transform: scale(1.02); }

.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201, 169, 98, .28);
}
.logo-text-fallback { display: none; }
.logo-name-dark { color: var(--green-dark); font-weight: 900; }
.logo-name-accent { color: var(--green); font-weight: 800; }

.header-only-mobile { display: none; }

.header-cart-mobile {
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  background: white;
}
.header-cart-mobile svg { width: 20px; height: 20px; }
.header-cart-mobile:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.header-cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: .62rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid white;
}

@media (max-width: 480px) {
  .logo-img { height: 40px; width: 40px; }
}

.search-bar {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all .3s var(--ease);
  min-width: 0;
}
.search-bar:focus-within {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(196,90,40,.08);
}

.search-icon {
  color: var(--gray-400);
  margin-left: 18px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.search-bar input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  outline: none;
  font-size: .9rem;
  color: var(--gray-800);
  background: transparent;
  font-family: inherit;
  min-width: 0;
  font-weight: 500;
}
.search-bar input::placeholder { color: var(--gray-400); }

.search-btn {
  padding: 11px 24px;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s var(--ease);
  flex-shrink: 0;
  font-family: inherit;
  letter-spacing: .02em;
}
.search-btn:hover { background: var(--green-l); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-link {
  color: var(--gray-600);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
}
.header-link:hover { color: var(--green); }

.header-icon-btn {
  color: var(--gray-600);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.header-icon-btn:hover {
  color: var(--green);
  background: var(--green-pale);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .85rem;
  transition: all .25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(196,90,40,.3);
}
.cart-btn:hover {
  background: var(--green-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,90,40,.35);
}
.cart-btn svg { width: 17px; height: 17px; }

.cart-count {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  animation: badgePulse .3s var(--ease-bounce);
}

.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; border: none; background: none; cursor: pointer; padding: 8px; gap: 5px; z-index: 210; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--gray-800); border-radius: 2px; transition: all .25s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 180; opacity: 0; transition: opacity .3s; }
.mobile-menu-overlay.open { display: block; opacity: 1; }

.mobile-menu { display: none; position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: white; z-index: 200; box-shadow: -4px 0 20px rgba(0,0,0,.1); transition: right .3s cubic-bezier(.4,0,.2,1); flex-direction: column; }
.mobile-menu.open { right: 0; display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-100); }
.mobile-menu-body { flex: 1; padding: 8px 0; overflow-y: auto; }
.mobile-menu-link { display: block; padding: 14px 24px; font-size: .95rem; font-weight: 500; color: var(--gray-700); transition: all .2s; border-left: 3px solid transparent; }
.mobile-menu-link:hover { background: var(--gray-50); color: var(--green); border-left-color: var(--green); }

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .mobile-menu-overlay.open { display: block; }
  .mobile-menu.open { display: flex; }
  .header-nav-links { display: none; }
  .search-bar { display: none; }
  .header-only-desktop { display: none !important; }
  .header-only-mobile { display: inline-flex !important; }

  .header-inner {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-areas: "menu logo actions";
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    flex-wrap: nowrap;
  }

  .hamburger {
    grid-area: menu;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    background: white;
  }

  .logo {
    grid-area: logo;
    justify-self: center;
    min-width: 0;
  }

  .header-actions {
    grid-area: actions;
    gap: 6px;
  }

  .user-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .user-btn span,
  #userBtnLabel {
    display: none !important;
  }

  .hero-banner {
    padding: 7px 12px;
    font-size: .72rem;
    line-height: 1.35;
  }

  .hero-banner a {
    margin-left: 4px;
    white-space: nowrap;
  }
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.header-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s var(--ease);
}
.header-nav-link:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}
.header-nav-wa {
  color: var(--brand-orange);
}
.header-nav-wa:hover {
  background: var(--brand-orange-pale);
  color: var(--brand-orange-dark);
}
@media (max-width: 768px) { .header-nav-links { display: none; } }

.category-nav {
  background: linear-gradient(180deg, #3A2818 0%, #4A3220 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav .container {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  max-width: 100%;
}
.category-nav .container::-webkit-scrollbar { display: none; }

.cat-list {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.cat-list::-webkit-scrollbar { display: none; }

.cat-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  background: transparent;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: .01em;
}
.cat-btn:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.1);
}
.cat-btn.active {
  background: var(--green);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(196,90,40,.3);
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196,90,40,.25);
}

.btn-green { background: var(--green); color: white; box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-l); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
}

.btn-white { background: white; color: var(--green-dark); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }

.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: .95rem; border-radius: var(--radius-lg); }
.btn-danger { background: var(--red); color: white; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.hero-banner {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-l) 50%, var(--green) 100%);
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-banner a { color: var(--accent-l); text-decoration: none; font-weight: 700; margin-left: 8px; }
.hero-banner a:hover { text-decoration: underline; }

.hero {
  background: linear-gradient(160deg, #2A1810 0%, #4A2E1C 38%, #5C3824 68%, #3A2418 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  white-space: nowrap;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,165,116,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,90,40,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
  margin: 0 auto;
}

.hero-content {
  flex: 0 1 auto;
  max-width: 600px;
  animation: fadeInLeft .8s var(--ease-out) both;
}
.hero-map {
  flex: 0 0 520px;
  width: 520px;
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .hero-map {
    width: 100%;
    max-width: 500px;
    flex: 1;
  }
  .hero-map iframe {
    height: 250px !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--accent-l); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 640px;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .8s var(--ease-out) .3s both;
}

@media (max-width: 992px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center !important;
  }
  .hero-stats {
    justify-content: center !important;
  }
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-l);
  line-height: 1;
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.hero-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInRight .8s var(--ease-out) .2s both;
}

@media (max-width: 1024px) {
  .hero-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-products-grid {
    grid-template-columns: 1fr;
  }
}

.hero-product-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 24px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all .3s var(--ease);
  animation: float 6s ease-in-out infinite;
}
.hero-product-card:nth-child(2) { animation-delay: -2s; }
.hero-product-card:nth-child(3) { animation-delay: -4s; }

.hero-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.3);
}
.hero-product-badge {
  display: inline-block;
  background: var(--accent-l);
  color: #1a1a1a;
  font-size: .7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.hero-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #faf8f5, #ebe4d8);
  margin-bottom: 18px;
}
.hero-product-cat {
  font-size: .75rem;
  font-weight: 600;
  color: #E8A574;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.hero-product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-l);
  margin-bottom: 18px;
}
.hero-product-btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
}
.hero-product-btn:hover { background: var(--green-pale); }

.features-strip {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.feat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--gray-100);
  transition: all .25s var(--ease);
  cursor: default;
  background: white;
}
.feat-card:last-child { border-right: none; }
.feat-card:hover { background: var(--gray-50); }

.feat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-bounce);
}
.feat-card:hover .feat-icon { transform: translateY(-3px); }

.feat-icon { color: var(--green); }

.feat-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.feat-text span {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card { border-bottom: 1px solid rgba(255,255,255,.04); }
}
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.section { padding: 72px 0; }

.section.why-us { padding-bottom: 44px; }
.section.why-us + .section { padding-top: 44px; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -.02em;
}
.section-title span { color: var(--green); }

.section-sub {
  color: var(--gray-500);
  font-size: .88rem;
  margin-top: 6px;
  font-weight: 400;
}

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px);
}

.cat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform .3s var(--ease-bounce);
}
.cat-card:hover .cat-card-icon { transform: scale(1.15) rotate(4deg); }

.cat-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.3;
}

.cat-card .cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  transition: all .2s;
}
.cat-card:hover .cat-count { background: var(--green-pale); color: var(--green); }

@media (max-width: 1024px) { .cat-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.product-grid.featured-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  position: relative;
  min-width: 0;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--green);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #faf8f5 0%, #f3efe8 55%, #ebe4d8 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  box-sizing: border-box;
  transition: transform .55s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}
.product-img-placeholder svg { width: 48px; height: 48px; color: var(--gray-300); }

.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 240, 232, 0.96);
  color: var(--brand-orange-dark);
  border: 1px solid rgba(196, 90, 40, 0.28);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 8px;
  letter-spacing: .03em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(160, 72, 32, 0.1);
}
.product-discount-badge-inline {
  position: static;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  vertical-align: middle;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-orange-dark);
  background: var(--brand-orange-pale);
  border: 1px solid rgba(196, 90, 40, 0.22);
  padding: 4px 10px;
  border-radius: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #a8a29e;
  font-size: .82rem;
  margin-right: 7px;
  font-weight: 500;
}
.old-price-lg {
  font-size: 1.1rem;
  margin-right: 10px;
}
.home-page .bk-ref-price .old-price,
.home-page .bk-spotlight-price .old-price,
.product-price-row .old-price {
  display: inline-block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: .02em;
}
.badge-out { background: var(--red-pale); color: var(--red); }
.badge-low { background: #fff7ed; color: var(--accent-dark); }
.badge-new { background: var(--blue-pale); color: var(--blue); }

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  min-width: 0;
}

.product-category {
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.product-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 14px;
  width: 100%;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  max-width: 100%;
}
.price-main {
  display: inline;
  white-space: nowrap;
}
.price-value,
.price-currency {
  white-space: nowrap;
}
.old-price {
  font-size: .82rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius) !important;
  font-size: .82rem !important;
  padding: 9px 16px !important;
  opacity: 1;
  transform: none;
  transition: all .25s var(--ease) !important;
}
.add-to-cart-btn:hover {
  transform: translateY(-1px) !important;
}

@media (hover: none) { .add-to-cart-btn { opacity: 1; transform: none; } }

.products-page { padding: 32px 0 72px; }

.products-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar-filters {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}

.filter-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.filter-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s var(--ease);
  font-size: .84rem;
  color: var(--gray-600);
  font-weight: 450;
}
.filter-item:hover { background: var(--green-pale); color: var(--green); }
.filter-item.active { background: var(--green-pale); color: var(--green); font-weight: 600; }
.filter-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.products-count { font-size: .88rem; color: var(--gray-500); font-weight: 400; }
.products-count strong { color: var(--gray-800); font-weight: 700; }

.toolbar-right { display: flex; align-items: center; gap: 10px; }

.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .84rem;
  background: white;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-700);
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--green); }

.view-btns { display: flex; gap: 4px; }
.view-btn {
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  transition: all .2s var(--ease);
}
.view-btn.active, .view-btn:hover { background: var(--green-pale); color: var(--green); }
.view-btn svg { width: 18px; height: 18px; }

.product-grid.list-view { grid-template-columns: 1fr; }
.product-grid.list-view .product-card { flex-direction: row; }
.product-grid.list-view .product-img-wrap { width: 180px; flex-shrink: 0; aspect-ratio: 4 / 5; height: auto; padding-top: 0; }

.page-search { display: flex; gap: 10px; margin-bottom: 20px; }
.page-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .88rem;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.page-search input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(196,90,40,.08); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding: 12px 0 0;
  font-weight: 450;
}
.breadcrumb a { color: var(--green); transition: color .15s; }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb-sep { color: var(--gray-300); font-size: .75rem; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}

.main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(165deg, #faf8f5 0%, #f3efe8 55%, #ebe4d8 100%);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.main-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  box-sizing: border-box;
  transition: opacity .3s, transform .4s var(--ease);
}
.main-img-wrap:hover img { transform: scale(1.03); }

.thumb-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.thumb-row img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border-radius: var(--radius);
  border: 2.5px solid var(--gray-200);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.thumb-row img.active, .thumb-row img:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(196,90,40,.15);
}

.product-category-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-detail-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.product-detail-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.01em;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.stock-badge svg { width: 14px; height: 14px; }
.stock-badge.in { background: var(--green-pale); color: var(--green); }
.stock-badge.low { background: #fff7ed; color: var(--accent-dark); }
.stock-badge.out { background: var(--red-pale); color: var(--red); }

.price-unit {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1.2;
  margin-top: 1px;
}

.weight-picker { margin-bottom: 20px; }
.weight-picker-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.weight-picker-note {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 8px;
}
.weight-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.weight-option {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  color: var(--gray-800);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.weight-option span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-500);
}
.weight-option:hover,
.weight-option.active {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green-dark);
}
.weight-option.active span { color: var(--green); }

.weight-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.weight-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.weight-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  z-index: 1201;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}
.weight-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.weight-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-500);
}
.weight-modal h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-right: 24px;
}
.weight-modal-sub {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.weight-modal .weight-options { margin-bottom: 18px; }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-label { font-size: .85rem; font-weight: 600; color: var(--gray-600); }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-ctrl button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--gray-600);
  transition: all .2s;
  font-size: 1.1rem;
}
.qty-ctrl button:hover { background: var(--gray-200); }
.qty-ctrl input {
  width: 52px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  outline: none;
  font-size: .95rem;
  font-family: inherit;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.whatsapp-btn-detail {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.whatsapp-btn-detail:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.product-meta {
  border-top: 1.5px solid var(--gray-100);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-row { display: flex; gap: 10px; font-size: .85rem; }
.meta-label { color: var(--gray-400); min-width: 90px; font-weight: 500; }
.meta-val { color: var(--gray-700); font-weight: 600; }

.product-desc {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.product-desc h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; color: var(--gray-800); }
.product-desc p { color: var(--gray-600); line-height: 1.85; font-size: .92rem; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: white;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }
@media (max-width: 480px) { .cart-sidebar { width: 100%; } }

.cart-header {
  padding: 22px 24px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header h2 svg { width: 20px; height: 20px; color: var(--green); }

.close-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--gray-400);
  transition: all .2s var(--ease);
}
.close-btn:hover { background: var(--gray-100); color: var(--gray-800); }
.close-btn svg { width: 18px; height: 18px; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 56px 0; color: var(--gray-400); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 14px; opacity: .3; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  animation: fadeInUp .3s var(--ease) both;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { font-size: .82rem; color: var(--gray-500); margin-bottom: 10px; font-weight: 450; }

.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
  font-weight: 600;
}
.cart-qty-btn:hover { background: var(--green-pale); color: var(--green); }
.cart-qty { font-size: .88rem; font-weight: 700; min-width: 24px; text-align: center; }
.cart-item-total {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-dark);
  align-self: center;
  flex-shrink: 0;
}

.cart-remove {
  color: var(--gray-300);
  transition: all .2s;
  align-self: flex-start;
  margin-top: 2px;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.cart-remove:hover { color: var(--red); background: var(--red-pale); }
.cart-remove svg { width: 16px; height: 16px; }

.cart-footer { padding: 22px 24px; border-top: 1.5px solid var(--gray-100); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--gray-500); margin-bottom: 8px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 18px;
  padding-top: 10px;
  border-top: 1.5px solid var(--gray-100);
}

.free-shipping-bar {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.free-shipping-bar svg { width: 14px; height: 14px; }

.cart-page { padding: 40px 0 72px; }
.cart-page-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

.cart-table {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cart-table-header {
  padding: 16px 24px;
  border-bottom: 1.5px solid var(--gray-100);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 16px;
  background: var(--gray-50);
}
.cart-table-row {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 16px;
  align-items: center;
  transition: background .2s;
}
.cart-table-row:hover { background: var(--gray-50); }
.cart-table-row:last-child { border-bottom: none; }

.cart-prod-cell { display: flex; align-items: center; gap: 16px; }
.cart-prod-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  object-fit: contain;
  background: white;
  mix-blend-mode: multiply;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.cart-prod-name { font-size: .88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.cart-prod-price { font-size: .8rem; color: var(--gray-400); font-weight: 450; }

.cart-order-summary {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}
.cart-order-summary h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }

.summary-row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--gray-500); margin-bottom: 10px; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  padding-top: 14px;
  border-top: 1.5px solid var(--gray-100);
  margin-top: 4px;
  margin-bottom: 22px;
}

.checkout-page { padding: 40px 0 72px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

.checkout-section {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.checkout-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section h3 svg { width: 18px; height: 18px; color: var(--green); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: all .2s var(--ease);
  color: var(--gray-800);
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(196,90,40,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-option:hover { border-color: var(--green); }
.payment-option.selected {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 0 0 3px rgba(196,90,40,.08);
}
.payment-option input[type=radio] { accent-color: var(--green); width: 16px; height: 16px; }
.payment-option-label { font-size: .9rem; font-weight: 600; color: var(--gray-700); }
.payment-option-sub { font-size: .78rem; color: var(--gray-400); }
.payment-option svg { width: 20px; height: 20px; color: var(--green); }
.card-fields { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gray-100); }

.order-summary-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-xs);
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gray-800);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  font-size: .88rem;
  font-weight: 500;
  z-index: 999;
  transform: translateY(24px) scale(.95);
  opacity: 0;
  transition: all .35s var(--ease-bounce);
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
}
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

.about-hero {
  background: linear-gradient(135deg, #3A2818 0%, #2A1810 100%);
  color: white;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,165,116,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.about-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.about-hero p { font-size: 1.1rem; opacity: .8; max-width: 600px; margin: 0 auto; font-weight: 400; }

.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--gray-800); margin-bottom: 18px; letter-spacing: -.02em; }
.about-text p { color: var(--gray-600); line-height: 1.85; margin-bottom: 18px; font-size: .95rem; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: var(--green); }
.value-item h4 { font-size: .88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.value-item p { font-size: .8rem; color: var(--gray-500); }

.team-section { background: var(--gray-50); padding: 72px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.stat-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all .3s var(--ease);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-box strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.stat-box span { font-size: .85rem; color: var(--gray-500); font-weight: 500; }

.faq-hero {
  background: linear-gradient(135deg, #3A2818 0%, #2A1810 100%);
  color: white;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.faq-hero p { font-size: 1.1rem; opacity: .8; font-weight: 400; }

.faq-section { padding: 72px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-green); }

.faq-question {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  transition: all .2s;
  gap: 18px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--green); }

.faq-answer { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 26px 24px; }
.faq-answer p { color: var(--gray-600); line-height: 1.85; font-size: .9rem; }

.footer {
  background: linear-gradient(180deg, #2A1810 0%, #1F1410 100%);
  color: white;
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.8fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  margin-bottom: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201, 169, 98, .22);
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 300px;
  font-weight: 400;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-badges {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-badge img {
  max-height: 64px;
  width: auto;
  display: block;
}
.footer-badge-link {
  min-width: auto;
}
.footer-badge-link img {
  max-height: 100px;
}
.payment-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  flex: 1;
}
.payment-logos img {
  max-height: 30px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.footer-note {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  max-width: 400px;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-badges-col { align-items: center; text-align: center; }
  .footer-badges { align-items: center; }
  .footer-note { text-align: center; max-width: 100%; }
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  transition: all .25s var(--ease);
}
.social-btn svg { width: 15px; height: 15px; }
.whatsapp-btn { background: #25d366; color: white; box-shadow: 0 2px 8px rgba(37,211,102,.25); }
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.instagram-btn {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
}
.instagram-btn:hover { background: rgba(255,255,255,.15); color: white; }

.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: all .2s;
  font-weight: 400;
}
.footer-col ul li a:hover { color: var(--green-l); transform: translateX(3px); display: inline-block; }

.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.contact-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--green-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); font-weight: 400; }

.admin-link { font-size: .78rem; color: rgba(255,255,255,.15); transition: color .2s; }
.admin-link:hover { color: rgba(255,255,255,.4); }

.loading { display: flex; align-items: center; justify-content: center; padding: 100px; }
.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.empty-state { text-align: center; padding: 100px 20px; color: var(--gray-400); }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 20px; opacity: .3; }
.empty-state h3 { font-size: 1.15rem; font-weight: 600; color: var(--gray-600); margin-bottom: 10px; }
.page-title { font-size: 1.7rem; font-weight: 800; color: var(--gray-800); margin-bottom: 4px; letter-spacing: -.02em; }
.total-count { font-size: 1rem; font-weight: 400; color: var(--gray-400); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination button { min-width: 40px; height: 40px; border-radius: var(--radius); font-size: .85rem; font-weight: 600; }

.order-success { text-align: center; padding: 100px 20px; }
.order-success-icon {
  width: 88px;
  height: 88px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: scaleIn .5s var(--ease-bounce) both;
}
.order-success-icon svg { width: 44px; height: 44px; color: var(--green); }
.order-success h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 14px;
  animation: fadeInUp .5s var(--ease-out) .1s both;
}
.order-success p {
  color: var(--gray-500);
  margin-bottom: 8px;
  animation: fadeInUp .5s var(--ease-out) .2s both;
}
.order-number-box {
  background: var(--green-pale);
  border: 1.5px solid rgba(196,90,40,.15);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  display: inline-block;
  font-weight: 700;
  color: var(--green);
  margin: 20px 0 36px;
  font-size: 1.15rem;
  animation: fadeInUp .5s var(--ease-out) .3s both;
}

.cta-banner {
  background: linear-gradient(135deg, #FBF0E8 0%, #F5E6D8 100%);
  padding: 32px 40px;
  margin: 64px auto;
  max-width: 960px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -5px rgba(196,90,40,.12);
  border: 1px solid rgba(196,90,40,.18);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.6) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-green-dark);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.cta-text p { color: #6B4A32; font-size: .9rem; line-height: 1.6; font-weight: 500; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-wa-btn {
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.cta-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.cta-products-btn {
  background: white;
  color: #064e3b;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: .88rem;
  border: 1.5px solid #bbf7d0;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cta-products-btn:hover {
  background: #f0fdf4;
  border-color: rgba(196,90,40,.35);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-text h2 { font-size: 1.5rem; }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); user-select: none; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,.1); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: .5;
  transition: all .2s;
  background: none;
  border: none;
  padding: 12px 18px;
  user-select: none;
  border-radius: var(--radius);
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,.08); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-weight: 500;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

img[data-src] { opacity: 0; transition: opacity .4s var(--ease); }
img.lazy-loaded { opacity: 1; }

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  z-index: 150;
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-bottom-nav .mbn-items { display: flex; align-items: stretch; }
.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--gray-400);
  font-size: .63rem;
  font-weight: 600;
  transition: all .2s var(--ease);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  text-decoration: none;
  position: relative;
}
.mbn-item svg { width: 22px; height: 22px; transition: transform .2s var(--ease-bounce); }
.mbn-item:hover, .mbn-item.active { color: var(--green); }
.mbn-item.active svg { transform: scale(1.1); }
.mbn-item--wa { color: var(--brand-orange); }
.mbn-item--wa:hover { color: var(--brand-orange-dark); }

.mbn-cart-badge { position: relative; }
.mbn-cart-badge .mbn-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: .58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePulse .3s var(--ease-bounce);
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 64px; }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.page-loader.active { opacity: 1; pointer-events: all; }
.page-loader-spinner {
  width: 44px;
  height: 44px;
  border: 3.5px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.user-menu-wrap { position: relative; }
.user-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.user-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.user-btn svg { flex-shrink: 0; }

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  z-index: 500;
  overflow: hidden;
  animation: fadeInDown .2s var(--ease) both;
}
.user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  background: none;
  border: none;
  font-size: .88rem;
  cursor: pointer;
  color: var(--gray-700);
  transition: all .15s;
  font-weight: 500;
}
.user-dropdown button:hover { background: var(--green-pale); color: var(--green); }
.user-dropdown-name {
  padding: 12px 18px 8px;
  font-size: .82rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.auth-modal-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(.97);
  transition: all .3s var(--ease-bounce);
}
.auth-modal-overlay.open .auth-modal { transform: translateY(0) scale(1); }

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
.auth-modal-close:hover { color: var(--gray-700); background: var(--gray-100); }

.auth-title { font-size: 1.35rem; font-weight: 800; color: var(--gray-800); margin-bottom: 22px; }

.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .92rem;
  outline: none;
  transition: all .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.auth-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(196,90,40,.08);
}

.auth-captcha { margin-bottom: 16px; }

.auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--ease);
  margin-bottom: 14px;
  box-shadow: var(--shadow-green);
  font-family: inherit;
}
.auth-btn:hover { background: var(--green-l); transform: translateY(-1px); }
.auth-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.auth-switch { text-align: center; font-size: .85rem; color: var(--gray-500); }
.auth-switch a { color: var(--green); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

.auth-error {
  background: var(--red-pale);
  border: 1px solid #fecaca;
  color: var(--red);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .84rem;
  margin-bottom: 16px;
  font-weight: 500;
  animation: fadeInDown .3s var(--ease) both;
}

@media (max-width: 480px) {
  .auth-modal { padding: 28px 20px 22px; margin: 12px; border-radius: var(--radius-xl); }
  .user-btn span { display: none; }
}

.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--gray-50);
}
.auth-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  animation: scaleIn .4s var(--ease-out) both;
}
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-400);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
}
.auth-tab.active { color: var(--green); border-bottom-color: var(--green); }
.auth-tab:hover:not(.active) { color: var(--gray-600); }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; }
@media (max-width: 480px) { .auth-card { padding: 32px 22px; } }

.why-us {
  background: #FAF6F0;
  padding: 48px 0 64px;
  position: relative;
  z-index: 2;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #FAF6F0);
  pointer-events: none;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--gray-100);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: all .3s var(--ease-bounce);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(4deg); background: var(--green); color: white; }

.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.why-card p { font-size: .83rem; color: var(--gray-500); line-height: 1.7; font-weight: 400; }

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

.mobile-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.mobile-search-overlay.open { opacity: 1; pointer-events: all; }

.mobile-search-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  width: calc(100% - 32px);
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-20px);
  transition: transform .3s var(--ease-bounce);
}
.mobile-search-overlay.open .mobile-search-box { transform: translateY(0); }

.mobile-search-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-800);
}
.mobile-search-box input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.mobile-search-box input:focus { border-color: var(--green); }
.mobile-search-box .search-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar-filters { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .product-grid.featured-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 48px 0; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-sidebar { width: 100%; }
  .cat-cards-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .product-grid.featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.75rem; }
  .hero-content p { font-size: .95rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-grid.featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-info { padding: 10px 10px 12px; min-height: 0; }
  .product-name { font-size: .82rem; margin-bottom: 8px; min-height: 2.4em; }
  .product-price { font-size: .88rem; }
  .product-price-row { gap: 2px; margin-bottom: 10px; }
  .product-price-row .old-price { font-size: .68rem; }
  .price-unit { font-size: .62rem; }
  .add-to-cart-btn { font-size: .76rem !important; padding: 8px 10px !important; }
  .product-card .product-stars { margin-top: 4px; }
  .product-card .product-stars .star { font-size: .72rem; }
  .product-card .product-stars-value { font-size: .68rem; }
  .section-title { font-size: 1.4rem; }
  .container { padding: 0 16px; }
  .home-page .bk-ref-price { font-size: .88rem; line-height: 1.3; }
  .home-page .bk-ref-price .old-price { display: block; font-size: .68rem; margin: 0 0 2px; }
  .home-page .bk-ref-price .price-unit { font-size: .62rem; }
}

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius);
}

.skeleton-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
}
.skeleton-img { width: 100%; padding-top: 80%; }
.skeleton-text { height: 14px; margin: 12px 16px 8px; width: 70%; }
.skeleton-text-sm { height: 10px; margin: 0 16px 16px; width: 45%; }
.skeleton-price { height: 20px; margin: 8px 16px 16px; width: 35%; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: rgba(196,90,40,.15);
  color: var(--green-dark);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ===== Ana Sayfa — Eski Site Tasarımı ===== */
.home-page {
  --bk-dark: #1a3c34;
  --bk-darker: #0f2620;
  --bk-green: #2d5a4a;
  --bk-cream: #f5f0e8;
  --bk-gold: #c9a962;
  --bk-gold-light: #e8d5a3;
  position: relative;
  isolation: isolate;
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--bk-darker);
  background-color: #ece4d6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201,169,98,.22), transparent 55%),
    radial-gradient(circle at 8% 18%, rgba(201,169,98,.16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(26,60,52,.12), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(15,38,32,.08), transparent 40%),
    linear-gradient(180deg, #f7f2ea 0%, #f0e8dc 45%, #ebe2d4 100%);
}

.home-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    radial-gradient(rgba(26,60,52,.07) .75px, transparent .75px),
    linear-gradient(rgba(201,169,98,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,98,.04) 1px, transparent 1px);
  background-size: 22px 22px, 44px 44px, 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35));
}

.home-page::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201,169,98,.08), transparent 18%, transparent 82%, rgba(201,169,98,.08));
}

.home-page > section,
.home-page > .home-page-inner {
  position: relative;
  z-index: 1;
}

.home-page .bk-hidden { display: none !important; }

.home-page .bk-section-display {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--bk-dark);
}

.home-page .bk-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--bk-gold-light);
}

.home-page .bk-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(88%, 520px);
  padding: 20px 18px 22px;
  color: var(--bk-cream);
}

.home-page .bk-hero-rule {
  width: 52px;
  height: 2px;
  margin: 10px 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bk-gold), var(--bk-gold-light));
  box-shadow: 0 0 12px rgba(201,169,98,.35);
}

.home-page .bk-hero-headline {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: clamp(1.55rem, 5.2vw, 2rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.home-page .bk-hero-lead {
  margin-top: 12px;
  max-width: 34ch;
  font-size: .84rem;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(245,240,232,.88);
}

.home-page .bk-hero-cta {
  align-self: flex-start;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: .78rem;
  box-shadow: 0 8px 22px rgba(15,38,32,.22);
}

.home-page .bk-brand-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--bk-gold);
}

.home-page .bk-brand-eyebrow--green {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--bk-green);
}

.home-page .bk-btn-primary,
.home-page .bk-btn-gold,
.home-page .bk-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 4px;
  transition: .2s ease;
  text-decoration: none;
  cursor: pointer;
}

.home-page .bk-btn-primary {
  background: var(--bk-dark);
  color: var(--bk-cream);
}
.home-page .bk-btn-primary:hover { background: var(--bk-green); }

.home-page .bk-btn-gold {
  background: var(--bk-gold);
  color: var(--bk-darker);
}
.home-page .bk-btn-gold:hover { background: var(--bk-gold-light); }

.home-page .bk-btn-outline {
  border: 1px solid rgba(26,60,52,.8);
  color: var(--bk-dark);
  background: transparent;
}
.home-page .bk-btn-outline:hover {
  background: var(--bk-dark);
  color: var(--bk-cream);
}

.home-page .bk-gold-divider {
  height: 1px;
  max-width: 320px;
  margin: 16px auto 0;
  background: linear-gradient(to right, transparent, rgba(201,169,98,.6), transparent);
}

/* Mobile hero */
.home-page .bk-mobile-hero {
  display: block;
  padding: 10px 0 12px;
  background: transparent;
}

.home-page .bk-desktop-hero { display: none; }

.home-page .bk-mobile-hero-grid {
  display: grid;
  gap: 12px;
}

.home-page .bk-hero-banner,
.home-page .bk-desktop-banner {
  overflow: hidden;
  border: 1px solid rgba(201,169,98,.28);
  border-radius: 12px;
  background: var(--bk-darker, #0f2620);
  box-shadow:
    0 4px 6px rgba(15,38,32,.06),
    0 18px 40px rgba(15,38,32,.08),
    inset 0 1px 0 rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
}

.home-page .bk-hero-banner-inner {
  position: relative;
  min-height: 252px;
  overflow: hidden;
}

.home-page .bk-desktop-banner-inner {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  overflow: hidden;
}

.home-page .bk-hero-banner-inner img,
.home-page .bk-desktop-banner-inner img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .bk-hero-banner-overlay,
.home-page .bk-desktop-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(15,38,32,.82) 0%, rgba(15,38,32,.62) 34%, rgba(15,38,32,.18) 62%, transparent 78%),
    linear-gradient(to top, rgba(15,38,32,.45), transparent 42%);
}

.home-page .bk-hero-banner-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(135deg, var(--bk-darker), var(--bk-dark));
  color: var(--bk-cream);
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
}

.home-page .bk-brand-card {
  display: none;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(201,169,98,.2);
  border-radius: 4px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
}

.home-page .bk-brand-img-wrap {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(26,60,52,.1);
  border-radius: 4px;
  background: rgba(245,240,232,.4);
}

.home-page .bk-brand-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.home-page .bk-brand-desc {
  margin-top: 12px;
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(26,60,52,.7);
}

.home-page .bk-brand-card .bk-btn-primary,
.home-page .bk-brand-card .bk-btn-outline {
  margin-top: 16px;
  width: 100%;
}

.home-page .bk-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.home-page .bk-hero-dots span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(26,60,52,.25);
}

.home-page .bk-hero-dots span.active {
  width: 32px;
  background: var(--bk-dark);
}

.home-page .bk-hero-dots span:not(.active) { width: 24px; }

.home-page .bk-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.home-page .bk-ornament span:first-child,
.home-page .bk-ornament span:last-child {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,98,.55), transparent);
}

.home-page .bk-ornament-diamond {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--bk-gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,.18);
}

.home-page .bk-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(201,169,98,.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(245,240,232,.65));
  box-shadow: 0 8px 24px rgba(15,38,32,.05);
  backdrop-filter: blur(10px);
}

.home-page .bk-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(26,60,52,.72);
  white-space: nowrap;
}

.home-page .bk-trust-icon {
  color: var(--bk-gold);
  font-size: 10px;
}

.home-page .bk-showcase-panel {
  margin-top: 12px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(201,169,98,.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(248,243,235,.88) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 16px 40px rgba(15,38,32,.07);
}

.home-page .bk-showcase-panel::before {
  content: '';
  display: block;
  height: 3px;
  margin: -18px -14px 16px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--bk-dark), var(--bk-gold), var(--bk-dark));
}

.home-page .bk-showcase-head {
  text-align: center;
  margin-bottom: 14px;
}

.home-page .bk-showcase-eyebrow {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bk-gold);
}

.home-page .bk-showcase-title {
  margin-top: 6px;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bk-dark);
}

.home-page .bk-mobile-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(26,60,52,.05);
  border: 1px solid rgba(26,60,52,.08);
}

.home-page .bk-pill,
.home-page .bk-pill-active {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid rgba(26,60,52,.4);
  background: #fff;
  color: rgba(26,60,52,.55);
  cursor: pointer;
}

.home-page .bk-pill-active {
  background: linear-gradient(135deg, var(--bk-dark), var(--bk-green));
  border-color: var(--bk-dark);
  color: var(--bk-cream);
  box-shadow: 0 6px 16px rgba(15,38,32,.18);
}

.home-page .bk-product-rail {
  margin-top: 14px;
  overflow-x: auto;
  padding: 12px 4px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(26,60,52,.04), rgba(26,60,52,.02));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.home-page .bk-product-rail::-webkit-scrollbar { display: none; }

.home-page .bk-product-rail-inner {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.home-page .bk-ref-card {
  width: 44vw;
  min-width: 165px;
  max-width: 230px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(201,169,98,.28);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 2px 8px rgba(15,38,32,.06),
    0 12px 28px rgba(15,38,32,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-page .bk-ref-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--bk-gold), var(--bk-gold-light), var(--bk-gold));
}

.home-page .bk-ref-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 14px rgba(15,38,32,.08),
    0 20px 36px rgba(15,38,32,.1);
}

.home-page .bk-ref-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(26,60,52,.1);
  background: rgba(26,60,52,.05);
}

.home-page .bk-ref-img img,
.home-page .bk-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.home-page .bk-ref-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(26,60,52,.08);
}

.home-page .bk-new-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #0ea5e9;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.home-page .bk-ref-body { padding: 10px; }

.home-page .bk-ref-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(26,60,52,.6);
}

.home-page .bk-ref-name {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bk-darker);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-page .bk-ref-stars,
.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.product-stars .star {
  font-size: 14px;
  line-height: 1;
}

.product-stars .star-full { color: #f59e0b; }
.product-stars .star-half {
  background: linear-gradient(90deg, #f59e0b 50%, #e5e7eb 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-stars .star-empty { color: #e5e7eb; }

.product-stars-value {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-left: 2px;
}

.product-detail-info .product-stars {
  margin-top: 0;
  margin-bottom: 14px;
}

.product-detail-info .product-stars .star { font-size: 18px; }
.product-detail-info .product-stars-value { font-size: .9rem; }

.product-card .product-stars {
  margin-top: 6px;
  margin-bottom: 2px;
}

.home-page .bk-ref-stars svg { width: 14px; height: 14px; }

.home-page .bk-ref-price {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-dark);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.home-page .bk-ref-price .old-price {
  display: block;
  margin-right: 0;
}

.home-page .bk-ref-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--bk-dark);
  color: var(--bk-cream);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.home-page .bk-ref-btn:hover { background: var(--bk-green); }

/* Categories */
.home-page .bk-categories {
  padding: 48px 0 56px;
  background:
    linear-gradient(180deg, rgba(15,38,32,.03), rgba(15,38,32,.06)),
    radial-gradient(circle at 50% 0%, rgba(201,169,98,.12), transparent 55%);
  border-top: 1px solid rgba(201,169,98,.18);
  border-bottom: 1px solid rgba(201,169,98,.18);
}

.home-page .bk-categories-header { text-align: center; }

.home-page .bk-categories-header .bk-section-display {
  margin-top: 8px;
  font-size: 1.875rem;
}

.home-page .bk-categories-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: 1fr;
}

.home-page .bk-category-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bk-dark);
  text-decoration: none;
  border: 1px solid rgba(201,169,98,.22);
  box-shadow: 0 14px 30px rgba(15,38,32,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-page .bk-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15,38,32,.18);
}

.home-page .bk-category-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .35s ease, opacity .35s ease;
}

.home-page .bk-category-card:hover .bk-category-img {
  opacity: .9;
  transform: scale(1.05);
}

.home-page .bk-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,38,32,.9), transparent);
}

.home-page .bk-category-content {
  position: absolute;
  bottom: 0;
  padding: 24px;
  color: var(--bk-cream);
}

.home-page .bk-category-content h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.home-page .bk-category-content p {
  margin-top: 4px;
  font-size: .875rem;
  color: var(--bk-gold-light);
}

.home-page .bk-category-card:hover .bk-category-content p { text-decoration: underline; }

.home-page .bk-categories-footer {
  margin-top: 40px;
  text-align: center;
}

/* Features */
.home-page .bk-features {
  padding: 72px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,169,98,.1), transparent 35%),
    radial-gradient(circle at 80% 50%, rgba(26,60,52,.08), transparent 35%);
}

.home-page .bk-features-grid {
  display: grid;
  gap: 32px;
}

.home-page .bk-premium-panel {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(201,169,98,.28);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,243,235,.78));
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 16px 34px rgba(15,38,32,.08);
  backdrop-filter: blur(8px);
}

.home-page .bk-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--bk-dark);
  color: var(--bk-gold);
}

.home-page .bk-feature-icon svg { width: 32px; height: 32px; }

.home-page .bk-premium-panel h3 {
  margin-top: 24px;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bk-dark);
}

.home-page .bk-premium-panel p {
  margin-top: 12px;
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(26,60,52,.7);
}

/* Testimonials */
.home-page .bk-testimonials {
  padding: 56px 0 88px;
  background:
    linear-gradient(180deg, transparent, rgba(15,38,32,.04)),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,98,.14), transparent 70%);
}

.home-page .bk-testimonials-title {
  text-align: center;
  font-size: 2.25rem;
}

.home-page .bk-testimonials-wrap {
  position: relative;
  margin-top: 32px;
}

.home-page .bk-testimonial-track {
  display: flex;
  gap: 20px;
  max-width: 896px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.home-page .bk-testimonial-track::-webkit-scrollbar { display: none; }

.home-page .bk-testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(to right, #5a3828, #3f2a22);
  color: var(--bk-cream);
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}

.home-page .bk-testimonial-stars {
  font-size: 1.25rem;
  letter-spacing: .18em;
  color: var(--bk-gold-light);
}

.home-page .bk-testimonial-text {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.home-page .bk-testimonial-divider {
  width: 75%;
  height: 1px;
  margin: 20px auto 0;
  background: rgba(201,169,98,.3);
}

.home-page .bk-testimonial-name {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.home-page .bk-testimonial-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--bk-dark);
  color: var(--bk-cream);
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.home-page .bk-testimonial-nav#testimonial-prev { left: 0; }
.home-page .bk-testimonial-nav#testimonial-next { right: 0; }

@media (max-width: 1023px) {
  .home-page .bk-hero-copy {
    top: auto;
    bottom: 0;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    padding: 12px 12px 14px;
  }

  .home-page .bk-hero-eyebrow {
    font-size: 8px;
    letter-spacing: .22em;
  }

  .home-page .bk-hero-rule,
  .home-page .bk-hero-dots,
  .home-page .bk-ornament,
  .home-page .bk-trust-strip,
  .home-page .bk-showcase-head {
    display: none;
  }

  .home-page .bk-hero-headline {
    font-size: clamp(1.22rem, 5.4vw, 1.5rem);
    line-height: 1.16;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .bk-hero-lead {
    margin-top: 6px;
    max-width: none;
    font-size: .72rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .bk-hero-cta {
    margin-top: 10px;
    padding: 9px 16px;
    font-size: .72rem;
  }

  .home-page .bk-showcase-panel {
    margin-top: 10px;
    padding-top: 12px;
  }

  .home-page .bk-showcase-panel::before {
    margin: -12px -12px 10px;
  }

  .home-page .bk-mobile-tabs {
    margin-top: 0;
  }

  .home-page .bk-product-rail {
    margin-top: 10px;
    padding: 8px 2px 6px;
  }
}

@media (max-width: 380px) {
  .home-page .bk-hero-banner-inner { min-height: 236px; }

  .home-page .bk-hero-headline { font-size: 1.18rem; }

  .home-page .bk-hero-lead { font-size: .7rem; -webkit-line-clamp: 1; }
}

@media (min-width: 640px) {
  .home-page .bk-ref-card { width: 220px; }
  .home-page .bk-mobile-hero .bk-hero-banner-inner { min-height: 280px; }
  .home-page .bk-hero-headline { font-size: 1.65rem; }
  .home-page .bk-hero-lead { font-size: .84rem; max-width: 38ch; display: block; -webkit-line-clamp: unset; }
  .home-page .bk-hero-rule { display: block; }
  .home-page .bk-hero-dots,
  .home-page .bk-ornament,
  .home-page .bk-trust-strip { display: flex; }
  .home-page .bk-showcase-head { display: block; }
  .home-page .bk-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .bk-testimonial-card { flex: 0 0 calc(48% - 10px); }
}

@media (min-width: 768px) {
  .home-page .bk-mobile-hero-grid {
    grid-template-columns: 2fr 1fr;
  }
  .home-page .bk-brand-card--side { display: flex; }
  .home-page .bk-categories-grid { grid-template-columns: repeat(3, 1fr); }
  .home-page .bk-features-grid { grid-template-columns: repeat(3, 1fr); }
  .home-page .bk-testimonial-nav { display: inline-flex; }
  .home-page .bk-testimonials-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .home-page .bk-mobile-hero { display: none; }
  .home-page .bk-desktop-hero {
    display: block;
    padding: 40px 0 48px;
    background: transparent;
  }

  .home-page .bk-desktop-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .home-page .bk-desktop-banner {
    height: 100%;
  }

  .home-page .bk-desktop-banner-inner {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
  }

  .home-page .bk-desktop-banner-overlay {
    background:
      linear-gradient(to right, rgba(15,38,32,.88) 0%, rgba(15,38,32,.68) 38%, rgba(15,38,32,.22) 68%, transparent 82%),
      linear-gradient(to top, rgba(15,38,32,.35), transparent 50%);
  }

  .home-page .bk-hero-copy {
    left: 36px;
    max-width: 540px;
    padding: 36px 0;
  }

  .home-page .bk-hero-eyebrow { font-size: 12px; letter-spacing: .28em; }

  .home-page .bk-hero-rule { width: 64px; margin: 12px 0 18px; }

  .home-page .bk-hero-headline {
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    line-height: 1.1;
  }

  .home-page .bk-hero-lead {
    margin-top: 18px;
    font-size: 1.05rem;
    max-width: 42ch;
  }

  .home-page .bk-hero-cta {
    margin-top: 28px;
    padding: 12px 28px;
    font-size: .875rem;
  }

  .home-page .bk-brand-card {
    display: flex;
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
  }

  .home-page .bk-brand-img-wrap--lg img { height: 208px; }

  .home-page .bk-spotlight-section {
    margin-top: 32px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(201,169,98,.24);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,243,235,.88));
    box-shadow:
      0 1px 0 rgba(255,255,255,.9) inset,
      0 20px 44px rgba(15,38,32,.08);
    position: relative;
    overflow: hidden;
  }

  .home-page .bk-spotlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bk-dark), var(--bk-gold), var(--bk-dark));
  }

  .home-page .bk-spotlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
  }

  .home-page .bk-spotlight-header .bk-section-display {
    margin-top: 4px;
    font-size: 1.875rem;
  }

  .home-page .bk-spotlight-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }

  .home-page .bk-spotlight-card {
    overflow: hidden;
    border: 1px solid rgba(26,60,52,.2);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    transition: transform .2s, box-shadow .2s;
  }

  .home-page .bk-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  }

  .home-page .bk-spotlight-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid rgba(26,60,52,.1);
    background: rgba(26,60,52,.05);
  }

  .home-page .bk-spotlight-card:hover .bk-spotlight-img img {
    transform: scale(1.05);
  }

  .home-page .bk-spotlight-body { padding: 12px; }

  .home-page .bk-spotlight-name {
    display: block;
    margin-top: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--bk-darker);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .bk-spotlight-name:hover { color: var(--bk-green); }

  .home-page .bk-spotlight-price {
    margin-top: 8px;
    font-weight: 700;
    color: var(--bk-dark);
  }

  .home-page .bk-spotlight-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--bk-dark);
    color: var(--bk-cream);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
  }

  .home-page .bk-spotlight-btn:hover { background: var(--bk-green); }
}

@media (min-width: 1280px) {
  .home-page .bk-spotlight-grid { grid-template-columns: repeat(5, 1fr); }
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
