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

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

:root {
  --wine:       #8B1A4A;        /* primary wine/burgundy — matches stylishbabes */
  --wine-light: #A0205A;        /* hover / lighter wine */
  --wine-dim:   #6B1238;        /* deep wine for pressed states */
  --wine-bg:    #fdf5f8;        /* very soft blush tint for section backgrounds */
  --white:      #ffffff;
  --off-white:  #fafafa;
  --stone:      #f7f0f3;        /* warm blush-grey section alternate */
  --stone2:     #ede0e6;        /* slightly deeper blush-grey */
  --border:     rgba(139,26,74,0.14);
  --border2:    rgba(139,26,74,0.35);
  --text:       #1a1214;        /* near-black with warm tint */
  --text-muted: #5a4a50;        /* mid grey-plum */
  --text-dim:   #9a8590;        /* light grey-plum */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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; font-weight: 500; }
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(--wine); 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 28s 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: .06em; font-weight: 500; }
.topbar a { color: var(--text-muted); transition: color .2s; }
.topbar a:hover { color: var(--wine); }
.topbar-right { display: flex; gap: 20px; }

/* ── HEADER ── */
header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 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); }

/* ── DESKTOP NAV ── */
.desktop-nav { border-top: 1px solid var(--border); }
.main-nav { display: flex; justify-content: center; gap: 36px; list-style: none; padding: 11px 40px; }
.main-nav a { font-size: 12px; letter-spacing: .12em; color: var(--text-muted); text-transform: uppercase; transition: color .2s; position: relative; padding-bottom: 4px; font-weight: 600; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--wine); transition: width .3s; }
.main-nav a:hover { color: var(--wine); }
.main-nav a:hover::after { width: 100%; }

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

/* ── LOGO ── */
.logo { text-align: center; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--wine-dim); letter-spacing: .1em; }
.logo-sub { font-size: 10px; letter-spacing: .3em; color: var(--text-dim); text-transform: uppercase; margin-top: 2px; }

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

/* ── HERO ── */
.hero { background: var(--stone); min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0 40px; border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-text { padding: 60px 40px 60px 0; }
.hero-eyebrow { font-size: 11px; letter-spacing: .25em; color: var(--wine); text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; font-weight: 700; }
.hero-title { font-family: var(--serif); font-size: 64px; font-weight: 400; line-height: 1.05; color: var(--text); margin-bottom: 20px; }
.hero-title em { color: var(--wine); font-style: italic; }
.hero-subtitle { font-size: 15px; color: var(--text-muted); line-height: 1.9; max-width: 380px; margin-bottom: 32px; font-weight: 500; }
.hero-image { height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-image img { height: 500px; width: 100%; object-fit: cover; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: var(--serif); font-size: 30px; color: var(--wine); }
.hero-stat-label { font-size: 11px; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

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

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

/* ── SECTIONS ── */
section { padding: 64px 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: 36px; }
.section-title { font-family: var(--serif); font-size: 34px; 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; }
.gold-divider { width: 40px; height: 2px; background: var(--wine); margin: 10px 0; }
.view-all { font-size: 11px; letter-spacing: .15em; color: var(--wine); text-transform: uppercase; border-bottom: 1.5px solid var(--wine); padding-bottom: 2px; transition: opacity .2s; font-weight: 700; }
.view-all:hover { opacity: .7; }

/* ── CATEGORY TILES ── */
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.cat-tile { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: border-color .25s, box-shadow .25s; cursor: pointer; }
.cat-tile:hover { border-color: var(--wine); box-shadow: 0 4px 20px rgba(139,26,74,.1); }
.cat-tile:hover .cat-name { color: var(--wine); }
.cat-img { height: 180px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-tile:hover .cat-img img { transform: scale(1.05); }
.cat-info { padding: 14px; text-align: center; background: var(--white); }
.cat-name { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); transition: color .25s; font-weight: 700; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.products-grid-3 { grid-template-columns: repeat(3,1fr); }
.product-card { background: var(--white); border: 1px solid var(--border); transition: border-color .25s, box-shadow .25s; min-width: 0; }
.product-card:hover { border-color: var(--wine); box-shadow: 0 4px 24px rgba(139,26,74,.1); }
.product-img { position: relative; height: 240px; 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: 12px; left: 12px; font-size: 10px; letter-spacing: .1em; padding: 4px 10px; text-transform: uppercase; font-weight: 700; }
.badge-gold { background: var(--wine); color: var(--white); }
.badge-new { background: var(--white); color: var(--wine); border: 1px solid var(--wine); }
.badge-sale { background: #8b0000; color: #ffcdd2; }
.badge-trend { background: var(--stone2); color: var(--wine-dim); border: 1px solid var(--border); }
.product-wishlist { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.9); border: 1px solid var(--border); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 15px; transition: all .2s; cursor: pointer; opacity: 0; }
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--wine); color: var(--white); border-color: var(--wine); }
.product-info { padding: 16px; background: var(--white); }
.product-name { font-size: 14px; color: var(--text); line-height: 1.5; margin-bottom: 6px; overflow: hidden; word-break: break-word; font-weight: 600; }
.product-price { font-size: 16px; color: var(--wine-dim); font-weight: 700; }
.product-old-price { font-size: 12px; color: var(--text-dim); text-decoration: line-through; margin-left: 6px; }
.product-add { width: 100%; background: transparent; border: 1px solid var(--border); color: var(--text-muted); font-size: 11px; letter-spacing: .12em; padding: 10px; text-transform: uppercase; margin-top: 12px; transition: all .25s; font-weight: 700; }
.product-add:hover { background: var(--wine); color: var(--white); border-color: var(--wine); }

/* ── BANNER ── */
.banner { background: var(--stone2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; overflow: hidden; }
.banner-text { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
.banner-eyebrow { font-size: 11px; letter-spacing: .2em; color: var(--wine); text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.banner-title { font-family: var(--serif); font-size: 40px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.banner-title em { color: var(--wine); font-style: italic; }
.banner-desc { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 28px; max-width: 380px; font-weight: 500; }
.banner-image { overflow: hidden; }
.banner-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card { background: var(--white); border: 1px solid var(--border); padding: 26px; }
.testi-stars { color: var(--wine); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.9; font-style: italic; margin-bottom: 16px; font-weight: 500; }
.testi-name { font-size: 12px; color: var(--wine); letter-spacing: .08em; font-weight: 700; }

/* ── INSTAGRAM GRID ── */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.insta-tile { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insta-tile:hover img { transform: scale(1.06); }
.insta-overlay { position: absolute; inset: 0; background: rgba(139,26,74,.28); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.insta-tile:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 28px; color: var(--white); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--stone); border-top: 1px solid var(--border); padding: 60px 40px; text-align: center; }
.nl-title { font-family: var(--serif); font-size: 32px; color: var(--text); margin-bottom: 8px; }
.nl-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; letter-spacing: .05em; font-weight: 500; }
.nl-form { display: flex; max-width: 440px; margin: 0 auto; }
.nl-form input { flex: 1; background: var(--white); border: 1px solid var(--border); border-right: none; color: var(--text); font-size: 13px; padding: 14px 18px; outline: none; transition: border-color .2s; font-weight: 500; }
.nl-form input:focus { border-color: var(--border2); }
.nl-form button { background: var(--wine); color: var(--white); border: none; font-size: 11px; letter-spacing: .15em; padding: 14px 22px; text-transform: uppercase; font-weight: 700; transition: background .2s; white-space: nowrap; }
.nl-form button:hover { background: var(--wine-dim); }

/* ── FOOTER ── */
footer { background: #1a0a10; border-top: 1px solid rgba(255,255,255,.06); padding: 60px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.9; margin-top: 14px; max-width: 240px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,.4); font-size: 20px; transition: color .2s; }
.footer-social a:hover { color: #e89ab8; }
.footer-heading { font-size: 11px; letter-spacing: .2em; color: #e89ab8; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; font-weight: 500; }
.footer-links a:hover { color: #e89ab8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.3); }
footer .logo-name { color: #e89ab8; }
footer .logo-sub { color: rgba(255,255,255,.35); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.3); transition: transform .25s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float i { font-size: 28px; color: #fff; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,10,16,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 400px; background: var(--white); border-left: 1px solid var(--border); z-index: 201; transform: translateX(100%); transition: transform .35s; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 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; color: var(--text-muted); font-size: 22px; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.cart-item img { width: 68px; height: 68px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 4px; font-weight: 600; }
.cart-item-price { font-size: 14px; color: var(--wine); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { background: var(--stone); border: 1px solid var(--border); color: var(--text); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; }
.qty-num { font-size: 13px; color: var(--text); min-width: 20px; text-align: center; font-weight: 600; }
.cart-remove { background: none; border: none; color: var(--text-dim); font-size: 13px; cursor: pointer; margin-left: auto; align-self: flex-start; }
.cart-footer { padding: 20px; border-top: 1px solid var(--border); background: var(--white); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
.cart-total-row.grand { color: var(--text); font-size: 16px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.cart-total-row span:last-child { color: var(--wine); }
.empty-cart { text-align: center; padding: 60px 20px; color: var(--text-dim); font-size: 14px; font-weight: 500; }
.empty-cart i { font-size: 42px; display: block; margin-bottom: 16px; color: var(--border); }

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 40px; max-width: 1200px; margin: 0 auto; }
.pd-thumbnails { display: flex; gap: 8px; margin-top: 10px; }
.pd-thumb { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--border); cursor: pointer; transition: border-color .2s; }
.pd-thumb.active { border-color: var(--wine); }
.pd-category { font-size: 11px; letter-spacing: .15em; color: var(--wine); text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.pd-name { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.pd-price { font-size: 30px; color: var(--wine-dim); font-weight: 700; margin-bottom: 6px; }
.pd-old-price { font-size: 15px; color: var(--text-dim); text-decoration: line-through; }
.pd-desc { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin: 20px 0; font-weight: 500; }
.pd-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pd-qty-row { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.pd-qty-control { display: flex; align-items: center; border: 1px solid var(--border); }
.pd-qty-control button { background: var(--stone); border: none; color: var(--text); width: 38px; height: 46px; font-size: 18px; font-weight: 700; }
.pd-qty-control input { background: none; border: none; color: var(--text); text-align: center; width: 46px; font-size: 15px; font-weight: 600; }
.pd-stock { font-size: 12px; color: var(--text-dim); margin-top: 10px; font-weight: 500; }
.pd-meta { font-size: 12px; color: var(--text-dim); line-height: 2.2; font-weight: 500; }

/* ── SHOP PAGE ── */
.shop-layout { display: grid; grid-template-columns: 190px 1fr; gap: 28px; padding: 32px 24px; }
.shop-sidebar h4 { font-size: 11px; letter-spacing: .15em; color: var(--wine); text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.filter-list { list-style: none; margin-bottom: 28px; }
.filter-list li { font-size: 13px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: color .2s; display: flex; justify-content: space-between; font-weight: 500; }
.filter-list li:hover, .filter-list li.active { color: var(--wine); }
.filter-list li span { color: var(--text-dim); font-size: 12px; }
.sort-bar { display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 13px; color: var(--text-dim); font-weight: 500; }
.sort-bar select { background: var(--white); border: 1px solid var(--border); color: var(--text); font-size: 13px; padding: 7px 12px; outline: none; font-weight: 500; }
.shop-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

/* ── CHECKOUT ── */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding: 48px 40px; }
.checkout-heading { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; letter-spacing: .1em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--white); border: 1px solid var(--border); color: var(--text); font-size: 14px; padding: 13px 16px; outline: none; transition: border-color .2s; font-weight: 500; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--border2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-summary-card { background: var(--stone); border: 1px solid var(--border); padding: 24px; }
.order-item-row { display: flex; gap: 14px; margin-bottom: 16px; font-size: 14px; }
.order-item-row img { width: 50px; height: 50px; object-fit: cover; border: 1px solid var(--border); }
.order-item-name { flex: 1; color: var(--text-muted); font-weight: 500; }
.order-item-price { color: var(--wine); white-space: nowrap; font-weight: 700; }
.order-totals { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; }
.order-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
.order-total-row.grand { font-size: 17px; color: var(--text); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; font-weight: 700; }
.order-total-row.grand span:last-child { color: var(--wine); }
#paypal-button-container { margin-top: 20px; }

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

/* ── FLASH ── */
.flash { padding: 13px 20px; font-size: 13px; letter-spacing: .04em; margin-bottom: 20px; font-weight: 600; }
.flash-success { background: rgba(0,100,40,.06); border: 1px solid #0a5; color: #1a6633; }
.flash-error { background: rgba(140,0,0,.06); border: 1px solid #a00; color: #8b0000; }

/* ── PAGE BANNER ── */
.page-banner { background: var(--stone); border-bottom: 1px solid var(--border); padding: 52px 40px; text-align: center; }
.page-banner h1 { font-family: var(--serif); font-size: 44px; font-weight: 400; color: var(--text); }
.page-banner p { font-size: 13px; color: var(--text-dim); margin-top: 8px; letter-spacing: .08em; font-weight: 500; }

/* ── IMAGE UPLOAD (admin) ── */
.upload-zone { border: 1.5px dashed var(--border); background: var(--stone); padding: 20px; text-align: center; cursor: pointer; transition: border-color .2s; margin-top: 8px; }
.upload-zone:hover { border-color: var(--wine); }
.upload-zone input[type=file] { display: none; }
.upload-zone-label { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.upload-zone-label i { display: block; font-size: 30px; color: var(--text-dim); margin-bottom: 8px; }
.upload-preview { width: 100%; max-height: 160px; object-fit: cover; margin-top: 10px; display: none; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .shop-products-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:900px){
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .nav-inner { padding: 14px 20px; }
  .topbar { padding: 5px 16px; font-size: 11px; }
  .topbar-right { gap: 12px; }
  .hide-xs { display: none; }
  .hero { grid-template-columns: 1fr; padding: 36px 20px 40px; min-height: auto; }
  .hero-text { padding: 0; }
  .hero-image { display: none; }
  .hero-title { font-size: 44px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; width: 100%; }
  .hero-stats { gap: 20px; }
  .trust-bar { grid-template-columns: repeat(2,1fr); padding: 20px; }
  section { padding: 44px 16px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); width: 100%; }
  .testi-grid { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; }
  .banner-image { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .shop-layout { grid-template-columns: 1fr; padding: 20px 16px; }
  .shop-sidebar { display: none; }
  .shop-products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .checkout-grid { grid-template-columns: 1fr; padding: 24px 20px; }
  .product-detail { grid-template-columns: 1fr; padding: 24px 20px; }
  .breadcrumb { padding: 12px 20px; }
  .page-banner { padding: 36px 20px; }
  .page-banner h1 { font-size: 34px; }
}

@media(max-width:480px){
  .logo-name { font-size: 22px; }
  .hero-title { font-size: 34px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 8px; width: 100%; }
  .shop-products-grid { grid-template-columns: repeat(2,1fr); gap: 8px; width: 100%; }
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .insta-grid { grid-template-columns: repeat(3,1fr); gap: 2px; }
  .cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: nowrap; gap: 0; justify-content: space-between; }
  section { padding: 32px 12px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 14px; }
  .product-old-price { font-size: 11px; }
  .product-add { font-size: 10px; padding: 8px 4px; }
  .product-img { height: 160px; }
  .cat-img { height: 120px; }
  .cat-name { font-size: 11px; }
}

@media(max-width:360px){
  .products-grid,
  .shop-products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
}
