:root {
  --dark: #123641;        /* dark teal (primary) */
  --dark-2: #0d2a33;
  --cream: #faf7f2;
  --cream-2: #efe8df;
  --gold: #c9a86a;
  --gold-2: #b3945a;
  --gold-light: #e3d3b3;
  --text: #2b2b2b;
  --muted: #7a7a7a;
  --white: #ffffff;
  --border: #ece5da;
  --red: #c0392b;
  --wa: #25d366;
  --shadow-xs: 0 2px 8px rgba(18,54,65,0.05);
  --shadow: 0 6px 24px rgba(18,54,65,0.07);
  --shadow-lg: 0 18px 50px rgba(18,54,65,0.13);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
/* Guard: nothing should ever be wider than the viewport */
img, video, iframe, table { max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: .5px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-outline, .btn-dark, .btn-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 40px; font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: #fff; box-shadow: 0 6px 18px rgba(201,168,106,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,168,106,.45); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ---------- Announcement bar ---------- */
.announce-bar { background: var(--dark); color: #fff; overflow: hidden; font-size: 12px; letter-spacing: 1.5px; }
.announce-track { display: flex; white-space: nowrap; animation: scroll-left 30s linear infinite; }
.announce-track span { padding: 10px 0; padding-right: 40px; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header { background: rgba(255,255,255,.96); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 16px rgba(18,54,65,0.07); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.logo img { height: 60px; width: auto; }
.main-nav { display: flex; gap: 30px; flex: 1; justify-content: center; align-items: center; }
.nav-link { font-size: 13.5px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--dark); font-weight: 500; position: relative; padding: 6px 0; display: inline-flex; align-items: center; gap: 6px; }
.nav-link i { font-size: 10px; transition: transform .3s; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
.nav-link:hover::after { width: 100%; }

/* Desktop dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-link-drop i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px); min-width: 240px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: .25s; z-index: 120; }
.nav-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 20px; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link { display: block; padding: 11px 16px; border-radius: 8px; font-size: 14px; color: var(--dark); letter-spacing: .3px; transition: .18s; }
.dropdown-link:hover { background: var(--cream); color: var(--gold-2); padding-left: 22px; }
.dropdown-all { font-weight: 600; border-bottom: 1px solid var(--border); border-radius: 8px 8px 0 0; margin-bottom: 4px; }

.header-actions { display: flex; gap: 16px; align-items: center; }
.icon-btn { background: none; border: none; font-size: 18px; color: var(--dark); cursor: pointer; position: relative; }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--gold); color: #fff; font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Jost'; }
.menu-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--dark); cursor: pointer; }

/* Search bar */
.search-bar { display: none; border-top: 1px solid var(--border); padding: 16px 0; position: relative; }
.search-bar.active { display: block; }
.search-bar .container { display: flex; align-items: center; gap: 12px; position: relative; }
.search-bar input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 30px; font-family: 'Jost'; font-size: 15px; outline: none; }
.search-bar button { background: none; border: none; font-size: 20px; color: var(--muted); cursor: pointer; }
.search-results { position: absolute; top: 56px; left: 20px; right: 20px; background: #fff; box-shadow: var(--shadow-lg); border-radius: 10px; overflow: hidden; z-index: 50; }
.search-results a { display: flex; gap: 12px; padding: 10px 14px; align-items: center; border-bottom: 1px solid var(--cream); }
.search-results a:hover { background: var(--cream); }
.search-results img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; }
.search-results .sr-name { font-size: 14px; }
.search-results .sr-price { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ---------- Mobile drawer ---------- */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 199; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: #fff; z-index: 200; transition: left .3s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.mobile-drawer.active { left: 0; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.drawer-logo { height: 54px; }
.drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dark); }
.mobile-nav { display: flex; flex-direction: column; padding: 10px 0; flex: 1; }
.mobile-link { display: block; padding: 15px 24px; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; border-bottom: 1px solid var(--cream); color: var(--dark); }
.mobile-link:hover { background: var(--cream); }
.mobile-group-toggle { width: 100%; background: none; border: none; border-bottom: 1px solid var(--cream); cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: 'Jost', sans-serif; }
.mobile-group-toggle i { font-size: 12px; transition: transform .3s; color: var(--gold-2); }
.mobile-group.open .mobile-group-toggle i { transform: rotate(180deg); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--cream); }
.mobile-group.open .mobile-sub { max-height: 500px; }
.mobile-sublink { display: block; padding: 13px 24px 13px 40px; font-size: 14px; letter-spacing: .5px; color: var(--dark); border-bottom: 1px solid #fff; }
.mobile-sublink:hover { color: var(--gold-2); }
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.drawer-social { display: flex; align-items: center; gap: 8px; color: var(--wa); font-weight: 500; }
.drawer-socials { display: flex; gap: 16px; margin-top: 14px; }
.drawer-socials a { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--dark); }

/* ---------- Top auto-slider ---------- */
.top-slider { position: relative; height: 600px; overflow: hidden; background: var(--dark); }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; opacity: 0; visibility: hidden; transform: scale(1.06); transition: opacity 1s ease, transform 6s ease, visibility 1s; }
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.slide-inner { position: relative; z-index: 2; }
.slide-text { max-width: 620px; color: #fff; }
.slide-eyebrow { letter-spacing: 4px; font-size: 13px; color: var(--gold-light); font-weight: 500; margin-bottom: 16px; opacity: 0; transform: translateY(20px); }
.slide-title { font-size: 66px; line-height: 1.05; color: #fff; margin-bottom: 18px; opacity: 0; transform: translateY(20px); }
.slide-sub { font-size: 19px; color: rgba(255,255,255,.9); max-width: 500px; margin-bottom: 32px; opacity: 0; transform: translateY(20px); }
.slide-text .btn-primary { opacity: 0; transform: translateY(20px); }
.slide.active .slide-eyebrow { animation: slideUp .8s .25s forwards; }
.slide.active .slide-title { animation: slideUp .8s .4s forwards; }
.slide.active .slide-sub { animation: slideUp .8s .55s forwards; }
.slide.active .btn-primary { animation: slideUp .8s .7s forwards; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.slider-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); transition: .4s; }
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-head { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; margin-bottom: 50px; text-align: center; }
.section-head h2 { font-size: 42px; color: var(--dark); position: relative; order: 3; }
.section-head::before { content: attr(data-sub); order: 1; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-2); font-family: 'Jost', sans-serif; font-weight: 600; }
.section-head::after { content: ''; order: 4; display: block; width: 60px; height: 2px; background: var(--gold); margin-top: 6px; }
.section-line { display: none; }

/* ---------- Category grid ---------- */
.categories-section { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .35s; text-align: center; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-img { height: 260px; background-size: cover; background-position: center; background-color: var(--cream-2); transition: transform .6s; }
.category-card:hover .category-img { transform: scale(1.08); }
.category-card h3 { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 20px; font-size: 23px; color: #fff; background: linear-gradient(0deg, rgba(18,54,65,.85) 0%, transparent 100%); text-align: center; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: .35s; display: flex; flex-direction: column; box-shadow: var(--shadow-xs); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.product-img-wrap { position: relative; display: block; overflow: hidden; aspect-ratio: 1/1; background: var(--cream); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.badge { position: absolute; top: 12px; padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: .5px; border-radius: 4px; z-index: 2; font-family: 'Jost'; }
.badge.best-seller { left: 0; background: var(--red); color: #fff; border-radius: 0 4px 4px 0; }
.badge.discount { right: 12px; background: var(--dark); color: #fff; }
.product-info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 6px; }
.product-name { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
.product-name a { color: var(--dark); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; margin-top: auto; }
.price { font-size: 20px; font-weight: 600; color: var(--dark); font-family: 'Jost'; }
.compare-price { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.btn-add-cart { background: var(--dark); color: #fff; border: none; padding: 12px; border-radius: 30px; font-family: 'Jost'; font-size: 13px; letter-spacing: 1px; font-weight: 500; cursor: pointer; transition: .25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-add-cart:hover { background: var(--gold); }

/* ---------- Features strip ---------- */
.features-strip { background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%); color: #fff; padding: 48px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-item i { font-size: 30px; color: var(--gold-light); flex-shrink: 0; }
.feature-item strong { display: block; font-size: 16px; letter-spacing: .3px; }
.feature-item span { font-size: 13px; opacity: .8; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; background: linear-gradient(120deg, var(--dark), var(--dark-2)); color: #fff; padding: 84px 0; text-align: center; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(201,168,106,.22), transparent 45%), radial-gradient(circle at 80% 80%, rgba(201,168,106,.16), transparent 45%); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: 44px; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; opacity: .88; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- About page ---------- */
.about-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-content .eyebrow { font-size: 12px; letter-spacing: 3px; color: var(--gold-2); font-weight: 600; text-transform: uppercase; }
.about-content h2 { font-size: 40px; color: var(--dark); margin: 8px 0 18px; }
.about-content p { color: #555; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin: 26px 0 30px; flex-wrap: wrap; }
.about-stats .stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--gold-2); line-height: 1; }
.about-stats .stat span { font-size: 13px; color: var(--muted); letter-spacing: .5px; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 34px 26px; text-align: center; box-shadow: var(--shadow-xs); transition: .3s; border: 1px solid var(--border); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card i { font-size: 34px; color: var(--gold); margin-bottom: 16px; }
.value-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- FAQ page ---------- */
.faq-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; transition: .25s; }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--dark); text-align: left; }
.faq-q i { flex-shrink: 0; font-size: 14px; color: var(--gold-2); transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 22px; color: #555; line-height: 1.7; }
.faq-help { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: #fff; border-radius: var(--radius); padding: 40px 30px; text-align: center; position: sticky; top: 100px; }
.faq-help i { font-size: 44px; color: var(--gold-light); margin-bottom: 16px; }
.faq-help h3 { font-size: 26px; margin-bottom: 10px; }
.faq-help p { opacity: .85; font-size: 14px; margin-bottom: 24px; }

/* ---------- Page banner ---------- */
.page-banner { position: relative; background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%); padding: 56px 0; color: #fff; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(201,168,106,.22), transparent 50%); }
.page-banner .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 10px; letter-spacing: .5px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: #fff; }
.page-banner h1 { font-size: 48px; color: #fff; overflow-wrap: break-word; word-break: break-word; }
.banner-desc { color: rgba(255,255,255,.85); margin-top: 8px; max-width: 640px; }

/* ---------- Shop filters ---------- */
.shop-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.filter-chip { padding: 8px 20px; border: 1px solid var(--border); border-radius: 30px; font-size: 13px; letter-spacing: .5px; color: var(--dark); transition: .2s; }
.filter-chip:hover { border-color: var(--gold); }
.filter-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.shop-meta { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.shop-empty { text-align: center; padding: 50px 20px; border: 1px dashed var(--border); border-radius: var(--radius); background: var(--cream); }
.shop-empty i { font-size: 54px; color: var(--gold-light); margin-bottom: 16px; }
.shop-empty h3 { font-size: 26px; color: var(--dark); margin-bottom: 8px; }
.shop-empty p { color: var(--muted); max-width: 420px; margin: 0 auto; }
.other-cats-section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); border-top: 1px solid var(--border); }

/* ---------- Product detail ---------- */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 24px; }
.product-gallery { position: relative; border-radius: 16px; overflow: hidden; background: var(--cream); border: 1px solid var(--border); }
.product-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-detail-info h1 { font-size: 42px; color: var(--dark); margin: 6px 0 14px; }
.detail-price { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.detail-price .price { font-size: 30px; }
.save-tag { background: var(--cream-2); color: var(--dark); padding: 3px 10px; border-radius: 4px; font-size: 13px; font-family: 'Jost'; }
.stock-status { font-size: 14px; font-family: 'Jost'; margin-bottom: 16px; }
.stock-status.in-stock { color: #1a9c4b; }
.stock-status.out-stock { color: var(--red); }
.detail-desc { color: #555; margin-bottom: 24px; }
.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.qty-row label { font-weight: 500; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 30px; overflow: hidden; }
.qty-selector button { width: 42px; height: 44px; background: var(--cream); border: none; font-size: 18px; cursor: pointer; color: var(--dark); }
.qty-selector input { width: 56px; height: 44px; border: none; text-align: center; font-family: 'Jost'; font-size: 16px; outline: none; }
.detail-actions { display: flex; gap: 14px; margin-bottom: 16px; }
.btn-whatsapp-detail { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; border-radius: 40px; background: var(--wa); color: #fff; font-weight: 500; letter-spacing: 1px; margin-bottom: 24px; transition: .25s; }
.btn-whatsapp-detail:hover { background: #1eb855; }
.detail-perks { list-style: none; border-top: 1px solid var(--border); padding-top: 20px; }
.detail-perks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: #555; }
.detail-perks i { color: var(--gold); width: 20px; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-loading { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--muted); }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 16px; padding: 16px; border: 1px solid var(--border); border-radius: 12px; align-items: center; }
.cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 20px; color: var(--dark); }
.cart-item-info .ci-price { color: var(--gold); font-weight: 600; font-family: 'Jost'; }
.cart-item .qty-selector { transform: scale(.9); }
.cart-item-remove { background: none; border: none; color: var(--red); font-size: 18px; cursor: pointer; }
.cart-item-total { font-weight: 600; font-family: 'Jost'; min-width: 90px; text-align: right; color: var(--dark); }
.cart-summary { background: var(--cream); border-radius: 14px; padding: 28px; position: sticky; top: 100px; }
.cart-summary h2 { font-size: 26px; color: var(--dark); margin-bottom: 18px; }
.summary-line { display: flex; justify-content: space-between; padding: 10px 0; font-family: 'Jost'; border-bottom: 1px dashed var(--border); }
.summary-line.total { border-bottom: none; font-size: 20px; font-weight: 600; color: var(--dark); padding-top: 16px; }
.summary-note { font-size: 13px; color: var(--muted); margin: 14px 0; }
.empty-cart { grid-column: 1/-1; text-align: center; padding: 60px 20px; }
.empty-cart i { font-size: 64px; color: var(--gold-light); margin-bottom: 20px; }
.empty-cart h2 { font-size: 32px; color: var(--dark); margin-bottom: 10px; }
.empty-cart p { color: var(--muted); margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.form-heading { font-size: 26px; color: var(--dark); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold-light); }
.checkout-form .form-heading:not(:first-child) { margin-top: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: 'Jost'; font-size: 15px; outline: none; transition: .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.payment-method { display: flex; align-items: center; gap: 14px; border: 2px solid var(--gold); background: var(--cream); border-radius: 12px; padding: 16px; margin-bottom: 24px; }
.payment-method i:first-child { font-size: 24px; color: var(--dark); }
.payment-method strong { display: block; color: var(--dark); }
.payment-method span { font-size: 13px; color: var(--muted); }
.payment-method .check { margin-left: auto; color: #1a9c4b; font-size: 20px; }
.order-summary { background: var(--cream); border-radius: 14px; padding: 28px; position: sticky; top: 100px; }
.summary-items { margin-bottom: 16px; }
.summary-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-item img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; }
.summary-item .si-name { font-size: 14px; color: var(--dark); }
.summary-item .si-qty { font-size: 12px; color: var(--muted); }
.summary-item .si-price { margin-left: auto; font-family: 'Jost'; font-weight: 600; color: var(--dark); }

/* ---------- Order success ---------- */
.success-box { max-width: 620px; margin: 20px auto; text-align: center; background: var(--cream); border-radius: 18px; padding: 50px 40px; }
.success-icon { width: 84px; height: 84px; border-radius: 50%; background: #1a9c4b; color: #fff; font-size: 40px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-box h1 { font-size: 40px; color: var(--dark); margin-bottom: 8px; }
.success-sub { color: var(--muted); margin-bottom: 20px; }
.order-ref { background: #fff; padding: 14px; border-radius: 10px; margin-bottom: 20px; font-family: 'Jost'; }
.order-ref strong { color: var(--gold); }
.success-summary { text-align: left; background: #fff; border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.success-note { font-size: 14px; color: #555; margin-bottom: 24px; }
.success-actions { display: flex; gap: 14px; flex-direction: column; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: .3s; }
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold); }
.contact-card i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.contact-card h3 { font-size: 24px; color: var(--dark); }
.contact-card p { color: var(--muted); font-size: 14px; }
.contact-card span { color: var(--dark); font-weight: 500; font-family: 'Jost'; }
.contact-form { background: var(--cream); border-radius: 14px; padding: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #d9d2c7; margin-top: 40px; }

/* Trust Badges Bar */
.footer-badges { background: linear-gradient(135deg, var(--dark-2), var(--dark)); border-bottom: 1px solid rgba(255,255,255,.06); padding: 0; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.badge-item { display: flex; align-items: center; gap: 14px; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.06); transition: background .3s; }
.badge-item:last-child { border-right: none; }
.badge-item:hover { background: rgba(201,168,106,.08); }
.badge-icon { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; box-shadow: 0 4px 15px rgba(201,168,106,.3); }
.badge-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: .3px; }
.badge-text span { font-size: 12px; opacity: .7; }

/* Main Footer */
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { height: 70px; background: #fff; padding: 8px; border-radius: 12px; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.footer-tag { font-size: 14px; opacity: .75; max-width: 300px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s ease; font-size: 16px; border: 1px solid rgba(255,255,255,.06); }
.footer-socials a:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(201,168,106,.4); border-color: transparent; }

/* Newsletter */
.footer-newsletter { margin-top: 22px; }
.newsletter-label { font-size: 13px; font-weight: 600; color: var(--gold-light); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.newsletter-form { display: flex; border-radius: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.newsletter-input { flex: 1; padding: 12px 18px; background: transparent; border: none; color: #fff; font-family: 'Jost', sans-serif; font-size: 14px; outline: none; min-width: 0; }
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-btn { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; border: none; padding: 12px 18px; cursor: pointer; transition: .3s; font-size: 14px; }
.newsletter-btn:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold)); }

/* Footer Columns */
.footer-col h4 { font-size: 20px; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 7px 0; opacity: .75; transition: all .25s ease; }
.footer-col a i.fa-angle-right { font-size: 11px; color: var(--gold); transition: transform .25s; }
.footer-col a:hover { opacity: 1; color: var(--gold-light); transform: translateX(4px); }
.footer-col a:hover i.fa-angle-right { transform: translateX(3px); }

/* Footer Contact Items */
.footer-contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fci-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; border: 1px solid rgba(255,255,255,.06); transition: .3s; }
.fci-icon.whatsapp { color: #25d366; }
.footer-contact-item:hover .fci-icon { background: rgba(201,168,106,.15); border-color: rgba(201,168,106,.2); }
.footer-contact-item div span { display: block; font-size: 12px; opacity: .55; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.footer-contact-item div a { display: inline; padding: 0; font-size: 14px; opacity: .85; color: #d9d2c7; }
.footer-contact-item div a:hover { color: var(--gold-light); opacity: 1; transform: none; }

/* Payment & Trust Row */
.footer-trust { border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.trust-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.06); }
.trust-badge i { color: var(--gold); font-size: 13px; }
.payment-icons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.payment-label { font-size: 12px; opacity: .6; margin-right: 4px; }
.payment-icon { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); padding: 5px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,.06); }
.payment-icon i { color: var(--gold-light); }

/* Footer Bottom */
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; opacity: .55; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; opacity: .5; transition: .2s; }
.footer-bottom-links a:hover { opacity: .9; color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: var(--wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; z-index: 150; box-shadow: 0 6px 20px rgba(37,211,102,.5); animation: wa-pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--dark); color: #fff; padding: 14px 28px; border-radius: 40px; z-index: 300; opacity: 0; transition: .3s; font-size: 14px; box-shadow: var(--shadow-lg); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: #1a9c4b; }
.toast.error { background: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .category-grid, .product-grid, .features-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .slide-title { font-size: 52px; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-item { border-bottom: 1px solid rgba(255,255,255,.06); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-help { position: static; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .logo img { height: 48px; }
  .header-inner { padding: 10px 16px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .top-slider { height: 460px; }
  .slide-title { font-size: 38px; }
  .slide-sub { font-size: 16px; }
  .slide-eyebrow { font-size: 12px; letter-spacing: 3px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-info h1 { font-size: 32px; }
  .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1fr; }
  .cart-summary, .order-summary { position: static; }
  .page-banner { padding: 40px 0; }
  .page-banner h1 { font-size: 34px; }
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 32px; }
  .about-content h2 { font-size: 32px; }
  .product-name { font-size: 17px; }
  .price { font-size: 17px; }
  .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 18px; right: 18px; }
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .badge-item { padding: 20px 16px; }
  .badge-icon { width: 42px; height: 42px; font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .trust-row { justify-content: center; }
  .trust-badges, .payment-icons { justify-content: center; }
}
@media (max-width: 480px) {
  .product-grid { gap: 12px; }
  .btn-add-cart { font-size: 11px; padding: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .detail-actions { flex-direction: column; }
  .top-slider { height: 420px; }
  .slide { background-position: 70% center; }
  .slide-title { font-size: 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 22px; }
  .category-img { height: 190px; }
  .category-card h3 { font-size: 19px; }
  .badges-grid { grid-template-columns: 1fr; }
  .badge-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }
  .trust-badges { flex-direction: column; align-items: center; }
  .payment-icons { flex-direction: column; align-items: center; }
}
