@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Beckliano Teal Palette */
  --teal:       #008080;
  --teal-light: #0a9090;
  --teal-dim:   #006666;
  --teal-soft:  #a2d0d0;
  --teal-pale:  #ddfff7;
  --teal-mint:  #93e1d8;
  --teal-bg:    #f0fafa;
  --white:      #ffffff;
  --off-white:  #fafefe;
  --stone:      #f5fafa;
  --stone2:     #e8f5f5;
  --border:     rgba(0,128,128,0.12);
  --border2:    rgba(0,128,128,0.30);
  --text:       #0d1f1f;
  --text-muted: #3a5a5a;
  --text-dim:   #7aacac;
  --serif:      'Bodoni Moda', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --shadow:     0 2px 16px rgba(0,128,128,0.08);
  --shadow-lg:  0 8px 32px rgba(0,128,128,0.14);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); background: var(--white); color: var(--text); font-size: 15px; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }

/* ── TICKER ── */
.ticker { background: var(--teal); color: #fff; font-size: 12px; letter-spacing: .15em; padding: 9px 0; overflow: hidden; white-space: nowrap; font-weight: 600; }
.ticker-inner { display: inline-block; animation: ticker 35s linear infinite; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── TOP BAR ── */
.topbar { background: var(--stone); border-bottom: 1px solid var(--border); padding: 6px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); letter-spacing: .05em; }
.topbar a { color: var(--text-muted); transition: color .2s; }
.topbar a:hover { color: var(--teal); }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { display: flex; align-items: center; gap: 5px; }

/* ── HEADER ── */
header { background: var(--white); border-bottom: 1.5px solid var(--border2); position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; width: 36px; height: 36px; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; width: 22px; background: var(--text-muted); transition: all .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LOGO ── */
.logo { text-align: center; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--teal-dim); letter-spacing: .06em; }
.logo-sub { font-size: 9px; letter-spacing: .3em; color: var(--text-dim); text-transform: uppercase; margin-top: 2px; font-weight: 600; }
.logo-img { height: 48px; max-height: 48px; width: auto; max-width: 370px; display: block; object-fit: contain; }
.footer-brand .logo-img { height: 46px; max-height: 46px; max-width: 410px; }
.admin-logo .logo-img { height: 34px; max-height: 34px; max-width: 310px; }

/* ── SEARCH BAR ── */
.header-search { flex: 1; max-width: 500px; margin: 0 32px; }
.search-wrap { display: flex; border: 1.5px solid var(--border2); background: var(--stone); border-radius: 4px; overflow: hidden; transition: border-color .2s; }
.search-wrap:focus-within { border-color: var(--teal); }
.search-wrap input { flex: 1; padding: 10px 16px; background: none; border: none; outline: none; font-size: 14px; color: var(--text); }
.search-wrap button { background: var(--teal); border: none; color: #fff; padding: 0 18px; font-size: 17px; cursor: pointer; transition: background .2s; }
.search-wrap button:hover { background: var(--teal-dim); }

/* ── NAV ICONS ── */
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--text-muted); font-size: 21px; transition: color .2s; position: relative; }
.nav-icons a:hover { color: var(--teal); }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--teal); color: #fff; font-size: 9px; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.hide-xs { display: flex; }

/* ── DESKTOP NAV ── */
.desktop-nav { background: var(--teal); }
.main-nav { display: flex; justify-content: flex-start; gap: 0; list-style: none; padding: 0 16px; overflow-x: auto; overflow-y: hidden; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; }
.main-nav::-webkit-scrollbar { display: none; height: 0; }
.main-nav > li { position: relative; flex: 0 0 auto; }
.main-nav > li > a { display: flex; align-items: center; gap: 4px; font-size: 11.5px; letter-spacing: .05em; color: rgba(255,255,255,0.92); text-transform: uppercase; padding: 12px 13px; font-weight: 600; transition: background .2s, color .2s; white-space: nowrap; }
.main-nav > li > a:hover, .main-nav > li > a.active { background: rgba(255,255,255,0.15); color: #fff; }
.main-nav > li > a i { font-size: 13px; }

/* ── MEGA DROPDOWN ── */
.mega-drop { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border2); box-shadow: var(--shadow-lg); padding: 24px; min-width: 420px; max-width: 90vw; z-index: 300; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; transform: translateY(8px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.main-nav > li:hover .mega-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 4px; font-size: 13px; color: var(--text-muted); transition: background .2s, color .2s; }
.mega-link:hover { background: var(--teal-bg); color: var(--teal); }
.mega-link i { font-size: 18px; color: var(--teal); width: 20px; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mobile-nav.open { max-height: 700px; overflow-y: auto; }
.mobile-nav ul { list-style: none; padding: 8px 0; }
.mobile-nav ul li a { display: flex; align-items: center; gap: 12px; padding: 13px 24px; font-size: 14px; color: var(--text-muted); font-weight: 500; border-bottom: 1px solid var(--border); transition: color .2s, background .2s; }
.mobile-nav ul li a:hover { color: var(--teal); background: var(--teal-bg); }
.mobile-nav ul li a i { font-size: 18px; color: var(--teal); width: 20px; }
.mob-divider { height: 4px; background: var(--stone); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 14px 32px; font-weight: 700; transition: all .25s; border: none; cursor: pointer; border-radius: 3px; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dim); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--teal-pale); }
.btn-sm { padding: 9px 20px; font-size: 11px; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a93226; }

/* ── HERO BANNER SLIDER ── */
.hero { position: relative; background: var(--teal-dim); min-height: 480px; overflow: hidden; }
.hero-slide { display: none; position: relative; min-height: 480px; align-items: center; }
.hero-slide.active { display: grid; grid-template-columns: 1fr 1fr; }
.hero-text { padding: 60px 60px 60px 60px; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 11px; letter-spacing: .3em; color: var(--teal-mint); text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.hero-title { font-family: var(--serif); font-size: 52px; font-weight: 400; line-height: 1.1; color: #fff; margin-bottom: 18px; }
.hero-title em { color: var(--teal-mint); font-style: italic; }
.hero-subtitle { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 380px; margin-bottom: 30px; }
.hero-price { font-family: var(--serif); font-size: 28px; color: var(--teal-mint); margin-bottom: 24px; }
.hero-price span { font-size: 16px; color: rgba(255,255,255,.5); text-decoration: line-through; margin-left: 10px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { height: 480px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s; padding: 0; }
.hero-dot.active { background: #fff; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 40px; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 16px; }
.trust-item i { font-size: 22px; color: var(--teal); display: block; margin-bottom: 6px; }
.trust-label { font-size: 12px; letter-spacing: .08em; color: var(--text); text-transform: uppercase; font-weight: 700; }
.trust-val { font-size: 12px; color: var(--text-dim); margin-top: 3px; }

/* ── SECTIONS ── */
section { padding: 60px 40px; }
.section-alt { background: var(--stone); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.section-title { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--text); }
.section-sub { font-size: 11px; letter-spacing: .15em; color: var(--text-dim); text-transform: uppercase; margin-top: 6px; font-weight: 600; }
.teal-divider { width: 40px; height: 2.5px; background: var(--teal); margin: 10px 0; }
.view-all { font-size: 11px; letter-spacing: .15em; color: var(--teal); text-transform: uppercase; border-bottom: 1.5px solid var(--teal); padding-bottom: 2px; transition: opacity .2s; font-weight: 700; }
.view-all:hover { opacity: .65; }

/* ── CATEGORY TILES ── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-tile { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: all .25s; cursor: pointer; }
.cat-tile:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cat-img { height: 160px; overflow: hidden; background: var(--stone); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-tile:hover .cat-img img { transform: scale(1.06); }
.cat-info { padding: 14px 12px; text-align: center; }
.cat-name { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; transition: color .2s; }
.cat-tile:hover .cat-name { color: var(--teal); }
.cat-count { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.products-grid-5 { grid-template-columns: repeat(5, 1fr); }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: all .25s; }
.product-card:hover { border-color: var(--teal-soft); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; font-weight: 700; border-radius: 2px; }
.badge-sale { background: #e74c3c; color: #fff; }
.badge-new { background: var(--teal); color: #fff; }
.badge-hot { background: #e67e22; color: #fff; }
.badge-best { background: var(--teal-dim); color: #fff; }
.product-wishlist { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.9); border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-muted); transition: all .2s; }
.product-wishlist:hover, .product-wishlist.active { color: #e74c3c; background: #fff; }
.product-info { padding: 14px 16px 16px; }
.product-brand { font-size: 10px; letter-spacing: .15em; color: var(--teal); text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.product-name a { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; display: block; margin-bottom: 8px; transition: color .2s; }
.product-name a:hover { color: var(--teal); }
.product-price { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--teal-dim); }
.product-old-price { font-size: 13px; color: var(--text-dim); text-decoration: line-through; margin-left: 8px; }
.product-add { width: 100%; margin-top: 12px; background: var(--teal); color: #fff; border: none; padding: 11px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; border-radius: 3px; transition: background .2s; }
.product-add:hover { background: var(--teal-dim); }

/* ── PROMO BANNERS ── */
.promo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 0 40px 60px; }
.promo-card { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.promo-card:hover img { transform: scale(1.04); }
.promo-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,64,64,.75) 0%, transparent 55%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.promo-card-label { font-size: 10px; letter-spacing: .2em; color: var(--teal-mint); text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.promo-card-title { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.promo-card-link { font-size: 11px; letter-spacing: .15em; color: #fff; text-transform: uppercase; font-weight: 700; border-bottom: 1.5px solid rgba(255,255,255,.5); padding-bottom: 2px; width: fit-content; transition: border-color .2s; }
.promo-card:hover .promo-card-link { border-color: #fff; }

/* ── DEAL TICKER BAND ── */
.deal-band { background: var(--teal-dim); color: #fff; padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.deal-band-text h2 { font-family: var(--serif); font-size: 32px; font-weight: 400; }
.deal-band-text p { font-size: 14px; color: var(--teal-mint); margin-top: 6px; }
.deal-countdown { display: flex; gap: 12px; }
.cd-block { background: rgba(255,255,255,.15); border-radius: 6px; padding: 12px 18px; text-align: center; min-width: 64px; }
.cd-num { font-family: var(--serif); font-size: 28px; color: #fff; line-height: 1; }
.cd-label { font-size: 10px; letter-spacing: .15em; color: var(--teal-mint); text-transform: uppercase; margin-top: 4px; font-weight: 600; }

/* ── BRANDS STRIP ── */
.brands-strip { padding: 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-strip-title { text-align: center; font-size: 11px; letter-spacing: .2em; color: var(--text-dim); text-transform: uppercase; font-weight: 700; margin-bottom: 24px; }
.brands-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.brand-logo { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-dim); letter-spacing: .05em; transition: color .2s; cursor: default; }
.brand-logo:hover { color: var(--teal); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--teal); padding: 56px 40px; text-align: center; }
.nl-title { font-family: var(--serif); font-size: 34px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.nl-sub { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.nl-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 14px 20px; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 14px; outline: none; border-radius: 3px 0 0 3px; }
.nl-form input::placeholder { color: rgba(255,255,255,.6); }
.nl-form button { background: var(--teal-dim); color: #fff; border: none; padding: 0 28px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 0 3px 3px 0; transition: background .2s; }
.nl-form button:hover { background: #004c4c; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 399; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 420px; height: 100vh; background: #fff; z-index: 400; display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,.15); transition: right .35s cubic-bezier(.4,0,.2,1); }
.cart-drawer.open { right: 0; }
.cart-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); }
.cart-close { background: none; border: none; font-size: 22px; color: var(--text-muted); transition: color .2s; }
.cart-close:hover { color: var(--teal); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.empty-cart { text-align: center; padding: 60px 0; color: var(--text-dim); }
.empty-cart i { font-size: 48px; display: block; margin-bottom: 12px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.cart-item-price { font-family: var(--serif); font-size: 16px; color: var(--teal-dim); margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border2); background: none; border-radius: 3px; font-size: 16px; color: var(--text-muted); transition: all .2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.qty-val { font-size: 14px; font-weight: 600; color: var(--text); min-width: 20px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--text-dim); font-size: 16px; margin-left: auto; transition: color .2s; }
.cart-remove:hover { color: #e74c3c; }
.cart-footer { padding: 16px 24px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.cart-total-row.grand { font-family: var(--serif); font-size: 19px; color: var(--text); font-weight: 500; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); margin-bottom: 16px; }
.free-delivery-bar { background: var(--teal-bg); border: 1px solid var(--border2); border-radius: 4px; padding: 10px 14px; font-size: 12px; color: var(--teal-dim); margin-bottom: 14px; }
.free-delivery-bar .fdbar { height: 4px; background: var(--stone2); border-radius: 2px; margin-top: 6px; }
.free-delivery-bar .fdbar-fill { height: 100%; background: var(--teal); border-radius: 2px; transition: width .3s; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,.7); padding: 64px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-name { color: var(--teal-soft); }
.footer-brand .logo-sub { color: rgba(255,255,255,.35); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: 14px; max-width: 220px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 17px; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-social a:hover { border-color: var(--teal-soft); color: var(--teal-soft); }
.footer-col h4 { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.9); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.payment-badges { display: flex; gap: 8px; align-items: center; }
.pay-badge { background: rgba(255,255,255,.08); border-radius: 3px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .05em; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 40px; background: var(--stone); border-bottom: 1px solid var(--border); font-size: 12px; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--text-dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--border2); }

/* ── SHOP PAGE ── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px; }
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 20px; margin-bottom: 16px; }
.filter-title { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text); font-weight: 700; margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; cursor: pointer; transition: color .2s; }
.filter-option:hover { color: var(--teal); }
.filter-option input[type="checkbox"] { accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; }
.price-range { display: flex; gap: 10px; margin-top: 10px; width: 100%; }
.price-range input { flex: 1 1 0; min-width: 0; width: 100%; padding: 8px 10px; border: 1px solid var(--border2); border-radius: 3px; font-size: 13px; color: var(--text); background: var(--stone); box-sizing: border-box; }
.shop-main {}
.shop-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.shop-count { font-size: 13px; color: var(--text-dim); }
.shop-sort select { padding: 8px 14px; border: 1px solid var(--border2); border-radius: 3px; font-size: 13px; color: var(--text-muted); background: var(--white); cursor: pointer; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; border: 1px solid var(--border2); background: var(--white); border-radius: 3px; font-size: 13px; color: var(--text-muted); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.page-btn:hover, .page-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 40px; max-width: 1200px; margin: 0 auto; }
.product-gallery {}
.gallery-main { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); background: var(--stone); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: 4px; border: 1.5px solid var(--border); overflow: hidden; cursor: pointer; transition: border-color .2s; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info {}
.pd-brand { font-size: 11px; letter-spacing: .2em; color: var(--teal); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.pd-name { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.pd-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pd-price { font-family: var(--serif); font-size: 36px; color: var(--teal-dim); font-weight: 500; }
.pd-old-price { font-size: 20px; color: var(--text-dim); text-decoration: line-through; }
.pd-saving { background: #e74c3c; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 3px; letter-spacing: .08em; }
.pd-desc { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; }
.pd-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pd-qty-label { font-size: 12px; letter-spacing: .1em; color: var(--text-dim); text-transform: uppercase; font-weight: 700; }
.pd-qty-ctrl { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border2); border-radius: 3px; overflow: hidden; }
.pd-qty-ctrl button { width: 38px; height: 42px; background: var(--stone); border: none; font-size: 20px; color: var(--text-muted); cursor: pointer; transition: background .2s; }
.pd-qty-ctrl button:hover { background: var(--teal-pale); color: var(--teal); }
.pd-qty-ctrl input { width: 52px; height: 42px; border: none; text-align: center; font-size: 15px; font-weight: 600; color: var(--text); background: var(--white); }
.pd-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.pd-actions .btn { flex: 1; text-align: center; }
.pd-meta { border-top: 1px solid var(--border); padding-top: 20px; }
.pd-meta-row { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.pd-meta-row i { color: var(--teal); font-size: 18px; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.in-stock { background: #e8f8f0; color: #1a7a4a; }
.low-stock { background: #fff5e8; color: #e67e22; }
.out-stock { background: #fde8e8; color: #c0392b; }

/* ── CHECKOUT ── */
.checkout-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; padding: 32px 40px 60px; }
.checkout-heading { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; letter-spacing: .08em; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border2); border-radius: 3px; font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--stone); border: 1px solid var(--border); border-radius: 6px; padding: 24px; position: sticky; top: 90px; }
.order-summary-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 20px; }
.summary-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.summary-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); flex-shrink: 0; }
.summary-item-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.summary-item-qty { font-size: 12px; color: var(--text-dim); margin-top: 3px; }
.summary-item-price { font-family: var(--serif); font-size: 15px; color: var(--teal-dim); margin-left: auto; flex-shrink: 0; }
.summary-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.summary-total-row.grand { font-family: var(--serif); font-size: 20px; color: var(--text); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.paypal-btn-wrap { margin-top: 20px; }
.flash { padding: 12px 18px; border-radius: 4px; font-size: 13px; margin-bottom: 18px; }
.flash-success { background: #e8f8f0; color: #1a7a4a; border: 1px solid #a8dfc0; }
.flash-error { background: #fde8e8; color: #c0392b; border: 1px solid #f0b0b0; }

/* ── ACCOUNT / TRACK / MISC ── */
.page-wrap { max-width: 760px; margin: 0 auto; padding: 48px 40px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.page-title { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.page-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 36px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 28px; margin-bottom: 20px; }
.info-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 14px; color: var(--text); }
.order-status-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-processing { background: #fff5e8; color: #e67e22; }
.status-dispatched { background: #e8f0ff; color: #2563eb; }
.status-delivered { background: #e8f8f0; color: #1a7a4a; }
.status-cancelled { background: #fde8e8; color: #c0392b; }

/* ── ADMIN ── */
.admin-body { display: flex; min-height: 100vh; background: #f0f4f4; font-family: var(--sans); }
.admin-sidebar { width: 240px; background: var(--text); display: flex; flex-direction: column; flex-shrink: 0; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; }
.admin-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-logo .logo-name { color: var(--teal-soft); font-size: 22px; }
.admin-logo .logo-sub { color: rgba(255,255,255,.3); }
.admin-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 22px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; transition: all .2s; border-left: 3px solid transparent; }
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.05); border-left-color: var(--teal-soft); }
.admin-nav a.active { color: #fff; background: rgba(0,128,128,.25); border-left-color: var(--teal-soft); }
.admin-nav a i { font-size: 18px; color: var(--teal-soft); width: 20px; }
.admin-nav .nav-section { font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.25); text-transform: uppercase; padding: 18px 22px 6px; font-weight: 700; }
.admin-main { flex: 1; margin-left: 240px; display: flex; flex-direction: column; }
.admin-topbar { background: #fff; border-bottom: 1px solid #e0eaea; padding: 16px 32px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 50; }
.admin-topbar h1 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); }
.topbar-actions { display: flex; gap: 12px; align-items: center; }
.admin-content { padding: 28px 32px; flex: 1; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: 8px; padding: 22px; border: 1px solid #e0eaea; position: relative; overflow: hidden; }
.stat-card-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #8aacac; font-weight: 700; margin-bottom: 8px; }
.stat-card-value { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--text); line-height: 1; }
.stat-card-sub { font-size: 12px; color: #aac; margin-top: 6px; }
.stat-card-icon { position: absolute; right: 16px; top: 16px; font-size: 28px; color: var(--teal); opacity: .15; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0eaea; }
.admin-table th { background: var(--teal); color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 13px 16px; text-align: left; font-weight: 700; }
.admin-table td { padding: 13px 16px; font-size: 13px; color: var(--text-muted); border-bottom: 1px solid #f0f4f4; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafa; }
.admin-card { background: #fff; border: 1px solid #e0eaea; border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.admin-card h2 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 18px; }
.admin-form-group { margin-bottom: 18px; }
.admin-form-group label { display: block; font-size: 11px; letter-spacing: .1em; color: #7aacac; text-transform: uppercase; font-weight: 700; margin-bottom: 7px; }
.admin-form-group input, .admin-form-group select, .admin-form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #d0e4e4; border-radius: 4px; font-size: 14px; color: var(--text); background: #fff; outline: none; transition: border-color .2s; }
.admin-form-group input:focus, .admin-form-group select:focus, .admin-form-group textarea:focus { border-color: var(--teal); }
.admin-flash { padding: 11px 18px; border-radius: 4px; font-size: 13px; margin-bottom: 18px; }
.admin-flash.success { background: #e8f8f0; color: #1a7a4a; border: 1px solid #a8dfc0; }
.admin-flash.error { background: #fde8e8; color: #c0392b; border: 1px solid #f0b0b0; }
.badge-pill { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.pill-paid { background: #e8f8f0; color: #1a7a4a; }
.pill-pending { background: #fff5e8; color: #e67e22; }
.pill-failed { background: #fde8e8; color: #c0392b; }
.pill-processing { background: #e8f0ff; color: #2563eb; }
.pill-dispatched { background: #e8eeff; color: #4c6ef5; }
.pill-delivered { background: #e8f8f0; color: #1a7a4a; }
.pill-cancelled { background: #fde8e8; color: #c0392b; }

/* ── TABS ── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border2); margin-bottom: 28px; }
.tab { padding: 11px 22px; font-size: 13px; font-weight: 600; color: var(--text-dim); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; }
.tab.active, .tab:hover { color: var(--teal); border-bottom-color: var(--teal); }

/* ── RELATED PRODUCTS ── */
.related-section { padding: 48px 40px; }

/* ── SUCCESS PAGE ── */
.success-wrap { max-width: 600px; margin: 60px auto; padding: 0 40px; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--teal-bg); border: 2px solid var(--teal-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 36px; color: var(--teal); }
.success-title { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.success-sub { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.success-order-num { font-family: var(--serif); font-size: 22px; color: var(--teal-dim); background: var(--teal-bg); border: 1px solid var(--border2); padding: 16px 32px; border-radius: 4px; display: inline-block; margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}
@media(max-width: 900px) {
  .hero-slide.active { grid-template-columns: 1fr; }
  .hero-text { padding: 40px; }
  .hero-image { display: none; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .main-nav > li > a { padding: 12px 12px; }
  .mega-drop { min-width: 320px; grid-template-columns: repeat(2,1fr); }
  .deal-band { flex-direction: column; text-align: center; }
  .deal-countdown { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 640px) {
  .split-grid { grid-template-columns: 1fr; gap: 28px; }
  .split-grid-img { height: 240px; }
  .trio-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar { padding: 6px 16px; justify-content: flex-end; }
  .topbar-left { display: none; }
  .topbar-right { gap: 18px; }
  .topbar-right a i { font-size: 16px; }
  .tb-label { display: none; }
  .nav-inner { padding: 12px 16px; }
  .logo-img { height: 40px; max-height: 40px; max-width: 310px; }
  .cart-drawer { width: 100%; right: -100%; }
  section { padding: 48px 16px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .trust-bar { padding: 16px; gap: 10px; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hide-xs { display: none !important; }
  .hero-title { font-size: 36px; }
  .hero-text { padding: 32px 16px; }
  .nl-form { flex-direction: column; border-radius: 3px; }
  .nl-form input, .nl-form button { border-radius: 3px; }
  .nl-form button { padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 60px; }
  .admin-main { margin-left: 60px; }
  .admin-nav a span { display: none; }
  .admin-nav .nav-section { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid, .shop-layout { padding: 16px; }
  .promo-grid { padding: 0 16px 40px; }
  .brands-logos { gap: 24px; }
  .deal-countdown { gap: 8px; }
  .cd-block { padding: 8px 12px; min-width: 52px; }
  .cd-num { font-size: 22px; }
  .breadcrumb { padding: 10px 16px; }
}
