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

:root{
  --blush:#f6d8dd;
  --blush-light:#fbeaed;
  --maroon:#7a2438;
  --maroon-deep:#4d1220;
  --rose:#c9536b;
  --cream:#fdf7f5;
  --ink:#2c1418;
  --gold:#caa15a;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:'Poppins', Arial, sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{font-family:var(--font-body); color:var(--ink); background:var(--cream); overflow-x:hidden;}
a{text-decoration:none; color:inherit;}
img,svg{display:block; max-width:100%;}
ul{list-style:none;}
.eyebrow{
  text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:600;
  color:var(--rose); text-align:center;
}
section{padding:64px 6vw;}

/* HEADER */
header{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 6vw; background:var(--cream); position:sticky; top:0; z-index:50;
  border-bottom:1px solid #f0dfe2;
}
.logo{font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--maroon); letter-spacing:1px; display:flex; align-items:center; gap:8px;}
.logo img {max-width: 250px}
.logo span{color:var(--rose); font-style:italic;}
nav ul{display:flex; gap:24px; font-size:14px; font-weight:500;}
nav ul li a:hover{color:var(--rose);}
.header-icons{display:flex; gap:20px; font-size:18px; align-items:center;}
.header-icons a{position:relative;}
.cart-count{
  position:absolute; top:-8px; right:-10px; background:var(--rose); color:#fff;
  font-size:10px; border-radius:50%; width:16px; height:16px; display:flex; align-items:center; justify-content:center;
}

/* BUTTON */
.btn-primary{
  display:inline-block; background:var(--maroon-deep); color:#fff; padding:16px 38px;
  border-radius:40px; font-weight:600; letter-spacing:1px; font-size:14px; width:fit-content;
  transition:transform .25s ease, background .25s ease; border:none; cursor:pointer;
}
.btn-primary:hover{background:var(--rose); transform:translateY(-2px);}
.btn-outline{
  display:inline-block; background:transparent; color:var(--maroon-deep); padding:14px 30px;
  border-radius:40px; font-weight:600; font-size:13px; border:1.5px solid var(--maroon-deep); cursor:pointer;
  transition:.25s ease;
}
.btn-outline:hover{background:var(--maroon-deep); color:#fff;}

/* HERO */
.hero{
  background:linear-gradient(120deg,var(--blush-light),var(--blush));
  width:100%;
}
.hero-visual{position:relative; display:flex; align-items:center; justify-content:center; padding:40px;}
.hero-copy{display:flex; flex-direction:column; justify-content:center; padding:60px 6vw;}
.hero-copy .tag{font-family:var(--font-display); font-style:italic; color:var(--rose); font-size:15px; letter-spacing:2px; margin-bottom:8px;}
.hero-copy h1{font-family:var(--font-display); font-size:clamp(32px,4vw,52px); line-height:1.1; color:var(--maroon-deep); font-weight:700; margin-bottom:18px;}
.hero-copy p{font-size:16px; color:#5c3a41; margin-bottom:30px; max-width:420px;}
.hero-blob{width:min(340px, 70vw); height:min(340px, 70vw); border-radius:50%; background:radial-gradient(circle at 30% 30%, #fff, var(--blush) 70%); display:flex; align-items:center; justify-content:center;}

/* CATEGORY */
.categories{background:var(--blush-light); text-align:center;}
.categories h2{font-family:var(--font-display); font-size:30px; color:var(--maroon-deep); margin:10px 0 40px;}
.cat-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:22px; max-width:1200px; margin:0 auto;}
.cat-card{background:var(--blush); border-radius:24px; padding:36px 20px 24px; display:flex; flex-direction:column; align-items:center; gap:18px; transition:transform .3s ease, box-shadow .3s ease; cursor:pointer;}
.cat-card:hover{transform:translateY(-6px); box-shadow:0 16px 30px rgba(122,36,56,.15);}
.cat-icon{width:96px; height:96px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center;}
.cat-card span{font-weight:600; font-size:16px; color:var(--maroon-deep);}

/* SPLIT BANNER */
.split-banner{display:grid; grid-template-columns:1fr auto 1fr; align-items:center; background:linear-gradient(100deg,var(--maroon-deep),var(--maroon) 60%, var(--rose)); color:#fff; padding:70px 6vw; gap:20px;}
.split-banner .side{width:100%; height:420px; border-radius:20px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center;}
.split-banner .center{text-align:center;}
.split-banner .center .small-label{font-family:var(--font-display); font-style:italic; font-size:14px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:10px;}
.split-banner .center h2{font-family:var(--font-display); font-size:clamp(22px,2.6vw,34px); line-height:1.3; font-weight:600;}

/* STAGE */
.stages{background:var(--blush-light); text-align:center;}
.stages h2{font-family:var(--font-display); font-size:30px; color:var(--maroon-deep); margin:10px 0 40px;}
.stage-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1100px; margin:0 auto;}
.stage-card{background:var(--blush); border-radius:24px; padding:40px 20px; display:flex; flex-direction:column; align-items:center; gap:16px; transition:transform .3s ease; cursor:pointer;}
.stage-card:hover{transform:translateY(-6px);}
.stage-card h3{font-family:var(--font-display); font-size:20px; color:var(--maroon-deep);}

/* MARQUEE */
.marquee{background:var(--maroon-deep); color:var(--blush-light); overflow:hidden; white-space:nowrap; padding:14px 0; font-size:13px; letter-spacing:2px; text-transform:uppercase;}
.marquee span{padding:0 40px; display:inline-block;}
.marquee-track{display:inline-block; animation:scroll 22s linear infinite;}
@keyframes scroll{from{transform:translateX(0);} to{transform:translateX(-50%);}}

/* PRODUCTS GRID */
.products h2{font-family:var(--font-display); font-size:32px; color:var(--maroon-deep); text-align:center; margin:10px 0 44px;}
.product-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1300px; margin:0 auto;}

/* SHOP / CATEGORY PAGE — 3 big cards per row */
.shop-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.shop-grid .product-thumb{height:340px;}
.shop-grid .product-info{padding:20px 22px 26px;}
.shop-grid .product-info .name{font-size:15px;}
.shop-grid .product-info .price{font-size:17px;}
.product-card{background:#fff; border-radius:18px; overflow:hidden; border:1px solid #f0dfe2; transition:transform .3s ease, box-shadow .3s ease;}
.product-card:hover{transform:translateY(-6px); box-shadow:0 16px 28px rgba(122,36,56,.12);}
.product-thumb{height:220px; background:linear-gradient(160deg,var(--blush-light),var(--blush)); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;}
.product-thumb img{width:100%; height:100%; object-fit:cover;}
.badge{position:absolute; top:12px; left:12px; background:var(--maroon-deep); color:#fff; font-size:11px; font-weight:600; padding:5px 10px; border-radius:20px;}
.product-info{padding:16px 18px 20px;}
.product-info .price{font-weight:700; color:var(--maroon-deep); font-size:15px;}
.product-info .price .strike{text-decoration:line-through; color:#a98a8f; font-weight:400; font-size:13px; margin-left:6px;}
.product-info .name{font-size:13.5px; margin-top:6px; color:#4a3336; line-height:1.4;}
.product-info form{margin-top:10px;}
.add-cart-btn{width:100%; background:var(--maroon-deep); color:#fff; border:none; padding:9px; border-radius:20px; font-size:12.5px; font-weight:600; cursor:pointer; transition:.2s ease; margin-top: 10px;}
.add-cart-btn:hover{background:var(--rose);}

/* TESTIMONIALS */
.testimonials{background:var(--blush-light);}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1100px; margin:40px auto 0;}
.testi-card{background:#fff; border-radius:20px; padding:30px; border:1px solid #f0dfe2;}
.stars{color:var(--gold); margin-bottom:14px; letter-spacing:3px;}
.testi-card p{font-size:14.5px; color:#5c3a41; line-height:1.6; margin-bottom:16px;}
.testi-card .who{font-weight:600; font-size:13.5px; color:var(--maroon-deep);}

/* NEWSLETTER */
.newsletter{background:var(--maroon-deep); color:#fff; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; border-radius:28px; margin:0 6vw 64px; padding:44px 5vw;}
.newsletter h3{font-family:var(--font-display); font-size:26px;}
.newsletter form{display:flex; gap:0; border-radius:40px; overflow:hidden; background:#fff;}
.newsletter input{border:none; padding:14px 20px; font-size:14px; width:260px; outline:none;}
.newsletter button{background:var(--rose); color:#fff; border:none; padding:14px 26px; font-weight:600; cursor:pointer;}

/* PERKS */
.perks{display:grid; grid-template-columns:repeat(5,1fr); gap:16px; text-align:center;}
.perk{display:flex; flex-direction:column; align-items:center; gap:10px;}
.perk .ic{width:50px; height:50px; border-radius:50%; background:var(--blush); display:flex; align-items:center; justify-content:center; color:var(--maroon-deep); font-size:20px;}
.perk span{font-size:12.5px; font-weight:600; color:#5c3a41;}

/* FOOTER */
footer{background:var(--maroon-deep); color:var(--blush-light); padding:60px 6vw 24px;}
.footer-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:30px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.15);}
.footer-grid h4{font-size:14px; margin-bottom:16px; letter-spacing:1px; color:var(--gold);}
.footer-grid ul{display:flex; flex-direction:column; gap:9px; font-size:13.5px; opacity:.85;}
.footer-grid p{font-size:13px; line-height:1.6; opacity:.8; max-width:320px;}
.footer-bottom{display:flex; justify-content:space-between; padding-top:20px; font-size:12.5px; opacity:.7; flex-wrap:wrap; gap:10px;}

/* BREADCRUMB / PAGE HEADER */
.page-header{background:var(--blush-light); padding:40px 6vw; text-align:center;}
.page-header h1{font-family:var(--font-display); font-size:34px; color:var(--maroon-deep);}
.page-header .crumb{font-size:13px; color:var(--rose); margin-top:8px;}

/* SHOP PAGE */
.shop-layout{display:grid; grid-template-columns:240px 1fr; gap:32px; max-width:1300px; margin:0 auto; padding:50px 6vw;}
.filters{background:#fff; border:1px solid #f0dfe2; border-radius:16px; padding:22px; height:fit-content;}
.filters h4{font-family:var(--font-display); color:var(--maroon-deep); margin-bottom:14px; font-size:16px;}
.filters label{display:flex; gap:8px; align-items:center; font-size:13.5px; margin-bottom:10px; cursor:pointer; color:#4a3336;}
.filters hr{border:none; border-top:1px solid #f0dfe2; margin:16px 0;}

/* PRODUCT DETAIL */
.product-detail{display:grid; grid-template-columns:1fr 1fr; gap:50px; max-width:1100px; margin:0 auto; padding:60px 6vw;}
.pd-gallery{background:linear-gradient(160deg,var(--blush-light),var(--blush)); border-radius:20px; height:560px; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.pd-gallery img{width:100%; height:100%; object-fit:cover; display:block;}
.pd-info h1{font-family:var(--font-display); font-size:28px; color:var(--maroon-deep); margin-bottom:10px;}
.pd-info .price{font-size:24px; font-weight:700; color:var(--maroon-deep); margin:14px 0;}
.pd-info .price .strike{text-decoration:line-through; color:#a98a8f; font-size:16px; font-weight:400; margin-left:10px;}
.pd-info p.desc{color:#5c3a41; line-height:1.7; margin-bottom:20px; font-size:14.5px;}
.qty-row{display:flex; align-items:center; gap:14px; margin-bottom:22px;}
.qty-row button{width:34px; height:34px; border-radius:50%; border:1px solid var(--maroon-deep); background:#fff; cursor:pointer; font-size:16px;}
.size-row{display:flex; gap:10px; margin-bottom:24px;}
.size-row .size{width:40px; height:40px; border:1px solid var(--maroon-deep); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:12.5px; cursor:pointer;}
.size-row .size.active, .size-row .size:hover{background:var(--maroon-deep); color:#fff;}

/* CART */
.cart-page{max-width:1000px; margin:0 auto; padding:50px 6vw;}
.cart-row{display:grid; grid-template-columns:90px 1fr auto auto auto; align-items:center; gap:18px; padding:18px 0; border-bottom:1px solid #f0dfe2;}
.cart-thumb{width:80px; height:80px; border-radius:12px; background:linear-gradient(160deg,var(--blush-light),var(--blush)); display:flex; align-items:center; justify-content:center;}
.cart-summary{max-width:380px; margin-left:auto; background:var(--blush-light); border-radius:16px; padding:24px; margin-top:30px;}
.cart-summary .row{display:flex; justify-content:space-between; margin-bottom:10px; font-size:14px;}
.cart-summary .total{font-weight:700; font-size:17px; color:var(--maroon-deep); border-top:1px solid #e6cfd3; padding-top:12px; margin-top:6px;}
.remove-btn{background:none; border:none; color:var(--rose); cursor:pointer; font-size:13px;}

/* AUTH */
.auth-wrap{max-width:420px; margin:60px auto; background:#fff; border:1px solid #f0dfe2; border-radius:20px; padding:40px;}
.auth-wrap h2{font-family:var(--font-display); color:var(--maroon-deep); margin-bottom:6px; text-align:center;}
.auth-wrap p.sub{text-align:center; color:#8a6166; font-size:13.5px; margin-bottom:26px;}
.field{margin-bottom:16px;}
.field label{display:block; font-size:12.5px; font-weight:600; margin-bottom:6px; color:#4a3336;}
.field input, .field select, .field textarea{width:100%; padding:11px 14px; border:1px solid #e6cfd3; border-radius:10px; font-size:14px; font-family:var(--font-body); outline:none;}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--rose);}
.auth-switch{text-align:center; margin-top:16px; font-size:13px; color:#8a6166;}
.auth-switch a{color:var(--rose); font-weight:600;}

/* ADMIN */
.admin-shell{display:grid; grid-template-columns:220px 1fr; min-height:100vh;}
.admin-sidebar{background:var(--maroon-deep); color:var(--blush-light); padding:26px 18px;}
.admin-sidebar .logo{color:#fff; font-size:22px; margin-bottom:30px; display:flex;}
.admin-sidebar .logo span{color:var(--gold);}
.admin-sidebar a{display:block; padding:11px 14px; border-radius:10px; font-size:13.5px; margin-bottom:4px; opacity:.85;}
.admin-sidebar a:hover, .admin-sidebar a.active{background:rgba(255,255,255,.12); opacity:1;}
.admin-main{padding:30px 40px; background:var(--cream);}
.admin-topbar{display:flex; justify-content:space-between; align-items:center; margin-bottom:28px;}
.admin-topbar h1{font-family:var(--font-display); font-size:26px; color:var(--maroon-deep);}
.stat-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:30px;}
.stat-card{background:#fff; border:1px solid #f0dfe2; border-radius:16px; padding:22px;}
.stat-card .num{font-family:var(--font-display); font-size:28px; color:var(--maroon-deep);}
.stat-card .label{font-size:12.5px; color:#8a6166; margin-top:6px;}
.admin-table{width:100%; border-collapse:collapse; background:#fff; border-radius:14px; overflow:hidden; border:1px solid #f0dfe2;}
.admin-table th, .admin-table td{padding:14px 16px; text-align:left; font-size:13.5px; border-bottom:1px solid #f4e6e8;}
.admin-table th{background:var(--blush-light); color:var(--maroon-deep); font-weight:600;}
.admin-table tr:last-child td{border-bottom:none;}
.tag-pill{padding:4px 10px; border-radius:20px; font-size:11.5px; font-weight:600;}
.tag-green{background:#e3f5e6; color:#2f8f45;}
.tag-orange{background:#fdeedb; color:#c07d1f;}
.tag-blue{background:#e2ecfb; color:#2f5fa8;}
.icon-btn{border:none; background:none; cursor:pointer; font-size:14px; margin-right:8px;}
.modal-overlay{position:fixed; inset:0; background:rgba(45,20,24,.5); display:none; align-items:center; justify-content:center; z-index:100;}
.modal-overlay.show{display:flex;}
.modal-box{background:#fff; border-radius:18px; padding:30px; width:420px; max-width:92vw; max-height:88vh; overflow:auto;}
.modal-box h3{font-family:var(--font-display); color:var(--maroon-deep); margin-bottom:18px;}
.modal-actions{display:flex; gap:10px; margin-top:10px;}

/* CHECKOUT */
.checkout-layout{display:grid; grid-template-columns:1.3fr 1fr; gap:40px; max-width:1100px; margin:0 auto; padding:50px 6vw;}
.pay-option{border:1.5px solid #e6cfd3; border-radius:14px; padding:18px; display:flex; gap:14px; align-items:flex-start; margin-bottom:14px; cursor:pointer;}
.pay-option.selected{border-color:var(--maroon-deep); background:var(--blush-light);}
.pay-option input{margin-top:3px;}
.pay-option strong{display:block; margin-bottom:4px; color:var(--maroon-deep);}
.pay-option small{color:#8a6166;}
.pay-option.disabled{opacity:.5; cursor:not-allowed;}

/* ACCOUNT */
.account-layout{display:grid; grid-template-columns:220px 1fr; gap:30px; max-width:1100px; margin:0 auto; padding:50px 6vw;}
.account-nav{background:#fff; border:1px solid #f0dfe2; border-radius:16px; padding:16px; height:fit-content;}
.account-nav a{display:block; padding:11px 14px; border-radius:10px; font-size:13.5px; margin-bottom:4px; color:#4a3336;}
.account-nav a.active, .account-nav a:hover{background:var(--blush-light); color:var(--maroon-deep);}
.order-card{border:1px solid #f0dfe2; border-radius:14px; padding:18px 20px; margin-bottom:14px; background:#fff;}
.order-card .top{display:flex; justify-content:space-between; margin-bottom:8px;}
.order-card .top strong{color:var(--maroon-deep);}

/* TOAST */
.toast{position:fixed; bottom:24px; right:24px; background:var(--maroon-deep); color:#fff; padding:14px 22px; border-radius:12px; font-size:13.5px; box-shadow:0 10px 24px rgba(0,0,0,.2); z-index:200; opacity:0; transform:translateY(10px); transition:.3s ease;}
.toast.show{opacity:1; transform:translateY(0);}
.error-text{color:#c0392b; font-size:12.5px; margin-bottom:10px;}

/* PRODUCT PAGE EXTRAS */
.pd-trust-row{display:flex; gap:16px; flex-wrap:wrap; font-size:12px; color:#5c3a41; margin:10px 0 16px;}
.pd-trust-row span{display:flex; align-items:center; gap:5px;}
.pd-offer-bar{background:#fdf1e0; border:1px dashed var(--gold); border-radius:10px; padding:10px 14px; font-size:12.5px; color:#8a5a1f; margin-bottom:16px; display:flex; justify-content:space-between; align-items:center; gap:10px;}
.pd-viewing{font-size:12px; color:var(--rose); margin-top:10px;}
.btn-buy-now{display:block; width:100%; text-align:center; background:#fff; color:var(--maroon-deep); border:1.5px solid var(--maroon-deep); padding:15px 0; border-radius:40px; font-weight:600; font-size:14px; margin-top:10px; cursor:pointer;}
.btn-buy-now:hover{background:var(--blush-light);}

.accordion{border-top:1px solid #f0dfe2; margin-top:8px;}
.accordion-item{border-bottom:1px solid #f0dfe2;}
.accordion-header{display:flex; justify-content:space-between; align-items:center; padding:14px 4px; cursor:pointer; font-weight:600; font-size:14px; color:var(--maroon-deep);}
.accordion-header .plus{font-size:18px; transition:transform .2s ease;}
.accordion-item.open .plus{transform:rotate(45deg);}
.accordion-body{max-height:0; overflow:hidden; transition:max-height .25s ease; font-size:13.5px; color:#5c3a41; line-height:1.7;}
.accordion-item.open .accordion-body{max-height:400px; padding-bottom:14px;}

.desc-block{padding:30px 6vw; max-width:1100px; margin:0 auto;}
.desc-block h3{font-family:var(--font-display); color:var(--maroon-deep); margin-bottom:14px; font-size:20px;}
.desc-block ul{padding-left:20px; color:#5c3a41; font-size:14px; line-height:1.9;}
.desc-block ul li{list-style:disc;}

.promo-banner{background:var(--maroon-deep); color:#fff; display:flex; justify-content:space-between; align-items:center; border-radius:16px; padding:22px 30px; max-width:1100px; margin:20px auto; flex-wrap:wrap; gap:14px;}
.promo-banner strong{font-family:var(--font-display); font-size:18px;}
.promo-banner small{opacity:.8; font-size:12.5px;}

.faq-section{max-width:800px; margin:0 auto; padding:40px 6vw;}
.faq-section h2{font-family:var(--font-display); text-align:center; color:var(--maroon-deep); margin-bottom:24px; font-size:26px;}
.faq-item{border:1px solid #f0dfe2; border-radius:12px; margin-bottom:10px; padding:4px 18px; background:#fff;}

.reviews-section{max-width:1000px; margin:0 auto; padding:40px 6vw;}
.reviews-section h2{font-family:var(--font-display); color:var(--maroon-deep); margin-bottom:20px; font-size:26px;}
.reviews-summary{display:flex; gap:40px; align-items:center; margin-bottom:30px; flex-wrap:wrap;}
.reviews-score{font-family:var(--font-display); font-size:44px; color:var(--maroon-deep); font-weight:700;}
.reviews-score-sub{font-size:12.5px; color:#8a6166;}
.rating-bars{flex:1; min-width:220px;}
.rating-bar-row{display:flex; align-items:center; gap:10px; font-size:12px; color:#5c3a41; margin-bottom:6px;}
.rating-bar-track{flex:1; height:6px; background:#f0dfe2; border-radius:10px; overflow:hidden;}
.rating-bar-fill{height:100%; background:var(--gold);}
.review-card{border-bottom:1px solid #f0dfe2; padding:18px 0;}
.review-card .who{font-weight:600; color:var(--maroon-deep); font-size:13.5px;}
.review-card .stars{margin:4px 0; font-size:13px;}
.review-card p{font-size:13.5px; color:#5c3a41; line-height:1.6;}

.watch-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:16px;}
.watch-grid a{display:block; aspect-ratio:9/16; border-radius:16px; background:linear-gradient(160deg,var(--blush-light),var(--blush)); position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center;}

/* ANNOUNCEMENT BAR */
.announce-bar{background:var(--maroon-deep); color:#fff; text-align:center; font-size:12.5px; padding:8px 0; letter-spacing:.3px; overflow:hidden; position:relative; height:34px;}
.announce-track{position:absolute; inset:0; display:flex; align-items:center; justify-content:center;}
.announce-item{position:absolute; opacity:0; transition:opacity .5s ease; width:100%; text-align:center;}
.announce-item.show{opacity:1;}

/* HEADER SEARCH */
.header-search{position:relative; flex:1; max-width:380px; margin:0 24px;}
.header-search input{width:100%; padding:10px 40px 10px 16px; border:1.5px solid #e6cfd3; border-radius:30px; font-size:13.5px; outline:none; font-family:var(--font-body);}
.header-search input:focus{border-color:var(--rose);}
.header-search button{position:absolute; right:4px; top:4px; bottom:4px; width:32px; border:none; background:var(--maroon-deep); color:#fff; border-radius:50%; cursor:pointer;}
.search-suggestions{position:absolute; top:calc(100% + 6px); left:0; right:0; background:#fff; border:1px solid #f0dfe2; border-radius:12px; box-shadow:0 12px 24px rgba(0,0,0,.08); z-index:60; display:none; overflow:hidden;}
.search-suggestions.show{display:block;}
.search-suggestions a{display:block; padding:10px 16px; font-size:13px; color:#4a3336;}
.search-suggestions a:hover{background:var(--blush-light);}

/* MEGA MENU */
.has-mega{position:relative; padding-bottom:16px; margin-bottom:-16px;}
.mega-menu{position:absolute; top:100%; left:50%; transform:translateX(-50%); background:#fff; border:1px solid #f0dfe2; border-radius:16px; box-shadow:0 20px 40px rgba(0,0,0,.1); padding:20px; display:none; grid-template-columns:repeat(4,140px); gap:10px; z-index:70;}
.has-mega:hover .mega-menu, .mega-menu.show{display:grid;}
.mega-menu a{display:flex; flex-direction:column; align-items:center; gap:8px; padding:12px 8px; border-radius:10px; text-align:center; font-size:12.5px; color:#4a3336;}
.mega-menu a:hover{background:var(--blush-light); color:var(--maroon-deep);}
.mega-menu .mm-icon{width:36px; height:36px; border-radius:50%; background:var(--blush-light); display:flex; align-items:center; justify-content:center;}

/* WISHLIST HEART ON CARDS */
.wish-heart{position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.9); display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:15px; z-index:5; transition:transform .2s ease;}
.wish-heart:hover{transform:scale(1.1);}
.wish-heart.active{color:#c0392b;}

/* AUTH MODAL */
.auth-modal-overlay{position:fixed; inset:0; background:rgba(45,20,24,.55); display:none; align-items:center; justify-content:center; z-index:200;}
.auth-modal-overlay.show{display:flex;}
.auth-modal-box{background:#fff; border-radius:20px; padding:40px; width:420px; max-width:92vw; max-height:90vh; overflow:auto; position:relative; animation:modalIn .25s ease;}
@keyframes modalIn{from{opacity:0; transform:translateY(14px) scale(.97);} to{opacity:1; transform:translateY(0) scale(1);}}
.auth-modal-close{position:absolute; top:16px; right:18px; font-size:20px; background:none; border:none; cursor:pointer; color:#8a6166;}

/* SKELETON LOADING */
.skeleton-card{background:#fff; border-radius:18px; overflow:hidden; border:1px solid #f0dfe2;}
.skeleton-thumb{height:220px; background:linear-gradient(90deg,#f3e6e8 25%,#faf0f1 37%,#f3e6e8 63%); background-size:400% 100%; animation:shimmer 1.4s ease infinite;}
.skeleton-line{height:12px; margin:14px 16px; border-radius:6px; background:linear-gradient(90deg,#f3e6e8 25%,#faf0f1 37%,#f3e6e8 63%); background-size:400% 100%; animation:shimmer 1.4s ease infinite;}
.skeleton-line.short{width:60%;}
@keyframes shimmer{0%{background-position:100% 0;} 100%{background-position:0 0;}}

/* HERO CAROUSEL */
.hero-carousel{position:relative; overflow:hidden; width:100%; min-height:420px;}
.hero-slide{position:absolute; inset:0; width:100%; height:100%; opacity:0; transition:opacity .6s ease; display:flex; align-items:center;}
.hero-slide.active{opacity:1; position:relative; height:auto; min-height:420px;}
.hero-arrow{position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.85); border:none; cursor:pointer; font-size:16px; z-index:20; display:flex; align-items:center; justify-content:center;}
.hero-arrow.prev{left:16px;} .hero-arrow.next{right:16px;}
.hero-dots{position:absolute; bottom:16px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:20;}
.hero-dots span{width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.6); cursor:pointer;}
.hero-dots span.active{background:var(--maroon-deep);}

/* COUNTDOWN */
.countdown-strip{display:flex; gap:10px; justify-content:center; margin:14px 0;}
.countdown-strip .box{background:var(--maroon-deep); color:#fff; border-radius:8px; padding:8px 12px; text-align:center; min-width:52px;}
.countdown-strip .box .num{font-family:var(--font-display); font-size:18px; font-weight:700;}
.countdown-strip .box .lbl{font-size:9px; text-transform:uppercase; opacity:.8;}

/* SECTION TABS (best sellers / new / trending / deals) */
.section-block{padding:50px 6vw;}
.section-block h2{font-family:var(--font-display); font-size:30px; color:var(--maroon-deep); text-align:center; margin-bottom:8px;}
.section-block .eyebrow{margin-bottom:8px;}

/* BRAND STRIP */
.brand-strip{display:flex; justify-content:center; align-items:center; gap:50px; flex-wrap:wrap; padding:20px 6vw; opacity:.6;}
.brand-strip span{font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--maroon-deep);}

@media(max-width:900px){
  .hero-carousel{min-height:340px;}
  .hero-slide, .hero-slide.active{min-height:340px;}
  .header-search{display:none;}
  .mega-menu{grid-template-columns:repeat(2,1fr); left:0; transform:none;}
  .admin-shell{grid-template-columns:1fr;}
  .admin-sidebar{display:flex; overflow-x:auto; gap:6px;}
  .stat-grid{grid-template-columns:repeat(2,1fr);}
  .cat-grid, .stage-grid, .product-grid, .testi-grid{grid-template-columns:repeat(2,1fr);}
  .shop-grid{grid-template-columns:repeat(2,1fr);}
  .shop-grid .product-thumb{height:220px;}
  .split-banner{grid-template-columns:1fr; text-align:center;}
  .split-banner .side{display:none;}
  .perks{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .watch-grid{grid-template-columns:repeat(3,1fr);}
  nav{display:none;}
  .shop-layout{grid-template-columns:1fr;}
  .product-detail{grid-template-columns:1fr;}
  .pd-gallery{height:380px;}
}
@media(max-width:520px){
  .hero-carousel{min-height:100px;height: 100px;}
  .hero-slide, .hero-slide.active{min-height:100px;}
  .cat-grid, .stage-grid, .product-grid, .testi-grid{grid-template-columns:1fr;}
  .shop-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .cart-row{grid-template-columns:60px 1fr; row-gap:8px;}
}


.policy-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
    padding:20px;
}

.policy-modal.active{
    opacity:1;
    visibility:visible;
}

.policy-box{
    background:#fff;
    width:100%;
    max-width:760px;
    border-radius:20px;
    overflow:hidden;
    transform:translateY(40px);
    transition:.35s;
    box-shadow:0 30px 70px rgba(0,0,0,.2);
    position:relative;
}

.policy-modal.active .policy-box{
    transform:translateY(0);
}

.policy-header{
    padding:30px;
    background:#fdecef;
    border-bottom:1px solid #f3d5dc;
}

.policy-header h2{
    margin:0;
    color:#7a2138;
    font-size:30px;
}

.policy-header p{
    margin-top:8px;
    color:#777;
}

.policy-content{
    padding:30px;
    max-height:65vh;
    overflow-y:auto;
}

.policy-content::-webkit-scrollbar{
    width:8px;
}

.policy-content::-webkit-scrollbar-thumb{
    background:#c98ea1;
    border-radius:20px;
}

.policy-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    font-size:15px;
}

.policy-content strong{
    color:#7a2138;
}

.close-policy{
    position:absolute;
    right:20px;
    top:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:30px;
    cursor:pointer;
    color:#7a2138;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.close-policy:hover{
    transform:rotate(90deg);
    background:#7a2138;
    color:#fff;
}

@media(max-width:768px){

.policy-header{
    padding:22px;
}

.policy-header h2{
    font-size:24px;
}

.policy-content{
    padding:22px;
    max-height:70vh;
}

}
