.nt-hero {
    --g:   var(--main-color, #f59e0b);
    --gl:  #fbbf24;
    --gd:  #b45309;
    --bg:  #070604;
    --sf:  #120f08;
    --br:  rgba(245,158,11,.14);
    --brh: rgba(245,158,11,.5);
    --tx:  #f2ebd9;
    --txs: var(--main-text-color, #ccc);
    --txm: #7a6840;
    --ease: cubic-bezier(.4,0,.2,1);
    --font: var(--main-font-family,'IRANSans'),sans-serif;
  
    position: relative;
    overflow: hidden;
    background: var(--bg);
    font-family: var(--font);
    font-size: var(--main-font-size, 15px);
    direction: rtl;
    padding: 52px 20px 44px;
    text-align: center;
    border-bottom: 1px solid var(--br);
  }
  
  /* ── background glow ── */
  .nt-hero-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse 65% 50% at 50% 0%,
      rgba(245,158,11,.12) 0%, transparent 65%);
    pointer-events: none;
  }
  
  /* ── orbs ── */
  .nt-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: ntOrb 10s ease-in-out infinite alternate;
  }
  .nt-orb-1 {
    width: 280px; height: 280px;
    top: -130px; right: -90px;
    background: radial-gradient(circle, rgba(245,200,66,.08), transparent 70%);
  }
  .nt-orb-2 {
    width: 200px; height: 200px;
    bottom: -80px; left: -60px;
    background: radial-gradient(circle, rgba(180,83,9,.07), transparent 70%);
    animation-delay: -5s;
  }
  @keyframes ntOrb {
    from { transform: translate(0,0); }
    to   { transform: translate(12px,-12px); }
  }
  
  /* ── inner ── */
  .nt-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* ── badge ── */
  .nt-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245,158,11,.08);
    border: 1px solid var(--br);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11px;
    color: var(--gl);
    letter-spacing: .06em;
  }
  .nt-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 8px var(--g);
    animation: ntPulse 2s ease-in-out infinite;
  }
  @keyframes ntPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.35; transform:scale(.65); }
  }
  
  /* ── title ── */
  .nt-title {
    margin: 0;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .nt-title-pre {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 400;
    color: var(--txs);
    letter-spacing: .04em;
  }
  .nt-title-note {
    font-size: clamp(30px, 9vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gd), var(--gl), var(--g));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em;
  }
  
  /* ── note visual (rings) ── */
  .nt-note-visual {
    position: relative;
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1; /* above badge on mobile */
  }
  .nt-nv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245,158,11,.2);
  }
  .nt-ring-1 { width:56px;  height:56px;  animation: ntRingSpin 8s linear infinite; }
  .nt-ring-2 { width:68px;  height:68px;  animation: ntRingSpin 12s linear infinite reverse; border-color: rgba(245,158,11,.12); }
  .nt-ring-3 { width:80px;  height:80px;  animation: ntRingSpin 18s linear infinite; border-color: rgba(245,158,11,.07); }
  @keyframes ntRingSpin { to { transform: rotate(360deg); } }
  
  .nt-nv-core {
    width: 40px; height: 40px;
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
  }
  .nt-nv-core svg { width:18px; height:18px; }
  
  /* ── breadcrumb ── */
  .nt-bread {
    font-size: 12px;
    color: var(--txm);
    /* yoast output: #breadcrumbs > span > span > a + i.breadcrumb-ind + span.breadcrumb_last */
  }
  .nt-bread #breadcrumbs { display:inline-flex; align-items:center; flex-wrap:wrap; gap:4px 6px; }
  .nt-bread a { color: var(--txm); text-decoration:none; transition:color .18s; }
  .nt-bread a:hover { color: var(--g); }
  .nt-bread .breadcrumb_last { color: var(--g); font-weight:600; }
  
  /* replace yoast separator with a nice glyph */
  .nt-bread .breadcrumb-ind {
    display: inline-block;
    width: 14px; height: 14px;
    background: none;
    /* using CSS-only chevron via clip */
  }
  .nt-bread .breadcrumb-ind::before {
    content: '‹';
    color: var(--txm);
    font-style: normal;
    font-size: 14px;
    line-height: 1;
  }
  
  /* ══════ Desktop ══════ */
  @media (min-width: 600px) {
    .nt-hero { padding: 72px 40px 56px; }
  
    .nt-hero-inner {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      text-align: right;
      gap: 20px 32px;
    }
  
    /* visual left, text right */
    .nt-note-visual { order: 0; flex-shrink: 0; width:96px; height:96px; }
    .nt-ring-1 { width:66px;  height:66px; }
    .nt-ring-2 { width:80px;  height:80px; }
    .nt-ring-3 { width:96px;  height:96px; }
    .nt-nv-core { width:48px; height:48px; }
    .nt-nv-core svg { width:22px; height:22px; }
  
    .nt-title { align-items: flex-start; }
    .nt-badge { align-self: flex-start; }
  
    .nt-bread { width:100%; text-align:center; }
    .nt-title-pre { font-size: 16px; }
  }
  
  @media (min-width: 900px) {
    .nt-hero { padding: 80px 60px 64px; }
    .nt-hero-inner { gap: 24px 48px; }
  }


  /* ════════════════════════════ PERFUME GRID — Ultra Premium / Mobile-First */

.pf-grid {
    --g:    var(--main-color, #f59e0b);
    --gl:   #fcd34d;
    --gd:   #92400e;
    --bg:   #080704;
    --sf:   #110e07;
    --sf2:  #1a1508;
    --br:   rgba(245,158,11,.13);
    --brh:  rgba(245,158,11,.45);
    --tx:   #f0e6cc;
    --txs:  var(--main-text-color, #ccc);
    --txm:  #7a6840;
    --ease: cubic-bezier(.4,0,.2,1);
    --font: var(--main-font-family,'IRANSans'),sans-serif;
    --r:    14px;
  
    font-family: var(--font);
    font-size: var(--main-font-size,15px);
    direction: rtl;
  
    display: grid;
    grid-template-columns: 1fr 1fr;          /* 2 col mobile */
    gap: 12px;
    padding: 16px;
  }
  
  /* ── card ── */
  .pf-card {
    position: relative;
    border-radius: var(--r);
    background: var(--sf);
    border: 1px solid var(--br);
    overflow: hidden;
    /* staggered entrance */
    animation: pfIn .5s var(--ease) both;
    animation-delay: calc(var(--i) * 60ms);
    transition: border-color .25s, transform .25s var(--ease);
  }
  .pf-card:hover { border-color: var(--brh); transform: translateY(-4px); }
  .pf-card-link  { display:block; text-decoration:none; color:inherit; }
  
  /* entrance */
  @keyframes pfIn {
    from { opacity:0; transform:translateY(20px) scale(.97); }
    to   { opacity:1; transform:none; }
  }
  
  /* ── glow (hover) ── */
  .pf-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 70% 60% at 50% 0%,
      rgba(245,158,11,.12), transparent 65%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .pf-card:hover .pf-glow { opacity: 1; }
  
  /* ── image wrapper ── */
  .pf-img-wrap {
    position: relative;
    aspect-ratio: 3/4;      /* portrait — perfume bottle shape */
    overflow: hidden;
    background: var(--sf2);
  }
  
  .pf-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 40%,
      rgba(245,158,11,.07), transparent 70%);
  }
  
  .pf-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .45s var(--ease);
  }
  .pf-card:hover .pf-img { transform: scale(1.07) translateY(-3px); }
  
  /* shine sweep */
  .pf-img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
      transparent 35%, rgba(255,255,255,.06) 50%, transparent 65%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position .6s var(--ease);
  }
  .pf-card:hover .pf-img-shine { background-position: 200% 0; }
  
  /* ── country badge ── */
  .pf-country-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(10,8,4,.75);
    border: 1px solid var(--br);
    border-radius: 100px;
    padding: 3px 8px;
    font-size: 10px;
    color: var(--txm);
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(6px);
  }
  .pf-country-badge svg { width:11px; height:11px; }
  
  /* ── body ── */
  .pf-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .pf-brand {
    margin: 0;
    font-size: 11px;
    color: var(--txm);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .pf-brand svg { width:12px; height:12px; color: var(--g); flex-shrink:0; }
  
  .pf-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--tx);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .pf-cta {
    margin-top: 6px;
    font-size: 11px;
    color: var(--g);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: .8;
    transition: opacity .2s, gap .2s;
  }
  .pf-cta svg { width:14px; height:14px; transition: transform .2s; }
  .pf-card:hover .pf-cta { opacity:1; gap:7px; }
  .pf-card:hover .pf-cta svg { transform: translateX(-3px); }
  
  /* ════ Tablet (3 col) ════ */
  @media (min-width: 600px) {
    .pf-grid { grid-template-columns: repeat(3,1fr); gap:16px; padding:20px; }
  }
  
  /* ════ Desktop (4 col) ════ */
  @media (min-width: 960px) {
    .pf-grid { grid-template-columns: repeat(4,1fr); gap:20px; padding:28px; }
    .pf-title  { font-size:14px; }
    .pf-brand  { font-size:12px; }
    .pf-cta    { font-size:12px; }
  }
  
  /* ════ Wide (5 col) ════ */
  @media (min-width: 1400px) {
    .pf-grid { grid-template-columns: repeat(5,1fr); }
  }
  
  /* ════════ PAGINATION ════════ */
  .pf-pagination {
    --g:   var(--main-color, #f59e0b);
    --br:  rgba(245,158,11,.15);
    --sf:  #110e07;
    --tx:  #f0e6cc;
    --txm: #5a4e30;
    --font: var(--main-font-family,'IRANSans'),sans-serif;
  
    font-family: var(--font);
    direction: rtl;
    display: flex;
    justify-content: center;
    padding: 24px 16px 32px;
  }
  .pf-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }
  .pf-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--sf);
    border: 1px solid var(--br);
    color: var(--txm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
  }
  .pf-pagination .page-numbers svg { width:16px; height:16px; }
  .pf-pagination .page-numbers:hover:not(.current) {
    border-color: var(--g);
    color: var(--g);
    background: rgba(245,158,11,.08);
  }
  .pf-pagination .page-numbers.current {
    background: var(--g);
    border-color: var(--g);
    color: #0a0700;
    font-weight: 800;
    box-shadow: 0 0 16px rgba(245,158,11,.4);
  }
  .pf-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    color: var(--txm);
  }
  
  /* ════════ EMPTY STATE ════════ */
  .pf-empty {
    --g: var(--main-color, #f59e0b);
    --font: var(--main-font-family,'IRANSans'),sans-serif;
    font-family: var(--font);
    direction: rtl;
    text-align: center;
    padding: 64px 20px;
    color: rgba(245,158,11,.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .pf-empty svg { width:64px; height:64px; }
  .pf-empty p   { font-size:14px; color:#5a4e30; margin:0; }
  
  /* ══════════════════════════════════════════NOTES DESCRIPTION — Ultra Premium
   Mobile-First | Dark Gold Theme
══════════════════════════════════════════ */

.nd-wrap {
    --g:     #f59e0b;
    --gl:    #fcd34d;
    --gd:    #92400e;
    --bg:    #0d0a04;
    --sf:    #110e06;
    --sf2:   #1a1508;
    --br:    rgba(245,158,11,.15);
    --brh:   rgba(245,158,11,.4);
    --tx:    #f0e6cc;
    --txs:   #ccc;
    --txm:   #7a6840;
    --font:  'IRANSans', sans-serif;
    --r:     18px;
    --ease:  cubic-bezier(.4,0,.2,1);
  
    position: relative;
    font-family: var(--font);
    font-size: 15px;
    direction: rtl;
    margin: 24px 0;
  
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%,
        rgba(245,158,11,.06) 0%, transparent 65%),
      var(--sf);
    border: 1px solid var(--br);
    border-radius: var(--r);
    overflow: hidden;
    padding: 20px 18px 18px;
  
    animation: ndIn .6s var(--ease) both;
  }
  
  @keyframes ndIn {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:none; }
  }
  
  /* ── ambient orbs ── */
  .nd-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: .07;
  }
  .nd-orb--1 {
    width: 180px; height: 180px;
    background: var(--g);
    top: -60px; right: -40px;
  }
  .nd-orb--2 {
    width: 120px; height: 120px;
    background: var(--gl);
    bottom: -40px; left: -20px;
    opacity: .04;
  }
  
  /* ── header ── */
  .nd-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .nd-icon-ring {
    position: relative;
    width: 38px; height: 38px;
    flex-shrink: 0;display: flex;
    align-items: center;
    justify-content: center;
  }
  .nd-icon-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg, var(--g), var(--gd) 120deg, transparent 180deg
    );
    animation: ndSpin 6s linear infinite;
    opacity: .5;
  }
  @keyframes ndSpin { to { transform: rotate(360deg); } }
  .nd-icon { width:38px; height:38px; position:relative; z-index:1; }
  
  .nd-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--g);
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .nd-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, var(--g) 0%, transparent 100%);
    opacity: .25;
  }
  
  /* ── body ── */
  .nd-body {
    position: relative;
  }
  
  .nd-content {
    max-height: 88px;
    overflow: hidden;color: var(--txs);
    font-size: 14px;
    line-height: 1.85;
    transition: max-height .55s var(--ease);
  }
  .nd-content.is-open { max-height: 2000px; }
  
  /* inner typography */
  .nd-content p  { margin: 0 0 .75em; }
  .nd-content p:last-child { margin-bottom: 0; }
  .nd-content strong { color: var(--tx); }
  .nd-content em { color: var(--g); font-style: normal; }
  .nd-content a  { color: var(--g); text-decoration: underline dotted; }
  
  /* fade overlay */
  .nd-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: linear-gradient(to top, var(--sf), transparent);
    transition: opacity .4s;
    pointer-events: none;
  }
  .nd-fade.is-hidden { opacity: 0; pointer-events: none; }
  
  /* ── toggle button ── */
  .nd-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 9px 18px;
    background: transparent;
    border: 1px solid var(--br);
    border-radius: 100px;
    cursor: pointer;
    color: var(--g);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    transition: border-color .25s, color .25s;
    outline-offset: 3px;
  }
  .nd-toggle:hover  { border-color: var(--brh); }
  .nd-toggle:focus-visible { outline: 2px solid var(--g); }
  
  .nd-toggle-chevron svg {
    width: 16px; height: 16px;transition: transform .4s var(--ease);
  }
  .nd-toggle[aria-expanded="true"] .nd-toggle-chevron svg {
    transform: rotate(180deg);
  }
  
  /* glow on hover */
  .nd-toggle-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%,
      rgba(245,158,11,.12), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
  }
  .nd-toggle:hover .nd-toggle-glow { opacity: 1; }
  
  /* ══ Desktop ══ */
  @media (min-width: 768px) {
    .nd-wrap    { padding: 28px 28px 24px; margin: 32px 0; }
    .nd-content { font-size: 15px; max-height: 96px; }
    .nd-label   { font-size: 13px; }
  }
  

  /* ══════════════════════════════════SEASON INSIGHTS — Ultra Premium
   Mobile-First | IRANSans + Gold
══════════════════════════════════ */

.si-seasons {
    --bg:   #0d0a04;
    --sf:   #110e06;
    --sf2:  #181208;
    --g:    #f59e0b;
    --gl:   #fcd34d;
    --br:   rgba(245,158,11,.12);
    --brh:  rgba(245,158,11,.32);
    --tx:   #f0e6cc;
    --txs:  #a08858;
    --font: 'IRANSans', sans-serif;
    --r:    20px;
    --ease: cubic-bezier(.4,0,.2,1);
  
    position: relative;
    font-family: var(--font);
    direction: rtl;
    padding: 22px 18px;
    margin: 0;
  
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%,
        rgba(245,158,11,.07) 0%, transparent 70%),
      var(--sf);
    border: 1px solid var(--br);
    border-radius: var(--r);
    overflow: hidden;
  
    animation: siIn .55s var(--ease) both;
  }
  @keyframes siIn {
    from { opacity:0; transform:translateY(14px); }
    to   { opacity:1; transform:none; }
  }
  
  /* ambient blur orb */
  .si-seasons::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--g);
    filter: blur(80px);
    opacity: .04;
    top: -60px; right: -40px;
    pointer-events: none;
  }
  
  /* ── Header ── */
  .si-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .si-head-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;display: flex; align-items: center; justify-content: center;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.2);
    border-radius: 10px;
  }
  .si-head-icon svg { width: 18px; height: 18px; }
  
  .si-head-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--g);
    letter-spacing: .06em;
    margin: 0;
    white-space: nowrap;
  }
  
  .si-head-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, var(--br) 0%, transparent 100%);
  }
  
  /* ── List ── */
  .si-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* ── Item ── */
  .si-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--br);
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s;animation: siItemIn .5s var(--ease) calc(var(--si-i) * .1s) both;
  }
  @keyframes siItemIn {
    from { opacity:0; transform:translateX(18px); }
    to   { opacity:1; transform:none; }
  }
  .si-item:hover {
    border-color: var(--brh);
    background: rgba(255,255,255,.035);
  }
  
  /* corner glow on hover */
  .si-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 80px at 90% 50%, var(--si-glow), transparent 70%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
  }
  .si-item:hover::before { opacity: 1; }
  
  /* ── Icon ── */
  .si-item-icon {
    position: relative;
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  
  .si-emoji {
    font-size: 22px;
    line-height: 1;
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 6px var(--si-glow));
  }
  
  .si-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background: var(--si-grad) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: .45;
    animation: siRingSpin 8s linear infinite;
    animation-delay: calc(var(--si-i) * -2s);
  }
  @keyframes siRingSpin { to { transform: rotate(360deg); } }
  
  /* ── Body ── */
  .si-item-body { flex: 1; min-width: 0; }
  
  .si-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
  }
  
  .si-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--tx);
  }
  
  .si-pct-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--si-c);
    background: color-mix(in srgb, var(--si-c) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--si-c) 25%, transparent);
    padding: 1px 7px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-shadow: 0 0 8px var(--si-glow);
  }
  
  /* ── Progress Track ── */
  .si-track {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,.06);
    border-radius: 100px;
    overflow: hidden;
  }
  
  .si-fill {
    height: 100%;
    width: var(--si-pct);
    background: var(--si-grad);
    border-radius: 100px;
    animation: siFillIn .9s var(--ease) calc(var(--si-i) * .1s + .2s) both;
    box-shadow: 0 0 10px var(--si-glow);
  }
  @keyframes siFillIn {
    from { width: 0; }
    to   { width: var(--si-pct); }
  }
  
  /* shimmer sweep */
  .si-shimmer {
    position: absolute;
    top: 0; left: -40%;
    width: 40%; height: 100%;
    background: linear-gradient(90deg,
      transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
    border-radius: 100px;
    animation: siShimmer 2.5s var(--ease) calc(var(--si-i) * .15s + .8s) both;
  }
  @keyframes siShimmer {
    from { left: -40%; opacity: 0; }
    30%  { opacity: 1; }
    to   { left: 110%; opacity: 0; }
  }
  
  /* ══ Desktop ══ */
  @media (min-width: 640px) {
    .si-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
  }
  
  @media (min-width: 1024px) {
    .si-seasons { padding: 28px 26px; }
    .si-item    { padding: 16px; }
    .si-name    { font-size: 15px; }
    .si-emoji   { font-size: 24px; }
  }

  
  /* ══════════════════════════════════
   COMPANION NOTES — Ultra Premium
   Mobile-First | IRANSans + Gold
══════════════════════════════════ */

.cn-section {
    --g:    #f59e0b;
    --gl:   #fcd34d;
    --bg:   #0d0a04;
    --sf:   #111008;
    --br:   rgba(245,158,11,.12);
    --brh:  rgba(245,158,11,.35);
    --tx:   #f0e6cc;
    --txs:  #9a8060;
    --font: 'IRANSans', sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);

    position: relative;
    font-family: var(--font);
    direction: rtl;
    padding: 20px 16px;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245,158,11,.06) 0%, transparent 70%),
        var(--sf);
    border: 1px solid var(--br);
    border-radius: 20px;
    overflow: hidden;
    animation: cnIn .5s var(--ease) both;
}
@keyframes cnIn {
    from { opacity:0; transform:translateY(12px); }
    to   { opacity:1; transform:none; }
}

/* ambient orb */
.cn-section::before {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--g);
    filter: blur(70px);
    opacity: .04;
    top: -50px; left: -30px;
    pointer-events: none;
}

/* ── Header ── */
.cn-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.cn-head-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;display: flex; align-items: center; justify-content: center;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.2);
    border-radius: 10px;
}

.cn-head-text { display: flex; flex-direction: column; gap: 1px; }

.cn-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--g);
    letter-spacing: .05em;
    margin: 0;
    white-space: nowrap;
}

.cn-subtitle {
    font-size: 10px;
    color: var(--txs);
    margin: 0;
    letter-spacing: .04em;
}

.cn-head-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, var(--br), transparent);
}

/* ── List ── */
.cn-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Item animation ── */
.cn-item {
    animation: cnItemIn .45s var(--ease) calc(var(--cn-i) * .06s) both;
}
@keyframes cnItemIn {
    from { opacity:0; transform:scale(.88) translateY(6px); }
    to   { opacity:1; transform:none; }
}

/* ── Pill ── */
.cn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px 7px 10px;
    border-radius: 100px;
    background: rgba(245,158,11,.06);
    border: 1px solid var(--br);
    color: var(--tx);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s, color .25s, transform .2s;
    -webkit-tap-highlight-color: transparent;
}

/* shine sweep on hover */
.cn-pill::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transition: left .45s var(--ease);
    pointer-events: none;
}
.cn-pill:hover::before,
.cn-pill:focus-visible::before { left: 110%; }

.cn-pill:hover,
.cn-pill:focus-visible {
    border-color: var(--brh);
    background: rgba(245,158,11,.13);
    color: var(--gl);
    transform: translateY(-2px);outline: none;
    box-shadow: 0 4px 20px rgba(245,158,11,.15);
}

/* ── Dot ── */
.cn-pill-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 6px rgba(245,158,11,.6);
    flex-shrink: 0;transition: box-shadow .25s;
}
.cn-pill:hover .cn-pill-dot {
    box-shadow: 0 0 10px rgba(245,158,11,.9);
}

/* ── Name ── */
.cn-pill-name { line-height: 1.2; }

/* ── Arrow ── */
.cn-pill-arrow {
    display: flex; align-items: center;
    color: var(--txs);
    flex-shrink: 0;
    transition: color .25s, transform .25s;
}
.cn-pill:hover .cn-pill-arrow {
    color: var(--g);
    transform: translateX(-3px);
}

/* ══ Tablet+ ══ */
@media (min-width: 640px) {
    .cn-section  { padding: 24px 22px; }
    .cn-pill     { font-size: 14px; padding: 8px 15px 8px 12px; }
    .cn-pill-dot { width: 7px; height: 7px; }
}

@media (min-width: 1024px) {
    .cn-section { padding: 28px 26px; }
}

/* ══════════════════════════════════════════POPULAR PERFUMES — Ultra Premium
   Mobile-First | Dark Gold | IRANSans
══════════════════════════════════════════ */

.pp-section {
    --g:   #f59e0b;
    --gl:  #fcd34d;
    --bg:  #0d0a04;
    --sf:  #111008;
    --sf2: #161208;
    --br:  rgba(245,158,11,.12);
    --brh: rgba(245,158,11,.4);
    --tx:  #f0e6cc;
    --txs: #9a8060;
    --ease: cubic-bezier(.4,0,.2,1);
    --font: 'IRANSans', sans-serif;

    position: relative;
    font-family: var(--font);
    direction: rtl;
    padding: 20px 16px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,158,11,.07) 0%, transparent 65%),
        var(--sf);
    border: 1px solid var(--br);
    border-radius: 20px;
    overflow: hidden;
}

/* ambient orbs */
.pp-section::before,
.pp-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--g);
    filter: blur(80px);
    pointer-events: none;
}
.pp-section::before {
    width: 200px; height: 200px;
    opacity: .045;
    top: -60px; right: -40px;
}
.pp-section::after {
    width: 140px; height: 140px;
    opacity: .03;
    bottom: -40px; left: -20px;
}

/* ── Header ── */
.pp-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pp-head-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.22);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(245,158,11,.08);
}

.pp-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--g);
    letter-spacing: .05em;
    margin: 0;
    white-space: nowrap;
}
.pp-subtitle {
    font-size: 10px;
    color: var(--txs);
    margin: 0;
    letter-spacing: .04em;
}

.pp-head-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, var(--br), transparent);
}

.pp-count {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--g);
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 100px;
    padding: 2px 9px;
    letter-spacing: .04em;
}

/* ── Grid — mobile: 2 cols ── */
.pp-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}

/* ── Card ── */
.pp-card {
    animation: ppCardIn .5s var(--ease) calc(var(--pp-i) * .07s) both;
}
@keyframes ppCardIn {
    from { opacity:0; transform:translateY(16px) scale(.94); }
    to   { opacity:1; transform:none; }
}

.pp-card-link {
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    background: var(--sf2);
    border: 1px solid var(--br);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
}
.pp-card-link:hover,
.pp-card-link:focus-visible {
    border-color: var(--brh);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(245,158,11,.14), 0 0 0 1px rgba(245,158,11,.18);
    outline: none;
}

/* ── Rank badge ── */
.pp-rank {
    position: absolute;
    top: 8px; right: 8px;
    z-index: 2;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    border-radius: 50%;
    line-height: 1;
}
.pp-rank--0 { background: rgba(252,211,77,.18); color: #fcd34d; border: 1px solid rgba(252,211,77,.5); }
.pp-rank--1 { background: rgba(200,200,200,.1); color: #d4cdc4; border: 1px solid rgba(200,200,200,.3); }
.pp-rank--2 { background: rgba(180,140,80,.12); color: #c4a26a; border: 1px solid rgba(180,140,80,.3); }

/* ── Image wrap — 3/4 ratio ── */
.pp-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0d0a04;
}

.pp-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s var(--ease);
}
.pp-card-link:hover .pp-img-wrap img {
    transform: scale(1.06);
}

/* shine sweep */
.pp-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.1) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease);
    z-index: 1;
    pointer-events: none;
}
.pp-card-link:hover .pp-img-wrap::before {
    transform: translateX(100%);
}

/* bottom fade overlay */
.pp-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(13,10,4,.95) 0%, rgba(13,10,4,.5) 50%, transparent 100%);
    pointer-events: none;
}

.pp-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at center, rgba(245,158,11,.05) 0%, transparent 70%);
}

/* ── Info ── */
.pp-info {
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.pp-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--tx);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pp-brand {
    font-size: 10px;
    color: var(--txs);
    letter-spacing: .03em;
}

/* ── CTA (hover reveal) ── */
.pp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 10px 10px;
    padding: 7px;
    border-radius: 10px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.18);
    font-size: 11px;
    font-weight: 600;
    color: var(--g);
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s, transform .25s, background .25s;
}
.pp-card-link:hover .pp-cta,
.pp-card-link:focus-visible .pp-cta {
    opacity: 1;
    transform: none;
    background: rgba(245,158,11,.14);
}

/* ══ 3 cols @ 480px ══ */
@media (min-width: 480px) {
    .pp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ══ Tablet+ ══ */
@media (min-width: 640px) {
    .pp-section { padding: 24px 22px; }
    .pp-grid    { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .pp-name    { font-size: 13px; }
    .pp-brand   { font-size: 11px; }
    .pp-info    { padding: 12px 12px 10px; }
}

/* ══ Desktop ══ */
@media (min-width: 1024px) {
    .pp-section { padding: 28px 26px; }
    .pp-grid    { grid-template-columns: repeat(5, 1fr); gap: 18px; }
    .pp-title   { font-size: 14px; }
}


/* ══ NT HERO ══ */
[data-theme="light"] .nt-hero {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --br:  rgba(160,100,10,.14);
    --brh: rgba(160,100,10,.45);
    --tx:  #1a1208;
    --txs: #4a3a1a;
    --txm: #9a7c40;
  }
  [data-theme="light"] .nt-hero-glow {
    background: radial-gradient(ellipse 65% 50% at 50% 0%, rgba(200,140,20,.1) 0%, transparent 65%);
  }
  [data-theme="light"] .nt-nv-ring,
  [data-theme="light"] .nt-nv-core {
    border-color: rgba(160,100,10,.25);
    background: rgba(200,140,20,.07);
  }
  
  /* ══ PERFUME GRID ══ */
  [data-theme="light"] .pf-grid {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --sf2: #fef3d8;
    --br:  rgba(160,100,10,.13);
    --brh: rgba(160,100,10,.45);
    --tx:  #1a1208;
    --txs: #4a3a1a;
    --txm: #9a7c40;
  }
  [data-theme="light"] .pf-country-badge {
    background: rgba(255,248,236,.85);
    border-color: rgba(160,100,10,.2);
    color: #7a5c20;
  }
  
  /* ══ PAGINATION ══ */
  [data-theme="light"] .pf-pagination {
    --br:  rgba(160,100,10,.15);
    --sf:  #fff8ec;
    --tx:  #1a1208;
    --txm: #7a5c20;
  }
  [data-theme="light"] .pf-pagination .page-numbers.current {
    color: #fff8ec;
  }
  
  /* ══ EMPTY STATE ══ */
  [data-theme="light"] .pf-empty p { color: #9a7c40; }
  
  /* ══ NOTES DESCRIPTION ══ */
  [data-theme="light"] .nd-wrap {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --sf2: #fef3d8;
    --br:  rgba(160,100,10,.15);
    --brh: rgba(160,100,10,.4);
    --tx:  #1a1208;
    --txs: #4a3a1a;
    --txm: #9a7c40;background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,140,20,.07) 0%, transparent 65%),
      #fff8ec;
  }
  [data-theme="light"] .nd-fade {
    background: linear-gradient(to top, #fff8ec, transparent);
  }
  
  /* ══ SEASON INSIGHTS ══ */
  [data-theme="light"] .si-seasons {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --sf2: #fef3d8;
    --br:  rgba(160,100,10,.12);
    --brh: rgba(160,100,10,.32);
    --tx:  #1a1208;
    --txs: #7a5c20;
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,140,20,.07) 0%, transparent 70%),
      #fff8ec;
  }
  [data-theme="light"] .si-item {
    background: rgba(0,0,0,.02);
  }
  [data-theme="light"] .si-item:hover {
    background: rgba(200,140,20,.06);
  }
  [data-theme="light"] .si-track {
    background: rgba(0,0,0,.07);
  }
  
  /* ══ COMPANION NOTES ══ */
  [data-theme="light"] .cn-section {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --br:  rgba(160,100,10,.12);
    --brh: rgba(160,100,10,.35);
    --tx:  #1a1208;
    --txs: #7a5c20;
    background:
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200,140,20,.07) 0%, transparent 70%),
      #fff8ec;
  }
  [data-theme="light"] .cn-pill {
    background: rgba(200,140,20,.06);
    color: #1a1208;
  }
  [data-theme="light"] .cn-pill:hover,
  [data-theme="light"] .cn-pill:focus-visible {
    background: rgba(200,140,20,.14);
    box-shadow: 0 4px 20px rgba(160,100,10,.12);
  }
  
  /* ══ POPULAR PERFUMES ══ */
  [data-theme="light"] .pp-section {
    --bg:  #fdf8f0;
    --sf:  #fff8ec;
    --sf2: #fef3d8;
    --br:  rgba(160,100,10,.12);
    --brh: rgba(160,100,10,.4);
    --tx:  #1a1208;
    --txs: #7a5c20;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,140,20,.07) 0%, transparent 65%),
      #fff8ec;
  }
  [data-theme="light"] .pp-img-wrap {
    background: #fef3d8;
  }
  [data-theme="light"] .pp-img-overlay {
    background: linear-gradient(to top, rgba(253,248,240,.95) 0%, rgba(253,248,240,.5) 50%, transparent 100%);
  }
  [data-theme="light"] .pp-img-placeholder {
    background: radial-gradient(ellipse at center, rgba(200,140,20,.06) 0%, transparent 70%);
  }
  [data-theme="light"] .pp-card-link:hover,
  [data-theme="light"] .pp-card-link:focus-visible {
    box-shadow: 0 12px 36px rgba(160,100,10,.12), 0 0 0 1px rgba(160,100,10,.18);
  }
  