:root{
  --bg:#fff7fb;
  --bg2:#ffffffcc;
  --text:#151515;
  --muted:#6b7280;
  --pink:#f7d7e6;
  --pink-2:#f3b6d0;
  --gold:#d4af37;
  --gold-2:#f3dd95;
  --black:#111111;
  --white:#ffffff;
  --glass:rgba(255,255,255,0.25);
  --border:rgba(255,255,255,0.3);
  --shadow:0 10px 30px rgba(0,0,0,0.12);
  --shadow-soft:0 8px 25px rgba(212,175,55,0.14);
  --header:rgba(255,255,255,0.55);
  --card:#ffffffa6;
}

body.dark{
  --bg:#0f0b12;
  --bg2:#16121bcc;
  --text:#f8f5f7;
  --muted:#b8b0b8;
  --pink:#3a1c2a;
  --pink-2:#6f3750;
  --gold:#d4af37;
  --gold-2:#f3dd95;
  --black:#000;
  --white:#fff;
  --glass:rgba(255,255,255,0.08);
  --border:rgba(255,255,255,0.12);
  --shadow:0 10px 30px rgba(0,0,0,0.35);
  --shadow-soft:0 8px 25px rgba(212,175,55,0.12);
  --header:rgba(18,18,18,0.55);
  --card:rgba(255,255,255,0.06);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(247,183,210,0.18), transparent 28%),
    linear-gradient(180deg,var(--bg),#f9f2f7);
  color:var(--text);
  transition:background .4s ease,color .4s ease;
  overflow-x:hidden;
}
body.dark{
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(247,183,210,0.10), transparent 28%),
    linear-gradient(180deg,#0e0a11,#15101a);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1200px,92%);margin:auto}
.section{padding:70px 0}
.grid{display:grid;gap:24px}
.hidden{display:none!important}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display',serif;
  margin:0 0 12px;
}
p{color:var(--muted);line-height:1.7}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  border-radius:999px;
  padding:12px 22px;
  cursor:pointer;
  font-weight:600;
  transition:.3s ease;
  box-shadow:var(--shadow-soft);
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#111;
}
.btn-primary:hover{transform:translateY(-2px) scale(1.02)}
.btn-secondary{
  background:linear-gradient(135deg,var(--pink),#fff);
  color:var(--black);
}
.btn-dark{
  background:#111;color:#fff;
}
.btn-outline{
  border:1px solid var(--gold);
  background:transparent;
  color:var(--text);
}
.badge{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#fff1b8);
  color:#111;
  font-size:12px;
  font-weight:700;
}
.glass{
  background:var(--glass);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.card{
  border-radius:24px;
  background:var(--card);
  backdrop-filter:blur(16px);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

#loader{
  position:fixed; inset:0; z-index:9999;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#fff7fb,#f9e7f0);
}
body.dark #loader{background:linear-gradient(135deg,#120d16,#19111d)}
.loader-ring{
  width:90px;height:90px;border-radius:50%;
  border:4px solid rgba(212,175,55,0.2);
  border-top-color:var(--gold);
  animation:spin 1s linear infinite;
  position:relative;
}
.loader-ring::after{
  content:"VIP";
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;font-weight:700;color:var(--gold);
}
@keyframes spin{to{transform:rotate(360deg)}}

.progress-bar{
  position:fixed;top:0;left:0;height:4px;width:0%;
  background:linear-gradient(90deg,var(--gold),#ff7cb7);
  z-index:99999;
}

.flash-bar{
  position:sticky;top:0;z-index:1000;
  background:linear-gradient(90deg,#111,#422133,#111);
  color:#fff;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.flash-inner{
  display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;
  font-size:14px;
}
.countdown{
  font-weight:700;color:var(--gold-2);
  background:rgba(255,255,255,0.08);
  padding:6px 10px;border-radius:999px;
}

header.site-header{
  position:sticky;top:44px;z-index:999;
  margin-top:0;
}
.navbar{
  margin:14px auto;
  padding:14px 18px;
  border-radius:22px;
  background:var(--header);
  backdrop-filter:blur(18px);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.logo-wrap{display:flex;align-items:center;gap:12px}
.logo-wrap img{width:50px;height:50px;border-radius:14px;object-fit:cover}
.logo-text small{display:block;color:var(--muted)}
.nav-links{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.nav-links a{
  padding:10px 14px;border-radius:999px;transition:.25s ease;
}
.nav-links a:hover,.nav-links a.active{
  background:rgba(212,175,55,0.14); color:var(--gold);
}
.nav-actions{display:flex;align-items:center;gap:10px}
.icon-btn{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--border);
  background:var(--glass);
  display:grid;place-items:center;cursor:pointer;
}

.hero{
  min-height:88vh;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:30px;
}
.hero-content h1{
  font-size:clamp(42px,6vw,78px);
  line-height:1.02;
}
.hero-content p{font-size:17px;max-width:600px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.hero-stats{
  display:flex;gap:16px;flex-wrap:wrap;margin-top:28px;
}
.stat{
  padding:14px 18px;border-radius:18px;
  min-width:130px;text-align:center;
}
.hero-visual{
  position:relative;
  min-height:540px;
}
.orb{
  position:absolute;border-radius:50%;filter:blur(10px);opacity:.7;
  animation:float 6s ease-in-out infinite;
}
.orb.one{width:190px;height:190px;background:#f9bdd5;top:30px;right:40px}
.orb.two{width:130px;height:130px;background:#f1d27d;left:10px;bottom:120px;animation-delay:.8s}
.orb.three{width:90px;height:90px;background:#fff;right:120px;bottom:40px;animation-delay:1.6s}

.floating-card{
  position:absolute;
  width:280px;
  border-radius:28px;
  padding:18px;
  transform-style:preserve-3d;
  animation:float 5s ease-in-out infinite;
}
.floating-card img{
  border-radius:22px;
  height:280px; width:100%; object-fit:cover;
}
.fc1{top:40px;left:40px}
.fc2{top:180px;right:20px;animation-delay:1s}
.fc3{bottom:10px;left:90px;animation-delay:2s}

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

.section-title{
  display:flex;align-items:end;justify-content:space-between;gap:20px;flex-wrap:wrap;
  margin-bottom:30px;
}
.section-title h2{font-size:clamp(30px,4vw,48px)}
.subtitle{max-width:600px}

.collections{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.collection-card{
  min-height:240px;padding:24px;position:relative;overflow:hidden;
  transition:.35s ease;
}
.collection-card:hover{transform:translateY(-8px) rotateX(4deg)}
.collection-card::before{
  content:"";position:absolute;inset:auto -20% -30% auto;width:160px;height:160px;
  background:radial-gradient(circle,var(--gold-2),transparent 70%);
  opacity:.45;
}
.collection-card h3{font-size:28px}
.collection-card p{margin-bottom:16px}

.products-grid{
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.product-card{
  position:relative;overflow:hidden;padding:16px;border-radius:28px;
  transition:transform .35s ease, box-shadow .35s ease;
}
.product-card:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:0 25px 45px rgba(0,0,0,0.16);
}
.product-media{
  position:relative;overflow:hidden;border-radius:22px;
}
.product-media img{
  width:100%;height:290px;object-fit:cover;transition:transform .5s ease;
}
.product-card:hover .product-media img{transform:scale(1.08)}
.discount-badge{
  position:absolute;top:14px;left:14px;z-index:2;
  background:linear-gradient(135deg,#ff5ca8,#ffd0e5);
  color:#111;padding:8px 12px;border-radius:999px;font-size:12px;font-weight:700;
}
.product-info h3{font-size:24px;margin-top:14px}
.price-row{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:10px 0;
}
.price{font-weight:700;color:var(--gold);font-size:20px}
.old-price{text-decoration:line-through;color:var(--muted)}
.rating{color:#f4b400}
.product-actions{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px;
}
.product-actions .btn{padding:11px 12px;font-size:14px}
.quick-row{
  display:flex;gap:10px;margin-top:10px;
}
.small-btn{
  flex:1;
  padding:10px 14px;border-radius:16px;border:none;cursor:pointer;
  background:rgba(212,175,55,0.13);color:var(--text);font-weight:600;
}

.testimonials{
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}
.testimonial{
  padding:24px;border-radius:24px;
}
.newsletter{
  padding:36px;border-radius:30px;
  display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center;
}
.newsletter form{display:flex;gap:12px;flex-wrap:wrap}
.newsletter input,.input,.select,textarea{
  width:100%;padding:14px 16px;border-radius:16px;
  border:1px solid var(--border);outline:none;
  background:rgba(255,255,255,0.65);color:#111;
}
body.dark .newsletter input,
body.dark .input,
body.dark .select,
body.dark textarea{
  background:rgba(255,255,255,0.08);color:#fff;
}
.filters-wrap{
  display:grid;grid-template-columns:280px 1fr;gap:24px;
}
.filters-panel{padding:20px;border-radius:24px;height:fit-content}
.filter-group{margin-bottom:18px}
.filter-group label{display:block;margin-bottom:8px;font-weight:600}
.range-output{font-weight:700;color:var(--gold)}
.toolbar{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:20px;
}
.toolbar .group{display:flex;gap:10px;flex-wrap:wrap}
.view-toggle button.active{background:var(--gold);color:#111}

.list-view .products-grid{grid-template-columns:1fr}
.list-view .product-card{
  display:grid;grid-template-columns:260px 1fr;gap:18px;align-items:center;
}
.list-view .product-media img{height:220px}

.product-detail{
  display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:start;
}
.product-gallery{padding:20px;border-radius:28px;position:relative}
.product-gallery img{
  width:100%;height:500px;object-fit:cover;border-radius:24px;
}
.zoom-note{margin-top:10px;font-size:13px}
.detail-box{padding:22px;border-radius:28px}
.meta-list{display:grid;gap:10px;margin:18px 0}
.review-box,.contact-box,.cart-box,.checkout-box,.about-box{
  padding:24px;border-radius:28px;
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.trust-badges{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin-top:20px;
}
.trust-badge{padding:18px;border-radius:22px;text-align:center}
.map-wrap iframe{
  width:100%;height:360px;border:none;border-radius:24px;
}
.cart-item{
  display:grid;grid-template-columns:90px 1fr auto auto auto;gap:16px;align-items:center;
  padding:14px 0;border-bottom:1px solid rgba(127,127,127,0.15);
}
.cart-item img{width:90px;height:90px;object-fit:cover;border-radius:16px}
.qty-control{display:flex;align-items:center;gap:8px}
.qty-control button{
  width:34px;height:34px;border-radius:50%;border:none;cursor:pointer;
  background:rgba(212,175,55,0.15);
}
.summary-line{
  display:flex;justify-content:space-between;margin:12px 0;color:var(--muted)
}
.total{
  font-size:24px;font-weight:700;color:var(--gold)
}

footer{
  margin-top:70px;padding:26px 0 40px;
}
.footer-main{
  padding:26px;border-radius:28px;
}
.footer-grid{
  display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:24px;
}
.footer-banner{
  margin-top:20px;padding:20px;border-radius:22px;
  background:linear-gradient(135deg,#111,#3c2230,#111);
  color:#fff;
}
.footer-banner a{color:#f8d876}

.whatsapp-float{
  position:fixed;right:18px;bottom:18px;z-index:999;
  width:58px;height:58px;border-radius:50%;
  display:grid;place-items:center;
  background:#25D366;color:#fff;font-size:28px;
  box-shadow:0 12px 26px rgba(37,211,102,.35);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.55)}
  70%{box-shadow:0 0 0 18px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

.back-top{
  position:fixed;left:18px;bottom:18px;z-index:999;
  width:50px;height:50px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--gold),#fff1b8);
  color:#111;border:none;cursor:pointer;
  box-shadow:var(--shadow);
  opacity:0;pointer-events:none;transition:.3s;
}
.back-top.show{opacity:1;pointer-events:auto}

.cursor-glow{
  position:fixed;left:0;top:0;width:22px;height:22px;border-radius:50%;
  pointer-events:none;z-index:9999;
  background:radial-gradient(circle,var(--gold),rgba(212,175,55,0.05));
  mix-blend-mode:screen;
  transform:translate(-50%,-50%);
  opacity:.7;
}

.mobile-menu-btn{display:none}
.mobile-nav{display:none}

@media (max-width: 992px){
  .hero,.product-detail,.two-col,.filters-wrap,.footer-grid{grid-template-columns:1fr}
  .hero{padding-top:20px}
  .hero-visual{min-height:500px}
  .newsletter{grid-template-columns:1fr}
  .navbar{padding:12px 14px}
  .nav-links{display:none}
  .mobile-menu-btn{display:grid}
  .mobile-nav{
    display:none;
    position:absolute;left:4%;right:4%;top:100%;
    margin-top:8px;padding:16px;border-radius:22px;
    background:var(--bg2);backdrop-filter:blur(15px);border:1px solid var(--border);
    box-shadow:var(--shadow);
  }
  .mobile-nav.show{display:grid}
  .mobile-nav a{padding:12px 10px;border-bottom:1px solid rgba(127,127,127,0.12)}
  .list-view .product-card{grid-template-columns:1fr}
  .cart-item{
    grid-template-columns:70px 1fr;
  }
}
@media (max-width: 640px){
  header.site-header{top:42px}
  .hero-content h1{font-size:42px}
  .hero-visual{min-height:420px}
  .floating-card{width:210px}
  .floating-card img{height:210px}
  .fc1{left:0}.fc2{right:0}.fc3{left:40px}
  .product-actions{grid-template-columns:1fr}
}

