
@font-face {
    font-family: 'yekan-bakh';
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.eot');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.ttf');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.woff');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.woff2');
}

@font-face {
    font-family: 'yekan-bakh-heavy';
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.eot');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-hevy.ttf');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.woff');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.woff2');
}

@font-face {
    font-family: 'yekan-bakh-light';
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.eot');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.ttf');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.woff');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.woff2');
}

@font-face {
    font-family: 'yekan-bakh-bold';
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.eot');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.ttf');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.woff');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.woff2');
}

:root{
  --bg: #0d0d0d;
  --bg-soft: #131313;
  --card: rgba(255,255,255,0.04);
  --card-strong: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.08);

  --text: #f7f4ee;
  --muted: rgba(247,244,238,0.72);

  --primary: #b8d14e;
  --primary-2: #b8d14e;

  --radius: 22px;
  --radius-sm: 16px;

  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --container: 1120px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "yekan-bakh", sans-serif;
  background:
radial-gradient(circle at top right, rgba(184,209,78,0.12), transparent 28%),
;
    
    
    
  color: var(--text);
  line-height: 1.9;
  padding-bottom: 84px;
}

a{
  text-decoration: none;
  color: inherit;
}

.container{
  width: min(100% - 28px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgb(63 89 40);
  border-bottom: 1px solid var(--line);
}

.nav{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 8px rgba(215,190,138,0.08);
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong{
  font-size: 1rem;
  font-weight: 700;
}

.brand-text small{
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-btn{
    
    padding: 7px 16px;
    border: 1px solid rgb(63 89 40);
    border-radius: 17px;
    background: rgb(184 209 78);
    font-size: 0.95rem;
    color: #3f5928;
    font-family: 'yekan-bakh-heavy';

}

/* Hero */
.hero{
  padding: 18px 0 2px;
}

.hero-inner{
  max-width: 760px;
}

.eyebrow{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h1{
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero h1 span{
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text{
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #181512;
  box-shadow: 0 12px 30px rgba(185,147,90,0.18);
}

.btn-secondary{
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.btn-large{
  min-height: 54px;
  padding: 0 24px;
}

/* Sections */
.section{
  padding: 28px 0;
}

.section-soft{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.section-head{
  margin-bottom: 18px;
}

.section-kicker{
  display: inline-block;
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.section-head h2,
.brand-box h2,
.shipping-box h2,
.cta-box h2{
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.5;
}

/* Features */
.feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.feature-card p{
  margin: 0;
  color: #f2eee7;
}

.highlight-box{
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215,190,138,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(215,190,138,0.18);
}

.highlight-box p{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Packaging */
.pack-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pack-item{
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  color: #f2eee7;
}

/* Brand / Shipping / CTA */
.brand-box,
.shipping-box,
.cta-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.brand-box p,
.shipping-box p{
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mobile CTA */
.mobile-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.mobile-cta a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #181512;
  font-weight: 700;
}


/* Mobile CTA */
.mobile-cta2{

}

.mobile-cta2 a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #181512;
  font-weight: 700;
}

/* Desktop */
@media (min-width: 768px){
  .feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .pack-list{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  body{
    padding-bottom: 0;
  }

  .mobile-cta{
    display: none;
  }

  .hero{
    padding: 110px 0 60px;
  }

  .feature-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}


.elegant-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.elegant-list li{
    position: relative;
    padding: 0px 10px;
    padding-right: 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 16px;
    color: rgba(247, 244, 238, 0.9);
}

.elegant-list li::before{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 7px rgba(215,190,138,0.10);
}




/* Premium Shipping Box */
.shipping-box--premium{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(184,209,78,0.18);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(184,209,78,0.14), transparent 55%),
    radial-gradient(700px 320px at 10% 110%, rgba(184,209,78,0.08), transparent 60%),
    rgba(255,255,255,0.03);
}

/* subtle top highlight line */
.shipping-box--premium::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(184,209,78,0.16), transparent 35%);
  opacity: 0.65;
}

/* inner spacing refinement */
.shipping-head{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.shipping-title{
  margin: 0;
  font-family: 'yekan-bakh-heavy';
  letter-spacing: -0.2px;
}

.shipping-sub{
  margin: 8px 0 0;
  color: rgba(247,244,238,0.70);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 56ch;
}

/* Premium list */
.elegant-list--premium{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
}

.elegant-list--premium li{
  position: relative;
  padding: 12px 14px;
  padding-right: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
  color: rgba(247, 244, 238, 0.92);
}

/* bullet */
.elegant-list--premium li::before{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;                 /* nicer than perfect center on multi-line items */
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), #d9f06a);
  box-shadow:
    0 0 0 7px rgba(184,209,78,0.10),
    0 12px 30px rgba(184,209,78,0.10);
}

/* divider hairline (optional, subtle) */
.elegant-list--premium li::after{
  content: "";
  position: absolute;
  left: 14px;
  right: 46px;
  bottom: -6px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  opacity: 0.6;
}
.elegant-list--premium li:last-child::after{ display:none; }

@media (max-width: 480px){
  .elegant-list--premium li{
    padding: 11px 12px;
    padding-right: 44px;
  }
}



.site-footer{
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(184,209,78,0.10), transparent 55%),
    rgba(255,255,255,0.015);
}

.footer-inner{
  padding: 22px 0 18px;
  display: grid;
  gap: 16px;
}

.footer-brand{
  display: grid;
  gap: 10px;
}

.footer-logo img{
  max-width: 140px;
  height: auto;
  display: block;
}

.footer-note{
  margin: 0;
  color: rgba(247,244,238,0.72);
  font-size: 0.95rem;
}

.footer-note a{
  color: rgba(184,209,78,0.95);
  border-bottom: 1px dashed rgba(184,209,78,0.35);
}

.footer-trust{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.trust-item{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
  border-radius: 18px;
  padding: 12px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-placeholder{
  color: rgba(247,244,238,0.55);
  font-size: 0.9rem;
}

/* اگر به جای placeholder تصویر گذاشتی: */
.trust-item img{
  max-width: 100%;
  max-height: 72px;
  height: auto;
  display: block;
}

.footer-copy{
  padding-top: 6px;
  color: rgba(247,244,238,0.55);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Desktop layout */
@media (min-width: 900px){
  .footer-inner{
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  .footer-copy{
    grid-column: 1 / -1;
  }
}
