:root{
  --bg:#090806;
  --bg-soft:#11100d;
  --card:#181511;
  --card-2:#201b15;
  --text:#fbf7ef;
  --muted:#bfb4a6;
  --gold:#d7a84f;
  --gold-2:#f1d18a;
  --line:rgba(255,255,255,.10);
  --shadow:0 24px 70px rgba(0,0,0,.35);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Vazirmatn", Tahoma, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(215,168,79,.18), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(140,80,35,.15), transparent 35%),
    linear-gradient(180deg,#070604 0%,#11100d 48%,#080705 100%);
  line-height:1.9;
}
a{color:inherit;text-decoration:none}
button,input{font-family:inherit}
.container{width:min(1180px, calc(100% - 32px)); margin-inline:auto}
.site-header{min-height:100vh; position:relative; overflow:hidden}
.site-header:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom, #000 0%, transparent 75%);
  pointer-events:none;
}
.navbar{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:18px;
  color:#130f09;
  font-weight:900;
  font-size:24px;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  box-shadow:0 12px 35px rgba(215,168,79,.28);
}
.brand strong{
  display:block;
  font-size:23px;
  line-height:1.1;
  letter-spacing:-.5px;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:3px;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
  border-radius:999px;
}
.nav-links a{
  padding:9px 16px;
  color:#efe8dc;
  border-radius:999px;
  transition:.25s ease;
  font-size:14px;
}
.nav-links a:hover{background:rgba(215,168,79,.16); color:var(--gold-2)}
.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  color:#130f09;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  font-weight:800;
  box-shadow:0 16px 35px rgba(215,168,79,.22);
}
.menu-toggle{
  display:none;
  width:46px;height:46px;border:1px solid var(--line);
  border-radius:16px;background:rgba(255,255,255,.06);
  padding:11px;
}
.menu-toggle span{display:block;height:2px;background:var(--text);margin:5px 0;border-radius:10px}

.hero{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:48px;
  padding:72px 0 92px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 13px;
  color:var(--gold-2);
  border:1px solid rgba(215,168,79,.25);
  background:rgba(215,168,79,.08);
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}
.eyebrow:before{
  content:"";
  width:8px;height:8px;border-radius:50%;background:var(--gold);
  box-shadow:0 0 0 6px rgba(215,168,79,.13);
}
.hero h1{
  font-size:clamp(38px, 6vw, 78px);
  line-height:1.18;
  letter-spacing:-2px;
  margin:22px 0;
  max-width:760px;
}
.hero p{
  color:var(--muted);
  font-size:18px;
  max-width:640px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  font-weight:850;
  cursor:pointer;
  transition:.25s ease;
}
.btn-primary{
  color:#130f09;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  box-shadow:0 20px 42px rgba(215,168,79,.22);
}
.btn-primary:hover{transform:translateY(-2px)}
.btn-ghost{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:600px;
  margin-top:36px;
}
.hero-stats div{
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.045);
}
.hero-stats strong{display:block;font-size:24px;color:var(--gold-2)}
.hero-stats span{display:block;color:var(--muted);font-size:13px}

.hero-card{
  min-height:590px;
  position:relative;
  display:grid;
  place-items:center;
  padding:42px;
  border-radius:42px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    linear-gradient(180deg, rgba(215,168,79,.12), rgba(0,0,0,.12));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:auto -20% -25% -20%;
  height:45%;
  background:radial-gradient(ellipse at center, rgba(215,168,79,.3), transparent 65%);
}
.glow{
  position:absolute;
  width:340px;height:340px;
  border-radius:50%;
  background:rgba(215,168,79,.18);
  filter:blur(50px);
}
.perfume-bottle{
  position:relative;
  width:112px;
  height:180px;
  z-index:2;
}
.perfume-bottle.large{width:210px;height:340px;filter:drop-shadow(0 35px 45px rgba(0,0,0,.45))}
.perfume-bottle .cap{
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:42%;
  height:17%;
  border-radius:12px 12px 7px 7px;
  background:linear-gradient(135deg,#f7e2aa,#a8792c);
  border:1px solid rgba(255,255,255,.3);
}
.perfume-bottle .neck{
  position:absolute;
  top:15%;left:50%;
  transform:translateX(-50%);
  width:24%;
  height:16%;
  border-radius:7px 7px 3px 3px;
  background:linear-gradient(135deg,#c89336,#f5d98d);
}
.perfume-bottle .body{
  position:absolute;
  bottom:0;left:50%;
  transform:translateX(-50%);
  width:82%;
  height:74%;
  border-radius:28px 28px 36px 36px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(160deg, rgba(247,226,170,.62), rgba(105,68,29,.85));
  border:1px solid rgba(255,255,255,.28);
  box-shadow:inset 0 0 45px rgba(255,255,255,.08);
}
.perfume-bottle.large .body{border-radius:48px 48px 64px 64px}
.hero-card-info{
  position:absolute;
  right:34px;left:34px;bottom:30px;
  padding:22px;
  border-radius:28px;
  background:rgba(8,7,5,.58);
  border:1px solid var(--line);
  backdrop-filter:blur(18px);
  z-index:3;
}
.hero-card-info span{color:var(--gold-2);font-size:13px;font-weight:700}
.hero-card-info h2{margin:6px 0 4px;font-size:28px}
.hero-card-info p{margin:0;color:var(--muted);font-size:14px}

.section{padding:88px 0}
.intro-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:32px;
  background:rgba(255,255,255,.05);
  box-shadow:var(--shadow);
}
.intro-strip div{
  padding:18px 22px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
}
.intro-strip strong{display:block;color:var(--gold-2)}
.intro-strip span{display:block;color:var(--muted);font-size:14px}

.section-heading{text-align:center;max-width:720px;margin:0 auto 34px}
.section-heading h2{
  margin:16px 0 10px;
  font-size:clamp(28px, 4vw, 46px);
  letter-spacing:-1px;
}
.section-heading p{margin:0;color:var(--muted)}
.section-heading.light p{color:#dfd4c8}

.filter-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom:28px;
}
.filter-btn{
  border:1px solid var(--line);
  color:var(--text);
  background:rgba(255,255,255,.055);
  border-radius:999px;
  padding:10px 20px;
  cursor:pointer;
  transition:.2s ease;
}
.filter-btn:hover,.filter-btn.active{
  color:#130f09;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.product-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow:0 18px 44px rgba(0,0,0,.19);
  transition:.25s ease;
}
.product-card:hover{
  transform:translateY(-7px);
  border-color:rgba(215,168,79,.42);
}
.product-card.hide{display:none}
.product-badge{
  position:absolute;
  top:14px;right:14px;
  z-index:3;
  padding:6px 11px;
  border-radius:999px;
  color:#140f09;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  font-size:12px;
  font-weight:900;
}
.product-art{
  min-height:230px;
  display:grid;
  place-items:center;
  overflow:hidden;
  position:relative;
}
.product-art:before{
  content:"";
  position:absolute;
  width:220px;height:220px;border-radius:50%;
  filter:blur(8px);
  opacity:.4;
}
.product-art.gold{background:linear-gradient(145deg,#2b2114,#8b6124)}
.product-art.blue{background:linear-gradient(145deg,#08111f,#123b62)}
.product-art.amber{background:linear-gradient(145deg,#20130a,#9b6425)}
.product-art.red{background:linear-gradient(145deg,#260b0d,#7b1e25)}
.product-art.dark{background:linear-gradient(145deg,#080807,#2c241d)}
.product-art.violet{background:linear-gradient(145deg,#160d27,#633593)}
.product-art.pearl{background:linear-gradient(145deg,#24201b,#d6c3a3)}
.product-art.pink{background:linear-gradient(145deg,#2a111c,#c66b91)}
.product-info{padding:18px}
.product-info h3{margin:0 0 8px;font-size:20px;direction:ltr;text-align:right}
.product-info p{min-height:82px;margin:0;color:var(--muted);font-size:14px}
.product-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:18px 0;
}
.product-meta span{
  color:var(--gold-2);
  background:rgba(215,168,79,.10);
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
}
.product-meta strong{font-size:14px}
.add-cart{
  width:100%;
  min-height:44px;
  border:1px solid rgba(215,168,79,.28);
  border-radius:16px;
  color:var(--gold-2);
  background:rgba(215,168,79,.08);
  cursor:pointer;
  font-weight:800;
  transition:.2s ease;
}
.add-cart:hover{background:rgba(215,168,79,.18)}

.collections{
  background:
    radial-gradient(circle at 20% 0%, rgba(215,168,79,.22), transparent 34%),
    linear-gradient(180deg,#15110d,#0b0907);
  border-block:1px solid var(--line);
}
.collection-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.collection-card{
  display:block;
  padding:28px;
  min-height:230px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  transition:.25s ease;
}
.collection-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,.085);
}
.collection-card span{font-size:40px}
.collection-card h3{margin:18px 0 8px}
.collection-card p{margin:0;color:var(--muted);font-size:14px}

.why-us{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:center;
}
.why-content h2{
  font-size:clamp(28px, 4vw, 46px);
  margin:16px 0;
}
.why-content p{color:var(--muted)}
.why-list{
  display:grid;
  gap:14px;
}
.why-list div{
  padding:24px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}
.why-list strong{display:block;color:var(--gold-2);font-size:18px}
.why-list span{display:block;color:var(--muted);margin-top:5px}

.newsletter{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  padding:34px;
  margin-bottom:70px;
  border-radius:36px;
  border:1px solid rgba(215,168,79,.22);
  background:
    linear-gradient(135deg, rgba(215,168,79,.16), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.newsletter h2{margin:14px 0 8px;font-size:34px}
.newsletter p{color:var(--muted);margin:0}
.newsletter-form{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:10px;
}
.newsletter-form input{
  min-height:52px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 18px;
  outline:0;
  color:var(--text);
  background:rgba(0,0,0,.18);
}
.newsletter-form input::placeholder{color:#90867a}

.site-footer{
  padding:58px 0 28px;
  background:#070604;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr 1.1fr;
  gap:28px;
}
.footer-about p{color:var(--muted);max-width:430px}
.site-footer h4{margin:0 0 14px;color:var(--gold-2)}
.site-footer a:not(.brand){display:block;color:var(--muted);margin:8px 0}
.site-footer a:hover{color:var(--gold-2)}
.site-footer p{color:var(--muted);margin:8px 0}
.trust-boxes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.trust-placeholder{
  min-height:122px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:12px;
  border-radius:18px;
  border:1px dashed rgba(215,168,79,.45);
  background:rgba(215,168,79,.06);
}
.trust-placeholder span{display:block;color:var(--gold-2);font-weight:900}
.trust-placeholder small{display:block;color:var(--muted);font-size:11px}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-top:26px;
  margin-top:34px;
  border-top:1px solid var(--line);
}
.floating-cart{
  position:fixed;
  right:22px;
  bottom:22px;
  width:60px;height:60px;
  border:0;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#130f09;
  font-size:24px;
  box-shadow:0 18px 42px rgba(215,168,79,.28);
  cursor:pointer;
  z-index:20;
}
.floating-cart span{
  position:absolute;
  top:-7px;left:-7px;
  width:25px;height:25px;
  display:grid;place-items:center;
  border-radius:50%;
  color:var(--text);
  background:#b7192a;
  font-size:12px;
  font-weight:900;
}

@media (max-width: 1020px){
  .nav-links,.nav-cta{display:none}
  .menu-toggle{display:block}
  .nav-links.open{
    display:flex;
    position:absolute;
    top:82px;
    right:0;
    left:0;
    flex-direction:column;
    align-items:stretch;
    border-radius:24px;
    padding:14px;
    background:rgba(10,9,7,.92);
  }
  .nav-links.open a{text-align:center}
  .hero{grid-template-columns:1fr; padding-top:34px}
  .hero-card{min-height:460px}
  .product-grid,.collection-grid{grid-template-columns:repeat(2,1fr)}
  .why-us,.newsletter{grid-template-columns:1fr}
  .newsletter-form{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 640px){
  .container{width:min(100% - 22px, 1180px)}
  .navbar{padding:16px 0}
  .hero h1{letter-spacing:-1px}
  .hero-stats,.intro-strip,.product-grid,.collection-grid,.footer-grid,.trust-boxes{grid-template-columns:1fr}
  .intro-strip{padding:12px}
  .section{padding:58px 0}
  .hero-card{border-radius:28px}
  .product-art{min-height:205px}
  .newsletter{padding:24px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}
