@font-face {
  font-family: vazirmatnfont; 
  src: url(fonts/Vazirmatn-Bold.ttf); 
}

 :root{
     --bg: #16110d;
     --bg-soft: #1c1611;
     --surface: #221a14;
     --surface-2: #2a2018;
     --line: #3a2f24;
     --brass: #c6923d;
     --brass-lt: #e8c27a;
     --emerald: #35513f;
     --emerald-lt:#4c6b53;
     --ember: #ff8a3d;
     --ink: #f1e9dc;
     --ink-dim: #cbc0b0;
     --ink-mute: #8f8474;
     --font-display: vazirmatnfont;
     --font-body: vazirmatnfont;
     --radius-sm: 10px;
     --radius-md: 18px;
     --radius-lg: 28px;
     --shadow-1: 0 10px 30px rgba(0,0,0,.35);
     --shadow-2: 0 20px 60px rgba(0,0,0,.45);
     --ease: cubic-bezier(.22,1,.36,1);
     --navbar: rgba(22,17,13,.9);
     --notice-card-text: rgba(243,236,225,.68);
     --brand-text: inherit;
     --brand-top-text: inherit;
     --footer: #0f0b08;
     
}
 *,*::before,*::after{
     box-sizing:border-box;
}
 html{
     scroll-behavior:smooth;
     --bg: #060b14;
     --bg-secondary: #09111f;
     --surface: rgba(14, 24, 41, 0.88);
     --surface-solid: #0e1829;
     --surface-secondary: #131f33;
     --surface-hover: #18263c;
     --surface-soft: rgba(255, 255, 255, 0.035);
     --primary: #3b82f6;
     --primary-hover: #2563eb;
     --primary-light: #60a5fa;
     --primary-soft: rgba(59, 130, 246, 0.14);
     --accent: #06b6d4;
     --accent-soft: rgba(6, 182, 212, 0.14);
     --success: #10b981;
     --success-soft: rgba(16, 185, 129, 0.13);
     --warning: #f59e0b;
     --warning-hover: #d97706;
     --warning-soft: rgba(245, 158, 11, 0.14);
     --danger: #ef4444;
     --danger-hover: #dc2626;
     --danger-soft: rgba(239, 68, 68, 0.13);
     --text-main: #f4f7fb;
     --text-secondary: #c6d1df;
     --text-muted: #8998ab;
     --text-inverse: #ffffff;
     --border: rgba(148, 163, 184, 0.15);
     --border-strong: rgba(148, 163, 184, 0.27);
     --input-bg: rgba(5, 12, 23, 0.76);
     --header-bg: rgba(6, 11, 20, 0.78);
     --modal-overlay: rgba(1, 5, 12, 0.82);
     --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.2);
     --shadow-md: 0 20px 55px rgba(0, 0, 0, 0.35);
     --shadow-lg: 0 35px 100px rgba(0, 0, 0, 0.58);
     --page-gradient: radial-gradient(circle at 13% 5%, rgba(37, 99, 235, 0.16), transparent 34%), radial-gradient(circle at 88% 18%, rgba(6, 182, 212, 0.1), transparent 31%), radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.06), transparent 35%), linear-gradient(145deg, #060b14 0%, #09111f 46%, #07101d 100%);
     --grid-color: rgba(148, 163, 184, 0.035);
     --scroll-track: #070d17;
     --scroll-thumb: #24344d;
}
 body{
     margin:0;
     background:var(--bg);
     color:var(--ink);
     font-family:var(--font-body);
     font-optical-sizing:auto;
     line-height:1.75;
     -webkit-font-smoothing:antialiased;
     overflow-x:hidden;
}
 img,svg{
     display:block;
     max-width:100%;
}
 a{
     color:inherit;
     text-decoration:none;
}
 ul{
     list-style:none;
     margin:0;
     padding:0;
}
 button,input{
     font-family:inherit;
}
 :focus-visible{
     outline:2px solid var(--brass-lt);
     outline-offset:3px;
     border-radius:4px;
}
 .wrap{
     width:100%;
     max-width:1280px;
     margin-inline:auto;
     padding-inline:24px;
}
 h1,h2,h3{
     font-family:var(--font-display);
     font-weight:700;
     margin:0;
     color:var(--ink);
}
 p{
     margin:0;
     color:var(--ink-dim);
}
 .eyebrow{
     display:inline-flex;
     align-items:center;
     gap:8px;
     font-size:.82rem;
     color:var(--brass-lt);
     letter-spacing:.02em;
     margin-bottom:10px;
}
 .eyebrow::before{
     content:"";
     width:22px;
     height:1px;
     background:var(--brass-lt);
}
 .btn{
     display:inline-flex;
     align-items:center;
     justify-content:center;
     gap:8px;
     padding:15px 30px;
     border-radius:999px;
     font-size:.98rem;
     font-weight:600;
     border:1px solid transparent;
     cursor:pointer;
     position:relative;
     overflow:hidden;
     transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
     isolation:isolate;
}
 .btn::after{
     content:"";
     position:absolute;
     inset:0;
     background:linear-gradient(100deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
     transform:translateX(-120%);
     transition:transform .6s var(--ease);
     z-index:1;
}
 .btn:hover::after{
     transform:translateX(120%);
}
 .btn--primary{
     background:linear-gradient(160deg, var(--brass-lt), var(--brass));
     color:#1c1610;
     box-shadow:0 10px 25px -8px rgba(198,146,61,.55);
}
 .btn--primary:hover{
     transform:translateY(-3px);
     box-shadow:0 16px 34px -8px rgba(198,146,61,.7);
}
 .btn--outline{
     background:transparent;
     border-color:var(--brass);
     color:var(--brass-lt);
}
 .btn--outline:hover{
     background:rgba(198,146,61,.1);
     transform:translateY(-3px);
}
 .btn--ghost{
     background:transparent;
     color:var(--ink-mute);
     border-color:var(--line);
}
 .btn--ghost:hover{
     color:var(--ink);
     border-color:var(--ink-mute);
}
 .btn--sm{
     padding:9px 16px;
     font-size:.82rem;
}
 .age-gate{
     position:fixed;
     inset:0;
     z-index:200;
     display:flex;
     align-items:center;
     justify-content:center;
     padding:20px;
     transition:opacity .5s var(--ease), visibility .5s;
}
 .age-gate.is-hidden{
     opacity:0;
     visibility:hidden;
     pointer-events:none;
}
 .age-gate__backdrop{
     position:absolute;
     inset:0;
     background:rgba(10,8,6,.82);
     backdrop-filter:blur(6px);
}
 .age-gate__card{
     position:relative;
     max-width:440px;
     width:100%;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-lg);
     padding:36px 30px;
     text-align:center;
     box-shadow:var(--shadow-2);
     animation:gate-in .6s var(--ease);
}
 @keyframes gate-in{
     from{
         opacity:0;
         transform:translateY(20px) scale(.96);
    }
     to{
         opacity:1;
         transform:none;
    }
}
 .age-gate__badge{
     display:inline-flex;
     align-items:center;
     justify-content:center;
     width:56px;
     height:56px;
     border-radius:50%;
     background:linear-gradient(160deg, var(--brass-lt), var(--brass));
     color:#1c1610;
     font-weight:800;
     font-size:1.1rem;
     margin-bottom:14px;
}
 .age-gate__card h2{
     font-size:1.3rem;
     margin-bottom:10px;
}
 .age-gate__card p{
     font-size:.92rem;
     margin-bottom:22px;
}
 .age-gate__actions{
     display:flex;
     flex-direction:column;
     gap:10px;
}
 .site-header{
     position:sticky;
     top:0;
     z-index:100;
}
 .topbar{
     background: var(--navbar);
     border-bottom:1px solid var(--line);
     font-size:.82rem;
}
 .topbar__inner{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:20px;
     height:42px;
}
 .topbar__mail{
     display:flex;
     align-items:center;
     gap:8px;
     color:var(--ink-mute);
     direction:ltr;
     white-space:nowrap;
}
 .topbar__mail:hover{
     color:var(--brass-lt);
}
 .topbar__search{
     flex:1;
     max-width:340px;
     display:flex;
     align-items:center;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:999px;
     padding:0 6px;
}
 .topbar__search input{
     flex:1;
     background:transparent;
     border:0;
     color:var(--ink);
     padding:7px 10px;
     font-size:.85rem;
}
 .topbar__search input::placeholder{
     color:var(--ink-mute);
}
 .topbar__search button{
     background:transparent;
     border:0;
     color:var(--ink-mute);
     cursor:pointer;
     display:flex;
     padding:6px;
}
 .topbar__search button:hover{
     color:var(--brass-lt);
}
 .topbar__social{
     display:flex;
     gap:10px;
}
 .topbar__social a{
     width:28px;
     height:28px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface);
     color:var(--ink-mute);
     transition:background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
 .topbar__social a:hover{
     background:var(--brass);
     color:#1c1610;
     transform:translateY(-2px);
}
 .navbar{
     background: var(--navbar);
     backdrop-filter:blur(10px);
     border-bottom:1px solid transparent;
     transition:border-color .3s, box-shadow .3s, background .3s;
}
 .site-header.is-scrolled .navbar{
     border-color:var(--line);
     box-shadow:0 8px 24px rgba(0,0,0,.35);
     background: var(--navbar);
}
 .navbar__inner{
     display:flex;
     align-items:center;
     gap:1px;
     height:78px;
}
 .brand{
     display:flex;
     align-items:center;
     gap:10px;
     color: var(--brand-text);
}
 .brandtop{
     display:flex;
     align-items:center;
     gap:10px;
     color: var(--brand-top-text);
}
 .brand__mark{
     color:var(--brass-lt);
     display:flex;
}
 .brand__text{
     font-family:var(--font-display);
     font-size:1.5rem;
     line-height:1;
     display:flex;
     flex-direction:column;
}
 .brand__text em{
     font-style:normal;
     font-family:var(--font-body);
     font-size:.6rem;
     letter-spacing:.3em;
     color:var(--ink-mute);
}
 .nav-menu{
     flex:1;
}
 .nav-menu > ul{
     display:flex;
     align-items:center;
     gap:6px;
     justify-content:center;
}
 .nav-menu > ul > li > a{
     display:flex;
     align-items:center;
     gap:5px;
     padding:10px 14px;
     font-size:.94rem;
     color:var(--ink-dim);
     position:relative;
}
 .nav-menu > ul > li > a::after{
     content:"";
     position:absolute;
     right:14px;
     left:14px;
     bottom:4px;
     height:2px;
     background:var(--brass-lt);
     transform:scaleX(0);
     transform-origin:center;
     transition:transform .35s var(--ease);
}
 .nav-menu > ul > li > a:hover, .nav-menu > ul > li > a.active{
     color:var(--ink);
     
}
 .nav-menu > ul > li > a:hover::after, .nav-menu > ul > li > a.active::after{
     transform:scaleX(1);
}
 .has-drop{
     position:relative;
}
 .dropdown{
     position:absolute;
     top:100%;
     right:0;
     min-width:210px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-sm);
     padding:8px;
     box-shadow:var(--shadow-1);
     opacity:0;
     visibility:hidden;
     transform:translateY(8px);
     transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
 .has-drop:hover .dropdown, .has-drop:focus-within .dropdown{
     opacity:1;
     visibility:visible;
     transform:none;
}
 .dropdown li a{
     display:block;
     padding:9px 14px;
     border-radius:8px;
     font-size:.88rem;
     color:var(--ink-dim);
}
 .dropdown li a:hover{
     background:var(--surface-2);
     color:var(--brass-lt);
     
}
 .navbar__actions{
     display:flex;
     align-items:center;
     gap:1px;
}
 .chip{
     font-size:.72rem;
     font-weight:700;
     padding:6px 11px;
     border-radius:999px;
}
 .chip--age{
     background:rgba(255,138,61,.15);
     color:var(--ember);
     border:1px solid rgba(255,138,61,.4);
}
 .icon-btn{
     position:relative;
     width:38px;
     height:38px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     color:var(--ink-dim);
     background:var(--surface);
     border:1px solid var(--line);
     transition:color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
 .icon-btn:hover{
     color:var(--brass-lt);
     border-color:var(--brass);
     transform:translateY(-2px);
}
 .icon-btn__badge{
     position:absolute;
     top:-4px;
     left:-4px;
     width:17px;
     height:17px;
     border-radius:50%;
     background:var(--ember);
     color:#1c1610;
     font-size:.62rem;
     font-weight:800;
     display:flex;
     align-items:center;
     justify-content:center;
}
 .nav-toggle{
     display:none;
     flex-direction:column;
     justify-content:center;
     gap:5px;
     width:38px;
     height:38px;
     background:none;
     border:0;
     cursor:pointer;
}
 .nav-toggle span{
     display:block;
     height:2px;
     background:var(--ink);
     border-radius:2px;
     transition:transform .35s var(--ease), opacity .35s var(--ease);
}
 .nav-toggle.is-open span:nth-child(1){
     transform:translateY(7px) rotate(45deg);
}
 .nav-toggle.is-open span:nth-child(2){
     opacity:0;
}
 .nav-toggle.is-open span:nth-child(3){
     transform:translateY(-7px) rotate(-45deg);
}
 .hero{
     position:relative;
     padding:88px 0 60px;
     overflow:hidden;
     background: radial-gradient(ellipse 60% 50% at 80% 0%, rgba(198,146,61,.14), transparent 60%), radial-gradient(ellipse 50% 40% at 10% 100%, rgba(53,81,63,.28), transparent 60%), var(--bg);
}
 .hero__leaves{
     position:absolute;
     top:0;
     bottom:0;
     width:220px;
     background-repeat:repeat-y;
     opacity:.5;
     z-index:0;
}
 .hero__leaves--right{
     right:0%;
     background-image: radial-gradient(circle at 30% 20%, var(--emerald) 0 40px, transparent 41px), radial-gradient(circle at 70% 60%, var(--emerald-lt) 0 30px, transparent 31px);
     mask-image:linear-gradient(to left, black, transparent);
}
 .hero__leaves--left{
     left:0%;
     background-image: radial-gradient(circle at 70% 30%, var(--emerald) 0 36px, transparent 37px), radial-gradient(circle at 30% 75%, var(--emerald-lt) 0 26px, transparent 27px);
     mask-image:linear-gradient(to right, black, transparent);
}
 .hero__inner{
     position:relative;
     z-index:1;
     display:grid;
     grid-template-columns:1.1fr .9fr;
     align-items:center;
     gap:40px;
}
 .hero__text h1{
     font-size:clamp(2.2rem, 5vw, 3.6rem);
     line-height:1.25;
     margin:6px 0 20px;
}
 .hero__text h1 span{
     color:var(--brass-lt);
}
 .hero__text p{
     max-width:480px;
     font-size:1.05rem;
     margin-bottom:30px;
}
 .hero__cta{
     display:flex;
     flex-wrap:wrap;
     gap:14px;
     margin-bottom:40px;
}
 .hero__stats{
     display:flex;
     gap:34px;
}
 .hero__stats li{
     display:flex;
     flex-direction:column;
}
 .hero__stats strong{
     font-family:var(--font-display);
     font-size:1.5rem;
     color:var(--brass-lt);
}
 .hero__stats span{
     font-size:.8rem;
     color:var(--ink-mute);
}
 .hero__art{
     position:relative;
     display:flex;
     justify-content:center;
}
 .hookah-illustration{
     width:min(100%, 340px);
     filter:drop-shadow(0 30px 40px rgba(0,0,0,.5));
}
 .ember{
     animation:ember-pulse 2.4s ease-in-out infinite;
     transform-origin:118px 146px;
}
 @keyframes ember-pulse{
     0%,100%{
         opacity:.55;
         transform:scale(1);
    }
     50%{
         opacity:1;
         transform:scale(1.25);
    }
}
 .smoke-path{
     animation:rise 6s ease-in-out infinite;
}
 .s1{
     animation-delay:0s;
}
 .s2{
     animation-delay:1.4s;
}
 .s3{
     animation-delay:2.8s;
}
 @keyframes rise{
     0%{
         opacity:0;
         transform:translateY(20px) scale(.9);
    }
     15%{
         opacity:.9;
    }
     85%{
         opacity:.15;
    }
     100%{
         opacity:0;
         transform:translateY(-40px) scale(1.15);
    }
}
 .scroll-cue{
     position:absolute;
     bottom:18px;
     left:50%;
     transform:translateX(-50%);
     width:26px;
     height:42px;
     border:2px solid var(--ink-mute);
     border-radius:20px;
     display:flex;
     justify-content:center;
     padding-top:7px;
}
 .scroll-cue span{
     width:4px;
     height:8px;
     border-radius:3px;
     background:var(--brass-lt);
     animation:cue 1.8s infinite;
}
 @keyframes cue{
     0%{
         opacity:1;
         transform:translateY(0);
    }
     100%{
         opacity:0;
         transform:translateY(14px);
    }
}
.reveal{
  opacity:0;
  transform:translateY(40px) scale(.96);
  filter:blur(4px);
  transition:opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1), filter .9s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  filter:blur(0);
}
 .trust{
     padding:50px 0;
     border-bottom:1px solid var(--line);
}
 .trust__grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:24px;
}
 .trust__item{
     text-align:center;
     padding:20px;
     border-radius:var(--radius-md);
     transition:background .3s var(--ease), transform .3s var(--ease);
}
 .trust__item:hover{
     background:var(--surface);
     transform:translateY(-4px);
}
 .trust__item svg{
     margin:0 auto 14px;
     color:var(--brass-lt);
}
 .trust__item h3{
     font-size:1rem;
     margin-bottom:6px;
}
 .trust__item p{
     font-size:.84rem;
}
 .section-head{
     margin-bottom:44px;
}
 .section-head h2{
     font-size:clamp(1.6rem, 3vw, 2.3rem);
     font-family: var(--font-display);
}
 .section-head--row{
     display:flex;
     justify-content:space-between;
     align-items:flex-end;
     gap:20px;
}
 .section-head.centered{
     text-align:center;
}
 .section-head.centered .eyebrow{
     display:flex;
     justify-content:center;
}
 .link-more{
     color:var(--brass-lt);
     font-size:.9rem;
     white-space:nowrap;
     transition:transform .3s var(--ease);
     display:inline-block;
}
 .link-more:hover{
     transform:translateX(-4px);
}
 .categories{
     padding:90px 0;
}
.certificates{
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
 .categories__grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:22px;
}
 .cat-card{
     display:flex;
     flex-direction:column;
     gap:6px;
     padding:30px 24px;
     border-radius:var(--radius-md);
     background:var(--surface);
     border:1px solid var(--line);
     transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
 .cat-card:hover{
     transform:translateY(-8px);
     border-color:var(--brass);
     box-shadow:var(--shadow-1);
}
 .cat-card__icon{
     width:56px;
     height:56px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:var(--brass-lt);
     margin-bottom:12px;
     transition:transform .4s var(--ease);
}
 .cat-card:hover .cat-card__icon{
     transform:rotate(-8deg) scale(1.08);
}
 .cat-card h3{
     font-size:1.08rem;
}
 .cat-card p{
     font-size:.86rem;
}
 .cat-card__link{
     margin-top:10px;
     font-size:.84rem;
     color:var(--brass-lt);
}
 .products{
     padding:70px 0 100px;
}
 .products__grid{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:22px;
}
 .product-card{
     position:relative;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:22px;
     display:flex;
     flex-direction:column;
     gap:8px;
     transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
 .product-card:hover{
     transform:translateY(-8px);
     box-shadow:var(--shadow-1);
     border-color:var(--brass);
}
 .product-card__tag{
     position:absolute;
     top:16px;
     right:16px;
     z-index:1;
     background:var(--ember);
     color:#1c1610;
     font-size:.7rem;
     font-weight:800;
     padding:5px 10px;
     border-radius:999px;
}
 .product-card__tag--new{
     background:var(--emerald-lt);
     color:#eefaf1;
}
 .product-card__like{
     position:absolute;
     top:14px;
     left:14px;
     z-index:1;
     width:32px;
     height:32px;
     border-radius:50%;
     border:1px solid var(--line);
     background:rgba(22,17,13,.6);
     color:var(--ink-mute);
     display:flex;
     align-items:center;
     justify-content:center;
     cursor:pointer;
     transition:color .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
 .product-card__like:hover{
     transform:scale(1.1);
}
 .product-card__like.is-active{
     color:var(--ember);
     border-color:var(--ember);
}
 .product-card__like.is-active svg path{
     fill:var(--ember);
}
 .product-card__figure{
     height:150px;
     border-radius:var(--radius-sm);
     background:linear-gradient(160deg, var(--surface-2), var(--bg-soft));
     display:flex;
     align-items:center;
     justify-content:center;
     margin-bottom:6px;
     transition:transform .4s var(--ease);
}
.product-card__figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}
 .product-card:hover .product-card__figure{
     transform:scale(1.03);
}
 .product-card__cat{
     font-size:.74rem;
     color:var(--ink-mute);
     text-transform:uppercase;
     letter-spacing:.04em;
}
 .product-card h3{
     font-size:1rem;
     font-family:var(--font-body);
     font-weight:600;
}
 .product-card__foot{
     display:flex;
     align-items:center;
     justify-content:space-between;
     margin-top:auto;
     padding-top:10px;
}
 .product-card__price{
     font-weight:700;
     color:var(--brass-lt);
}
 .product-card__price small{
     color:var(--ink-mute);
     font-weight:400;
     font-size:.72rem;
}
 .story{
     padding:90px 0;
     background:var(--bg-soft);
     border-top:1px solid var(--line);
     border-bottom:1px solid var(--line);
}
 .story__inner{
     display:grid;
     grid-template-columns:.8fr 1.2fr;
     gap:60px;
     align-items:center;
}
 .story__art{
     aspect-ratio:1/1;
     max-width:320px;
}
 .story__text h2{
     font-size:clamp(1.6rem,3vw,2.2rem);
     margin-bottom:18px;
}
 .story__text p{
     margin-bottom:20px;
}
 .story__list{
     display:flex;
     flex-direction:column;
     gap:10px;
     margin-bottom:28px;
}
 .story__list li{
     position:relative;
     padding-right:24px;
     font-size:.94rem;
     color:var(--ink-dim);
}
 .story__list li::before{
     content:"✦";
     position:absolute;
     right:0;
     color:var(--brass-lt);
     font-size:.8rem;
     top:3px;
}
 .articles{
     padding:90px 0;
}
 .articles__grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:22px;
}
 .article-card{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px;
     transition:transform .4s var(--ease), border-color .4s var(--ease);
}
 .article-card:hover{
     transform:translateY(-6px);
     border-color:var(--brass);
}
 .article-card__cat{
     display:inline-block;
     font-size:.72rem;
     color:var(--emerald-lt);
     background:rgba(76,107,83,.18);
     padding:4px 10px;
     border-radius:999px;
     margin-bottom:14px;
}
 .article-card h3{
     font-size:1.05rem;
     font-family:var(--font-body);
     font-weight:700;
     margin-bottom:10px;
}
 .article-card p{
     font-size:.88rem;
     margin-bottom:18px;
}
 .article-card__meta{
     display:flex;
     justify-content:space-between;
     font-size:.8rem;
     color:var(--ink-mute);
     border-top:1px solid var(--line);
     padding-top:14px;
}
 .article-card__meta a{
     color:var(--brass-lt);
}
 .testimonials{
     padding:90px 0;
     background:var(--bg-soft);
     border-top:1px solid var(--line);
     border-bottom:1px solid var(--line);
}
 .testi-slider{
     max-width:680px;
     margin:0 auto;
     text-align:center;
}
 .testi-slider__track{
     position:relative;
     min-height:170px;
}
 .testi-card{
     position:absolute;
     inset:0;
     margin:0;
     opacity:0;
     transform:translateY(10px);
     transition:opacity .5s var(--ease), transform .5s var(--ease);
     pointer-events:none;
}
 .testi-card.is-active{
     opacity:1;
     transform:none;
     pointer-events:auto;
}
 .testi-card__stars{
     color:var(--brass-lt);
     letter-spacing:4px;
     margin-bottom:14px;
}
 .testi-card p{
     font-size:1.15rem;
     color:var(--ink);
     margin-bottom:16px;
}
 .testi-card cite{
     font-style:normal;
     color:var(--ink-mute);
     font-size:.88rem;
}
 .testi-slider__dots{
     display:flex;
     justify-content:center;
     gap:8px;
     margin-top:20px;
}
 .testi-slider__dots button{
     width:9px;
     height:9px;
     border-radius:50%;
     border:0;
     background:var(--line);
     cursor:pointer;
     transition:background .3s var(--ease), transform .3s var(--ease);
}
 .testi-slider__dots button.is-active{
     background:var(--brass-lt);
     transform:scale(1.3);
}
 .newsletter{
     padding:70px 0;
}
 .newsletter__inner{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:30px;
     background:linear-gradient(120deg, var(--surface), var(--surface-2));
     border:1px solid var(--line);
     border-radius:var(--radius-lg);
     padding:44px 46px;
     flex-wrap:wrap;
}
 .newsletter__inner h2{
     font-size:clamp(1.3rem,2.4vw,1.7rem);
     margin-bottom:8px;
}
 .newsletter__form{
     display:flex;
     gap:10px;
     flex-wrap:wrap;
}
 .newsletter__form input{
     background:var(--bg-soft);
     border:1px solid var(--line);
     color:var(--ink);
     padding:14px 18px;
     border-radius:999px;
     min-width:240px;
}
 .newsletter__form input::placeholder{
     color:var(--ink-mute);
}
 .site-footer{
     background:var(--footer);
     padding:70px 0 0;
     border-top:1px solid var(--line);
}
 .footer__grid{
     display:grid;
     grid-template-columns:1.4fr 1fr 1fr 1fr;
     gap:40px;
     padding-bottom:50px;
}
 .footer__brand p{
     margin:14px 0 18px;
     font-size:.9rem;
     max-width:280px;
}
 .footer__social{
     display:flex;
     gap:10px;
}
 .footer__social a{
     width:34px;
     height:34px;
     border-radius:50%;
     background:var(--surface);
     display:flex;
     align-items:center;
     justify-content:center;
     color:var(--ink-mute);
     transition:color .3s, background .3s, transform .3s;
}
 .footer__social a:hover{
     background:var(--brass);
     color:#1c1610;
     transform:translateY(-2px);
}
 .footer__col h4{
     font-family:var(--font-body);
     font-size:.95rem;
     margin-bottom:18px;
     color:var(--ink);
}
 .footer__col ul{
     display:flex;
     flex-direction:column;
     gap:11px;
}
 .footer__col a{
     font-size:.88rem;
     color:var(--ink-mute);
     transition:color .3s;
}
 .footer__col a:hover{
     color:var(--brass-lt);
}
 .footer__bottom{
     display:flex;
     justify-content:space-between;
     align-items:center;
     flex-wrap:wrap;
     gap:10px;
     border-top:1px solid var(--line);
     padding:22px 24px;
     font-size:.8rem;
     color:var(--ink-mute);
}
 .back-top{
     position:fixed;
     bottom:26px;
     right:26px;
     z-index:90;
     width:46px;
     height:46px;
     border-radius:50%;
     background:var(--brass);
     color:#1c1610;
     border:0;
     cursor:pointer;
     display:flex;
     align-items:center;
     justify-content:center;
     box-shadow:var(--shadow-1);
     opacity:0;
     visibility:hidden;
     transform:translateY(10px);
     transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
 .back-top.is-visible{
     opacity:1;
     visibility:visible;
     transform:none;
}
 .back-top:hover{
     transform:translateY(-4px);
}
 @media (max-width:1024px){
     .categories__grid, .products__grid{
         grid-template-columns:repeat(2,1fr);
    }
     .story__inner{
         grid-template-columns:1fr;
         text-align:center;
    }
     .story__art{
         margin:0 auto;
    }
     .story__list{
         align-items:center;
    }
     .story__list li{
         padding-right:0;
         padding-left:22px;
    }
     .story__list li::before{
         right:auto;
         left:0;
    }
     .articles__grid{
         grid-template-columns:repeat(2,1fr);
    }
     .trust__grid{
         grid-template-columns:repeat(2,1fr);
    }
     .nav-toggle{
         display:flex;
    }
     .nav-menu{
         position:fixed;
         inset:0 0 0 auto;
         top:0;
         height:100vh;
         width:min(78vw,320px);
         background:var(--surface);
         border-left:1px solid var(--line);
         padding:100px 26px 30px;
         transform:translateX(100%);
         transition:transform .4s var(--ease);
         overflow-y:auto;
    }
     .nav-menu.is-open{
         transform:translateX(0);
    }
     .nav-menu > ul{
         flex-direction:column;
         align-items:stretch;
         gap:2px;
    }
     .nav-menu > ul > li > a{
         padding:14px 6px;
         border-bottom:1px solid var(--line);
    }
     .nav-menu > ul > li > a::after{
         display:none;
    }
     .dropdown{
         position:static;
         opacity:1;
         visibility:visible;
         transform:none;
         display:none;
         box-shadow:none;
         border:0;
         background:transparent;
         padding-right:14px;
    }
     .has-drop.is-open .dropdown{
         display:block;
    }
    .logo_img{
        max-width: 154%;
    }
}
 @media (min-width: 992px){
    .hero__art{
        max-width: 150%;
        min-width: 140%;
    }
 }
 @media (max-width:900px){
     .hero__inner{
         grid-template-columns:1fr;
         text-align:center;
    }
     .hero__text p{
         margin-inline:auto;
    }
     .hero__cta{
         justify-content:center;
    }
     .hero__stats{
         justify-content:center;
    }
     .hero__art{
         order:-1;

    }
     .hookah-illustration{
         width:min(70%, 260px);
    }
        .logo_img{
        max-width: 190%;
    }
}
 @media (max-width:768px){
     .topbar__inner{
         height:auto;
         padding-block:8px;
         flex-wrap:wrap;
         row-gap:8px;
    }
     .topbar__mail{
         order:1;
    }
     .topbar__social{
         order:2;
    }
     .topbar__search{
         order:3;
         max-width:100%;
         flex-basis:100%;
    }
     .section-head--row{
         flex-direction:column;
         align-items:flex-start;
    }
     .footer__grid{
         grid-template-columns:1fr 1fr;
    }
     .newsletter__inner{
         flex-direction:column;
         text-align:center;
    }
     .newsletter__form{
         width:100%;
         justify-content:center;
    }
}
 @media (max-width:640px){
     .categories__grid, .products__grid, .articles__grid, .trust__grid{
         grid-template-columns:1fr;
    }
     .footer__grid{
         grid-template-columns:1fr;
         text-align:center;
    }
     .footer__brand p{
         margin-inline:auto;
    }
     .footer__social{
         justify-content:center;
    }
     .footer__bottom{
         flex-direction:column;
         text-align:center;
    }
     .newsletter__form input{
         min-width:0;
         flex:1;
    }
     .back-top{
         left:16px;
         bottom:16px;
         width:42px;
         height:42px;
    }
}
 /* @media (prefers-reduced-motion: reduce){
     *{
         animation-duration:.001ms !important;
         animation-iteration-count:1 !important;
         transition-duration:.001ms !important;
         scroll-behavior:auto !important;
    }
} */
 @keyframes mobileModalEnter {
     from {
         opacity: 0;
         transform: translateY(100%);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .modal {
     width: 100%;
     height: 100%;
     padding: 18px;
     display: none;
     align-items: center;
     justify-content: center;
     position: fixed;
     inset: 0;
     z-index: 2000;
     overflow-x: hidden;
     overflow-y: auto;
     overscroll-behavior: contain;
     background: var(rgba(1, 5, 12, 0.82));
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
}
 .modal-content {
     width: min(100%, 500px);
     max-height: calc(100vh - 36px);
     max-height: calc(100dvh - 36px);
     margin: auto;
     padding: clamp(24px, 4vw, 34px);
     overflow-y: auto;
     position: relative;
     border: 1px solid var(--border-strong);
     border-radius: 24px;
     color: var(--text-main);
     background: var(--surface-solid);
     box-shadow: var(--shadow-lg);
     animation: modalEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
 .modal-content::before {
     content: "";
     position: absolute;
     top: 0;
     right: 15%;
     left: 15%;
     height: 2px;
     background: linear-gradient( 90deg, transparent, var(--primary), var(--accent), transparent );
}
 .modal-content h2 {
     padding-inline: 35px;
     line-height: 1.6;
     text-wrap: balance;
}
 .close-btn {
     width: 38px;
     height: 38px;
     position: absolute;
     top: 14px;
     right: 14px;
     z-index: 4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
     border: 1px solid var(--border);
     border-radius: 11px;
     background: var(--surface-secondary);
     cursor: pointer;
     font-size: 26px;
     line-height: 1;
     transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
 .close-btn:hover {
     color: var(--danger);
     background: var(--danger-soft);
     transform: rotate(5deg);
}
 #registerMessage {
     color: var(--text-secondary);
     font-size: 0.88rem;
     font-weight: 700;
     line-height: 1.8;
}
 #registerMessage:not(:empty) {
     min-height: 48px;
     padding: 11px 13px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid currentColor;
     border-radius: 12px;
     background: var(--surface-secondary);
}
 #registerStep2 a {
     padding: 8px;
     border-radius: 9px;
     text-decoration: none;
}
 #registerStep2 a:hover {
     background: var(--primary-soft);
}
 .form-control {
     width: 100%;
     min-height: 50px;
     margin: 0;
     padding: 13px 15px;
     color: var(--text-main);
     caret-color: var(--primary);
     border: 1px solid var(--border-strong);
     border-radius: 13px;
     outline: none;
     background: var(--input-bg);
     box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.07);
     transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
 .btn {
     min-height: 46px;
     padding: 11px 19px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 7px;
     position: relative;
     overflow: hidden;
     isolation: isolate;
     border: 1px solid transparent;
     border-radius: 13px;
     cursor: pointer;
     text-align: center;
     text-decoration: none;
     font-size: 0.88rem;
     font-weight: 800;
     line-height: 1.4;
     transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}
 .btn::after {
     content: "";
     position: absolute;
     top: 0;
     bottom: 0;
     left: -100%;
     z-index: -1;
     width: 55%;
     transform: skewX(-20deg);
     background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent );
     transition: left 0.6s ease;
}
 .btn:hover::after {
     left: 150%;
}
 .btn:hover {
     transform: translateY(-2px);
}
 .btn:active {
     transform: scale(0.975);
}
 .btn:disabled {
     opacity: 0.58;
     cursor: wait;
     transform: none;
}
 .btn-primary {
     color: white;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     box-shadow: 0 9px 24px rgba(37, 99, 235, 0.23);
}
 .btn-primary:hover {
     background: linear-gradient(135deg, var(--primary-hover), var(--primary));
     box-shadow: 0 13px 30px rgba(37, 99, 235, 0.3);
}
 .btn-success {
     color: white;
     background: linear-gradient(135deg, var(--success), #047857);
     box-shadow: 0 9px 24px var(--success-soft);
}
 .btn-warning {
     color: white;
     background: linear-gradient(135deg, var(--warning), #b45309);
     box-shadow: 0 9px 24px var(--warning-soft);
}
 .btn-danger {
     color: white;
     background: linear-gradient(135deg, var(--danger), #b91c1c);
     box-shadow: 0 9px 24px var(--danger-soft);
}
 .btn-block {
     width: 100%;
     display: flex;
     margin-top: 12px;
}
 .alert {
     padding: 20px;
     background-color: #f44336;
     color: white;
     margin-bottom: 15px;
}
.alert_success {
     padding: 20px;
     background-color: rgb(24, 179, 3);
     color: white;
     margin-bottom: 15px;
}
 .closebtn {
     margin-left: 15px;
     color: white;
     font-weight: bold;
     float: right;
     font-size: 22px;
     line-height: 20px;
     cursor: pointer;
     transition: 0.3s;
}
 .closebtn:hover {
     color: black;
}
 .form-group {
     margin-bottom: 17px;
     text-align: right;
}
 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: var(--text-secondary);
     font-size: 0.88rem;
     font-weight: 700;
}
 .form-control {
     width: 100%;
     min-height: 50px;
     margin: 0;
     padding: 13px 15px;
     color: var(--text-main);
     caret-color: var(--primary);
     border: 1px solid var(--border-strong);
     border-radius: 13px;
     outline: none;
     background: var(--input-bg);
     box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.07);
     transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
 .form-control::placeholder {
     color: var(--text-muted);
     opacity: 0.7;
}
 .form-control:hover {
     border-color: var(--primary-light);
}
 .form-control:focus {
     border-color: var(--primary);
     background: var(--surface-solid);
     box-shadow: 0 0 0 4px var(--primary-soft), 0 10px 25px rgba(0, 0, 0, 0.06);
     transform: translateY(-1px);
}
 textarea.form-control {
     min-height: 120px;
     resize: vertical;
}
 input[type="tel"], #verifyCode {
     direction: ltr;
}
 #verifyCode {
     min-height: 62px;
     padding-inline: 15px;
     text-align: center;
     font-size: 1.5rem !important;
     font-weight: 900;
     letter-spacing: 0.55em !important;
     font-variant-numeric: tabular-nums;
}
 .checkbox-group {
     min-height: 53px;
     margin-bottom: 12px;
     padding: 12px 14px;
     display: flex;
     align-items: center;
     gap: 11px;
     border: 1px solid var(--border);
     border-radius: 13px;
     background: var(--surface-soft);
     transition: border-color 0.2s ease, background 0.2s ease;
}
 .checkbox-group:hover {
     border-color: var(--primary-light);
     background: var(--primary-soft);
}
 .checkbox-group:focus-within {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px var(--primary-soft);
}
 .checkbox-group input[type="checkbox"] {
     width: 20px;
     height: 20px;
     flex: 0 0 20px;
     margin: 0;
     cursor: pointer;
     accent-color: var(--primary);
}
 .checkbox-group label {
     flex: 1;
     cursor: pointer;
     color: var(--text-secondary);
     font-size: 0.86rem;
     line-height: 1.8;
}
 .page-head{
     padding:54px 0 40px;
     background: radial-gradient(ellipse 55% 60% at 85% 0%, rgba(198,146,61,.12), transparent 60%), var(--bg-soft);
     border-bottom:1px solid var(--line);
}
 .breadcrumb ol{
     display:flex;
     align-items:center;
     gap:8px;
     font-size:.82rem;
     color:var(--ink-mute);
     margin-bottom:14px;
     flex-wrap:wrap;
}
 .breadcrumb li:not(:last-child)::after{
     content:"/";
     margin-inline-start:8px;
     color:var(--line);
}
 .breadcrumb a{
     color:var(--ink-mute);
     transition:color .3s var(--ease);
}
 .breadcrumb a:hover{
     color:var(--brass-lt);
}
 .breadcrumb li[aria-current="page"]{
     color:var(--brass-lt);
}
 .page-head h1{
     font-size:clamp(1.7rem, 3vw, 2.4rem);
     margin-bottom:8px;
}
 .page-head p{
     font-size:.95rem;
     max-width:520px;
}
 .icon-btn.is-active{
     color:var(--brass-lt);
     border-color:var(--brass);
}
 .account{
     padding:60px 0 100px;
}
 .account__layout{
     display:grid;
     grid-template-columns:270px 1fr;
     align-items:start;
     gap:32px;
}
 .account__sidebar{
     position:sticky;
     top:100px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:22px;
}
 .account__user{
     display:flex;
     align-items:center;
     gap:12px;
     padding-bottom:18px;
     margin-bottom:12px;
     border-bottom:1px solid var(--line);
}
 .account__avatar{
     width:46px;
     height:46px;
     border-radius:50%;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:var(--brass-lt);
}
 .account__user strong{
     display:block;
     font-size:.95rem;
}
 .account__user span{
     font-size:.78rem;
     color:var(--ink-mute);
}
 .account__nav ul{
     display:flex;
     flex-direction:column;
     gap:3px;
}
 .account__nav a{
     display:flex;
     align-items:center;
     gap:11px;
     padding:11px 12px;
     border-radius:var(--radius-sm);
     font-size:.9rem;
     color:var(--ink-dim);
     transition:background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
 .account__nav a svg{
     flex-shrink:0;
     color:var(--ink-mute);
     transition:color .3s var(--ease);
}
 .account__nav a:hover{
     background:var(--surface-2);
     color:var(--ink);
     transform:translateX(-3px);
}
 .account__nav a.is-active{
     background:linear-gradient(120deg, rgba(198,146,61,.18), rgba(198,146,61,.05));
     color:var(--brass-lt);
}
 .account__nav a.is-active svg{
     color:var(--brass-lt);
}
 .account__nav a.is-logout{
     color:#e08a6a;
}
 .account__nav a.is-logout svg{
     color:#e08a6a;
}
 .account__nav a.is-logout:hover{
     background:rgba(224,138,106,.12);
}
 .account__nav-divider{
     height:1px;
     background:var(--line);
     margin:10px 4px;
}
 .account__content{
     display:flex;
     flex-direction:column;
     gap:44px;
     min-width:0;
}
 .account__welcome{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px 28px;
}
 .account__hello{
     color:var(--ink);
     font-size:1.02rem;
     margin-bottom:10px;
}
 .account__hello strong{
     color:var(--brass-lt);
}
 .account__logout-link{
     color:var(--ink-mute);
     font-size:.85rem;
     margin-inline-start:6px;
}
 .account__logout-link:hover{
     color:var(--brass-lt);
}
 .account__desc{
     font-size:.92rem;
}
 .account__stats{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:16px;
}
 .stat-card{
     text-align:center;
     padding:20px 14px;
     border-radius:var(--radius-md);
     background:var(--surface);
     border:1px solid var(--line);
     transition:transform .3s var(--ease), border-color .3s var(--ease);
}
 .stat-card:hover{
     transform:translateY(-4px);
     border-color:var(--brass);
}
 .stat-card strong{
     display:block;
     font-family:var(--font-display);
     font-size:1.6rem;
     color:var(--brass-lt);
     margin-bottom:4px;
}
 .stat-card span{
     font-size:.78rem;
     color:var(--ink-mute);
}
 .account__grid{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:20px;
}
 .account-card{
     display:flex;
     flex-direction:column;
     gap:6px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px 22px;
     transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
 .account-card:hover{
     transform:translateY(-6px);
     border-color:var(--brass);
     box-shadow:var(--shadow-1);
}
 .account-card__icon{
     width:50px;
     height:50px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:var(--brass-lt);
     margin-bottom:8px;
     transition:transform .4s var(--ease);
}
 .account-card:hover .account-card__icon{
     transform:rotate(-8deg) scale(1.08);
}
 .account-card h3{
     font-size:1.02rem;
     font-family:var(--font-body);
     font-weight:700;
}
 .account-card p{
     font-size:.83rem;
}
 .account-card--logout .account-card__icon{
     background:linear-gradient(160deg, #e08a6a, #a3563a);
     color:#fff3ec;
}
 .account-card--logout:hover{
     border-color:#e08a6a;
}
 .orders-table{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     overflow:hidden;
}
 .orders-table table{
     width:100%;
     border-collapse:collapse;
}
 .orders-table thead th{
     text-align:right;
     font-size:.78rem;
     color:var(--ink-mute);
     font-weight:600;
     padding:16px 20px;
     background:var(--surface-2);
     border-bottom:1px solid var(--line);
}
 .orders-table tbody td{
     padding:16px 20px;
     font-size:.88rem;
     color:var(--ink-dim);
     border-bottom:1px solid var(--line);
}
 .orders-table tbody tr:last-child td{
     border-bottom:0;
}
 .orders-table tbody tr{
     transition:background .3s var(--ease);
}
 .orders-table tbody tr:hover{
     background:var(--surface-2);
}
 .status{
     display:inline-flex;
     align-items:center;
     gap:6px;
     font-size:.76rem;
     font-weight:600;
     padding:5px 12px;
     border-radius:999px;
}
 .status::before{
     content:"";
     width:6px;
     height:6px;
     border-radius:50%;
     background:currentColor;
}
 .status--processing{
     background:rgba(198,146,61,.14);
     color:var(--brass-lt);
}
 .status--shipped{
     background:rgba(76,107,83,.18);
     color:var(--emerald-lt);
}
 .status--delivered{
     background:rgba(76,107,83,.28);
     color:#8fd6a4;
}
 .address-grid{
     display:grid;
     grid-template-columns:repeat(2,1fr);
     gap:20px;
}
 .address-card{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:24px;
     transition:border-color .3s var(--ease), transform .3s var(--ease);
}
 .address-card:hover{
     border-color:var(--brass);
     transform:translateY(-4px);
}
 .address-card__tag{
     display:inline-block;
     font-size:.7rem;
     padding:4px 10px;
     border-radius:999px;
     background:rgba(198,146,61,.14);
     color:var(--brass-lt);
     margin-bottom:12px;
}
 .address-card__tag--alt{
     background:rgba(76,107,83,.18);
     color:var(--emerald-lt);
}
 .address-card h3{
     font-size:1rem;
     margin-bottom:8px;
}
 .address-card p{
     font-size:.88rem;
     margin-bottom:10px;
}
 .address-card__phone{
     display:block;
     font-size:.82rem;
     color:var(--ink-mute);
     direction:ltr;
     text-align:right;
     margin-bottom:16px;
}
 .address-card__actions{
     display:flex;
     gap:16px;
     padding-top:14px;
     border-top:1px solid var(--line);
}
 .address-card__actions a{
     font-size:.84rem;
     color:var(--brass-lt);
}
 .address-card__actions a.is-danger{
     color:#e08a6a;
}
 .address-card__actions a:hover{
     text-decoration:underline;
}
 .details-form{
     display:flex;
     flex-direction:column;
     gap:18px;
     max-width:640px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:28px;
}
 .details-form label{
     display:flex;
     flex-direction:column;
     gap:8px;
     font-size:.86rem;
     color:var(--ink-dim);
}
 .details-form input{
     background:var(--bg-soft);
     border:1px solid var(--line);
     color:var(--ink);
     padding:12px 14px;
     border-radius:var(--radius-sm);
     font-size:.92rem;
     transition:border-color .3s var(--ease);
}
 .details-form input:focus{
     border-color:var(--brass);
}
 .details-form input:disabled{
     opacity:.55;
     cursor:not-allowed;
}
 .details-form input::placeholder{
     color:var(--ink-mute);
}
 .details-form__row{
     display:grid;
     grid-template-columns:1fr 1fr;
     gap:16px;
}
 .details-form fieldset{
     border:1px solid var(--line);
     border-radius:var(--radius-sm);
     padding:18px;
     display:flex;
     flex-direction:column;
     gap:16px;
}
 .details-form legend{
     padding:0 8px;
     font-size:.86rem;
     color:var(--ink);
}
 .details-form legend span{
     color:var(--ink-mute);
     font-size:.78rem;
}
 .details-form .btn{
     align-self:flex-start;
}
 @media (max-width:1024px){
     .account__layout{
         grid-template-columns:1fr;
    }
     .account__sidebar{
         position:static;
    }
     .account__nav ul{
         flex-direction:row;
         flex-wrap:wrap;
    }
     .account__nav-divider{
         display:none;
    }
     .account__grid{
         grid-template-columns:repeat(2,1fr);
    }
     .account__stats{
         grid-template-columns:repeat(2,1fr);
    }
}
 @media (max-width:768px){
     .address-grid{
         grid-template-columns:1fr;
    }
     .details-form__row{
         grid-template-columns:1fr;
    }
     .orders-table{
         overflow-x:auto;
    }
     .orders-table table{
         min-width:560px;
    }
}
 @media (max-width:640px){
     .account__grid{
         grid-template-columns:1fr;
    }
     .account__stats{
         grid-template-columns:1fr 1fr;
    }
     .account__user{
         flex-wrap:wrap;
    }
}
 .shop{
     padding:60px 0 100px;
}
 .shop__layout{
     display:grid;
     grid-template-columns:280px 1fr;
     align-items:start;
     gap:32px;
}
 .filters-toggle{
     display:none;
     align-items:center;
     gap:8px;
     padding:12px 18px;
     margin-bottom:20px;
     border-radius:999px;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink);
     font-size:.9rem;
     cursor:pointer;
}
 .filters-backdrop{
     position:fixed;
     inset:0;
     z-index:150;
     background:rgba(8,6,4,.65);
     backdrop-filter:blur(3px);
     opacity:0;
     visibility:hidden;
     transition:opacity .35s var(--ease), visibility .35s;
}
 .filters-backdrop.is-visible{
     opacity:1;
     visibility:visible;
}
 .shop__sidebar{
     position:sticky;
     top:100px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px;
     display:flex;
     flex-direction:column;
     gap:28px;
}
 .shop__sidebar-head{
     display:none;
}
 .shop__sidebar-head h2{
     font-size:1.1rem;
}
 .filters-close{
     background:none;
     border:0;
     color:var(--ink-mute);
     cursor:pointer;
     padding:6px;
}
 .filter-group__title{
     font-family:var(--font-body);
     font-size:.92rem;
     font-weight:600;
     color:var(--ink);
     margin-bottom:12px;
}
 .filter-check{
     display:flex;
     align-items:center;
     gap:10px;
     font-size:.86rem;
     color:var(--ink-dim);
     padding:7px 0;
     cursor:pointer;
}
 .filter-check input{
     accent-color:var(--brass);
     width:16px;
     height:16px;
     flex-shrink:0;
     cursor:pointer;
}
 .filter-check em{
     margin-inline-start:auto;
     font-style:normal;
     font-size:.74rem;
     color:var(--ink-mute);
}
 .stars-inline{
     color:var(--brass-lt);
     letter-spacing:2px;
}
 .star-off{
     color:var(--line);
     font-style:normal;
}
 .price-range{
     position:relative;
     height:30px;
     display:flex;
     align-items:center;
}
 .price-range__track{
     position:absolute;
     right:0;
     left:0;
     height:4px;
     border-radius:999px;
     background:var(--line);
}
 .price-range__fill{
     position:absolute;
     height:4px;
     border-radius:999px;
     background:var(--brass);
}
 .price-range__input{
     position:absolute;
     width:100%;
     margin:0;
     background:transparent;
     -webkit-appearance:none;
     appearance:none;
     pointer-events:none;
}
 .price-range__input::-webkit-slider-thumb{
     pointer-events:all;
     -webkit-appearance:none;
     width:16px;
     height:16px;
     border-radius:50%;
     background:var(--brass-lt);
     border:2px solid var(--bg-soft);
     box-shadow:0 0 0 1px var(--brass);
     cursor:pointer;
}
 .price-range__input::-moz-range-thumb{
     pointer-events:all;
     width:16px;
     height:16px;
     border-radius:50%;
     background:var(--brass-lt);
     border:2px solid var(--bg-soft);
     cursor:pointer;
}
 .price-range__input::-webkit-slider-runnable-track{
     background:transparent;
}
 .price-range__input::-moz-range-track{
     background:transparent;
}
 .price-range__values{
     display:flex;
     justify-content:space-between;
     font-size:.78rem;
     color:var(--ink-mute);
     margin-top:6px;
}
 .shop__sidebar-actions{
     display:flex;
     flex-direction:column;
     gap:10px;
}
 .btn--block{
     width:100%;
}
 .shop__toolbar{
     display:flex;
     align-items:center;
     justify-content:space-between;
     flex-wrap:wrap;
     gap:16px;
     padding-bottom:20px;
     margin-bottom:28px;
     border-bottom:1px solid var(--line);
}
 .shop__count{
     font-size:.88rem;
     color:var(--ink-dim);
}
 .shop__count strong{
     color:var(--brass-lt);
}
 .shop__toolbar-actions{
     display:flex;
     align-items:center;
     gap:14px;
}
 .select-wrap{
     position:relative;
}
 .select-wrap::after{
     content:"";
     position:absolute;
     left:15px;
     top:50%;
     width:7px;
     height:7px;
     border-right:2px solid var(--ink-mute);
     border-bottom:2px solid var(--ink-mute);
     transform:translateY(-65%) rotate(45deg);
     pointer-events:none;
}
 .select-wrap select{
     appearance:none;
     -webkit-appearance:none;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink);
     padding:10px 36px 10px 16px;
     border-radius:999px;
     font-size:.85rem;
     cursor:pointer;
     transition:border-color .3s var(--ease);
}
 .select-wrap select:focus{
     border-color:var(--brass);
}
 .view-toggle{
     display:flex;
     gap:6px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:999px;
     padding:4px;
}
 .view-toggle button{
     width:32px;
     height:32px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:transparent;
     border:0;
     color:var(--ink-mute);
     cursor:pointer;
     transition:background .3s var(--ease), color .3s var(--ease);
}
 .view-toggle button.is-active{
     background:var(--brass);
     color:#1c1610;
}
 .shop__grid{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:22px;
     margin-bottom:44px;
}
 .shop__grid.view-grid3{
     grid-template-columns:repeat(3,1fr);
}
 .shop__grid.view-list{
     grid-template-columns:1fr;
}
 .product-card__body{
     display:contents;
}
 .product-card__rating{
     font-size:.74rem;
     color:var(--brass-lt);
     letter-spacing:1px;
}
 .product-card__rating em{
     font-style:normal;
     color:var(--ink-mute);
     margin-inline-start:4px;
     letter-spacing:normal;
}
 .product-card__old-price{
     margin-inline-start:8px;
     font-size:.76rem;
     color:var(--ink-mute);
     text-decoration:line-through;
}
 .view-list .product-card{
     flex-direction:row;
     align-items:center;
     gap:18px;
     padding:16px 18px;
}
 .view-list .product-card__tag{
     display:none;
}
 .view-list .product-card__like{
     position:static;
     order:3;
}
.view-list .product-card__figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 .view-list .product-card__figure{
     width:96px;
     height:86px;
     margin-bottom:0;
     flex-shrink:0;
     order:1;
}
 .view-list .product-card__body{
     display:flex;
     align-items:center;
     gap:18px;
     flex:1;
     order:2;
     min-width:0;
}
 .view-list .product-card__body h3{
     flex:1;
     font-size:.95rem;
     white-space:nowrap;
     overflow:hidden;
     text-overflow:ellipsis;
}
 .view-list .product-card__cat{
     flex:0 0 auto;
}
 .view-list .product-card__rating{
     display:none;
}
 .view-list .product-card__foot{
     /* flex:0 0 auto; */
     margin-top:0;
     padding-top:0;
}
 .view-list .product-card:hover .product-card__figure{
     transform:none;
}
 .pagination{
     display:flex;
     align-items:center;
     justify-content:center;
     gap:10px;
}
 .pagination ul{
     display:flex;
     gap:6px;
}
 .pagination ul a{
     width:38px;
     height:38px;
     border-radius:50%;
     border:1px solid var(--line);
     background:var(--surface);
     color:var(--ink-dim);
     font-size:.86rem;
     cursor:pointer;
     transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
 .pagination ul a:hover{
     border-color:var(--brass);
     color:var(--ink);
}
 .pagination ul a.is-active{
     background:var(--brass);
     border-color:var(--brass);
     color:#1c1610;
     font-weight:700;
}



 .pagination__arrow{
     width:38px;
     height:38px;
     border-radius:50%;
     border:1px solid var(--line);
     background:var(--surface);
     color:var(--ink-dim);
     display:flex;
     align-items:center;
     justify-content:center;
     cursor:pointer;
     transition:border-color .3s var(--ease), color .3s var(--ease);
}
 .pagination__arrow:hover{
     border-color:var(--brass);
     color:var(--brass-lt);
}
 @media (max-width:1024px){
     .shop__layout{
         grid-template-columns:1fr;
    }
     .filters-toggle{
         display:inline-flex;
    }
     .shop__sidebar{
         position:fixed;
         top:0;
         bottom:0;
         right:0;
         width:min(85vw,340px);
         z-index:200;
         border-radius:0;
         transform:translateX(100%);
         transition:transform .4s var(--ease);
         overflow-y:auto;
    }
     .shop__sidebar.is-open{
         transform:translateX(0);
    }
     .shop__sidebar-head{
         display:flex;
         align-items:center;
         justify-content:space-between;
         padding-bottom:16px;
         border-bottom:1px solid var(--line);
    }
     .shop__grid, .shop__grid.view-grid3{
         grid-template-columns:repeat(2,1fr);
    }
}
 @media (max-width:640px){
     .shop__grid, .shop__grid.view-grid3{
         grid-template-columns:1fr;
    }
     .shop__toolbar{
         flex-direction:column;
         align-items:flex-start;
    }
     .view-list .product-card{
         flex-wrap:wrap;
    }
     .view-list .product-card__body{
         flex-wrap:wrap;
    }
     .view-list .product-card__body h3{
         white-space:normal;
    }
}
 .cart__summary{
     position:sticky;
     top:100px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px;
     display:flex;
     flex-direction:column;
     gap:4px;
     height:fit-content;
}
 .cart__summary h2{
     font-size:1.15rem;
     margin-bottom:14px;
}
 .summary-row{
     display:flex;
     align-items:center;
     justify-content:space-between;
     padding:10px 0;
     font-size:.9rem;
     color:var(--ink-dim);
}
 .summary-row em{
     font-style:normal;
     color:var(--ink-mute);
     font-size:.78rem;
     margin-inline-start:4px;
}
 .summary-row__free{
     color:var(--emerald-lt);
     font-weight:600;
}
 .summary-row--discount{
     color:var(--ember);
}
 .summary-row--discount span:last-child{
     color:var(--ember);
     font-weight:600;
}
 .summary-row--total{
     font-size:1.05rem;
     color:var(--ink);
     font-weight:700;
     padding-top:14px;
}
 .summary-row--total small{
     font-weight:400;
     color:var(--ink-mute);
     font-size:.7rem;
}
 .summary-divider{
     height:1px;
     background:var(--line);
     margin:6px 0;
}
 .cart__summary .btn--block{
     margin-top:14px;
}
 .summary-badges{
     display:flex;
     flex-direction:column;
     gap:12px;
     margin-top:20px;
     padding-top:20px;
     border-top:1px solid var(--line);
}
 .summary-badges li{
     display:flex;
     align-items:center;
     gap:10px;
     font-size:.8rem;
     color:var(--ink-mute);
}
 .summary-badges svg{
     flex-shrink:0;
     color:var(--brass-lt);
}
 .cart{
     padding:20px 0 100px;
}
 .cart__layout{
     display:grid;
     grid-template-columns:1fr 360px;
     align-items:start;
     gap:32px;
}
 .cart__toolbar{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:16px;
     padding-bottom:16px;
     margin-bottom:10px;
     border-bottom:1px solid var(--line);
}
 .cart__select-all{
     padding:0;
}
 .cart__bulk-remove{
     display:flex;
     align-items:center;
     gap:6px;
     background:none;
     border:0;
     color:var(--ink-mute);
     font-size:.82rem;
     cursor:pointer;
     transition:color .3s var(--ease);
}
 .cart__bulk-remove:hover{
     color:#e08a6a;
}
 .cart-list{
     display:flex;
     flex-direction:column;
     gap:0;
}
 .cart-item{
     display:grid;
     grid-template-columns:auto auto 1fr auto auto auto auto;
     align-items:center;
     gap:18px;
     padding:20px 0;
     border-bottom:1px solid var(--line);
}
 .cart-item__select input{
     accent-color:var(--brass);
     width:16px;
     height:16px;
     cursor:pointer;
}
 .cart-item__thumb{
     width:64px;
     height:64px;
     border-radius:var(--radius-sm);
     background:var(--surface-2);
     border:1px solid var(--line);
     display:flex;
     align-items:center;
     justify-content:center;
     flex-shrink:0;
}
 .cart-item__info{
     display:flex;
     flex-direction:column;
     gap:4px;
     min-width:0;
}
 .cart-item__cat{
     font-size:.72rem;
     color:var(--ink-mute);
     text-transform:uppercase;
     letter-spacing:.04em;
}
 .cart-item__info h3{
     font-size:.95rem;
     font-family:var(--font-body);
     font-weight:600;
}
 .cart-item__remove-mobile{
     display:none;
}
 .cart-item__price{
     font-size:.88rem;
     color:var(--ink-dim);
     white-space:nowrap;
}
 .cart-item__price small{
     color:var(--ink-mute);
     font-size:.72rem;
}
 .cart-item__total{
     font-size:.95rem;
     font-weight:700;
     color:var(--brass-lt);
     white-space:nowrap;
}
 .cart-item__total small{
     font-weight:400;
     color:var(--ink-mute);
     font-size:.72rem;
}
 .cart-item__remove{
     background:none;
     border:0;
     color:var(--ink-mute);
     cursor:pointer;
     padding:6px;
     transition:color .3s var(--ease), transform .3s var(--ease);
}
 .cart-item__remove:hover{
     color:#e08a6a;
     transform:scale(1.1);
}
 .qty-stepper__btn, .cart-item__qty{
     display:flex;
     align-items:center;
}
 .cart-item__qty{
     display:flex;
     align-items:center;
     gap:0;
     border:1px solid var(--line);
     border-radius:999px;
     overflow:hidden;
     width:fit-content;
}
 .qty-stepper__btn{
     width:30px;
     height:30px;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface-2);
     border:0;
     color:var(--ink);
     font-size:1rem;
     cursor:pointer;
     transition:background .3s var(--ease), color .3s var(--ease);
}
 .qty-stepper__btn:hover{
     background:var(--brass);
     color:#1c1610;
}
 .qty-stepper__input{
     width:36px;
     text-align:center;
     background:transparent;
     border:0;
     color:var(--ink);
     font-size:.88rem;
     padding:0 4px;
     cursor:wait;
}
 .cart__footer-row{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:16px;
     padding:22px 0;
}
 .cart__continue{
     font-size:.88rem;
}
 .coupon-box{
     display:flex;
     align-items:center;
     gap:16px;
     flex-wrap:wrap;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:20px 22px;
     margin-bottom:10px;
}
 .coupon-box__icon{
     width:40px;
     height:40px;
     border-radius:50%;
     flex-shrink:0;
     background:rgba(198,146,61,.14);
     color:var(--brass-lt);
     display:flex;
     align-items:center;
     justify-content:center;
}
 .coupon-box__text{
     display:flex;
     flex-direction:column;
     gap:2px;
     flex:1;
     min-width:180px;
}
 .coupon-box__text strong{
     font-size:.92rem;
     color:var(--ink);
}
 .coupon-box__text span{
     font-size:.8rem;
     color:var(--ink-mute);
}
 .coupon-box__form{
     display:flex;
     gap:10px;
     flex-shrink:0;
}
 .coupon-box__form input{
     background:var(--bg-soft);
     border:1px solid var(--line);
     color:var(--ink);
     padding:10px 14px;
     border-radius:var(--radius-sm);
     font-size:.88rem;
     width:160px;
     transition:border-color .3s var(--ease);
}
 .coupon-box__form input:focus{
     border-color:var(--brass);
}
 .coupon-box__form input::placeholder{
     color:var(--ink-mute);
}
 .coupon-msg{
     font-size:.82rem;
     padding:0 4px;
     margin-bottom:20px;
}
 .coupon-msg.is-success{
     color:var(--emerald-lt);
}
 .coupon-msg.is-error{
     color:#e08a6a;
}
 .cart-upsell{
     margin-top:20px;
     padding-top:36px;
     border-top:1px solid var(--line);
}
 .cart-upsell__grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:20px;
}
 .checkout-steps{
     padding:6px 0 34px;
}
 .checkout-steps__inner{
     display:flex;
     align-items:center;
     justify-content:center;
     gap:10px;
}
 .checkout-steps__item{
     display:flex;
     align-items:center;
     gap:10px;
     font-size:.84rem;
     color:var(--ink-mute);
}
 .checkout-steps__num{
     width:28px;
     height:28px;
     border-radius:50%;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink-mute);
     font-size:.8rem;
     transition:background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
 .checkout-steps__item.is-active{
     color:var(--ink);
}
 .checkout-steps__item.is-active .checkout-steps__num{
     background:var(--brass);
     border-color:var(--brass);
     color:#1c1610;
     font-weight:700;
}
 .checkout-steps__item.is-done{
     color:var(--emerald-lt);
}
 .checkout-steps__item.is-done .checkout-steps__num{
     background:var(--emerald);
     border-color:var(--emerald);
     color:#eefaf1;
}
 .checkout-steps__line{
     width:60px;
     height:1px;
     background:var(--line);
}
 .checkout{
     padding:0 0 100px;
}
 .checkout__layout{
     display:grid;
     grid-template-columns:1fr 360px;
     align-items:start;
     gap:32px;
}
 .checkout__form{
     display:flex;
     flex-direction:column;
     gap:28px;
}
 .checkout__section h2{
     display:flex;
     align-items:center;
     gap:10px;
     font-size:1.05rem;
     font-family:var(--font-body);
     font-weight:600;
     margin-bottom:18px;
}
 .checkout__section h2 span{
     width:26px;
     height:26px;
     border-radius:50%;
     flex-shrink:0;
     background:var(--brass);
     color:#1c1610;
     font-size:.8rem;
     font-weight:700;
     display:flex;
     align-items:center;
     justify-content:center;
}
 .checkout__optional{
     font-weight:400;
     color:var(--ink-mute);
     font-size:.76rem;
     margin-inline-start:auto;
}
 .details-form--plain{
     background:none;
     border:0;
     padding:0;
     max-width:none;
}
 .details-form--plain select, .details-form--plain textarea{
     background:var(--bg-soft);
     border:1px solid var(--line);
     color:var(--ink);
     padding:12px 14px;
     border-radius:var(--radius-sm);
     font-size:.92rem;
     font-family:inherit;
     transition:border-color .3s var(--ease);
     resize:vertical;
}
 .details-form--plain select:focus, .details-form--plain textarea:focus{
     border-color:var(--brass);
}
 .details-form--plain textarea::placeholder{
     color:var(--ink-mute);
}
 .details-form--plain select{
     cursor:pointer;
}
 .option-cards{
     display:flex;
     flex-direction:column;
     gap:12px;
}
 .option-card{
     display:flex;
     align-items:center;
     gap:14px;
     cursor:pointer;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:16px 18px;
     transition:border-color .3s var(--ease), background .3s var(--ease);
}
 .option-card:has(input:checked){
     border-color:var(--brass);
     background:rgba(198,146,61,.08);
}
 .option-card input{
     accent-color:var(--brass);
     width:17px;
     height:17px;
     flex-shrink:0;
     cursor:pointer;
}
 .option-card__icon{
     width:40px;
     height:40px;
     border-radius:50%;
     flex-shrink:0;
     background:var(--surface-2);
     color:var(--brass-lt);
     display:flex;
     align-items:center;
     justify-content:center;
}
 .option-card__icon--gateway{
     background:rgba(76,107,83,.18);
     color:var(--emerald-lt);
}
 .option-card__body{
     display:flex;
     flex-direction:column;
     gap:3px;
     flex:1;
     min-width:0;
}
 .option-card__body strong{
     font-size:.9rem;
     color:var(--ink);
     font-weight:600;
}
 .option-card__body small{
     font-size:.78rem;
     color:var(--ink-mute);
}
 .option-card__price{
     font-size:.86rem;
     color:var(--brass-lt);
     font-weight:600;
     white-space:nowrap;
}
 .option-cards--payment{
     display:grid;
     grid-template-columns:1fr 1fr;
     gap:12px;
}
 .checkout__terms{
     padding:6px 0;
}
 .checkout__submit{
     display:flex;
     align-items:center;
     justify-content:center;
     gap:8px;
     margin-top:6px;
}
 .checkout__submit svg{
     transform:scaleX(-1);
}
 .checkout__summary{
     top:100px;
}
 .checkout-summary-items{
     display:flex;
     flex-direction:column;
     gap:14px;
     margin-bottom:16px;
}
 .checkout-summary-items li{
     display:flex;
     align-items:center;
     gap:12px;
}
 .checkout-summary-items__thumb{
     width:40px;
     height:40px;
     border-radius:var(--radius-sm);
     flex-shrink:0;
     background:var(--surface-2);
     border:1px solid var(--line);
     display:flex;
     align-items:center;
     justify-content:center;
}
 .checkout-summary-items__name{
     flex:1;
     font-size:.84rem;
     color:var(--ink-dim);
     min-width:0;
}
 .checkout-summary-items__name em{
     display:block;
     font-style:normal;
     font-size:.74rem;
     color:var(--ink-mute);
}
 .checkout-summary-items__price{
     font-size:.82rem;
     color:var(--ink);
     white-space:nowrap;
}
 @media (max-width:1024px){
     .cart__layout, .checkout__layout{
         grid-template-columns:1fr;
    }
     .cart__summary, .checkout__summary{
         position:static;
    }
     .cart-upsell__grid{
         grid-template-columns:repeat(2,1fr);
    }
}
 @media (max-width:768px){
     .cart-item{
         grid-template-columns:auto 1fr auto;
         grid-template-areas: "select thumb remove" "select info info" "qty qty total";
         row-gap:10px;
    }
     .cart-item__select{
         grid-area:select;
         align-self:start;
    }
     .cart-item__thumb{
         grid-area:thumb;
    }
     .cart-item__info{
         grid-area:info;
    }
     .cart-item__price{
         display:none;
    }
     .cart-item__qty{
         grid-area:qty;
    }
     .cart-item__total{
         grid-area:total;
         justify-self:end;
    }
     .cart-item__remove{
         display:none;
    }
     .cart-item__remove-mobile{
         display:inline-block;
         background:none;
         border:0;
         color:var(--ink-mute);
         font-size:.78rem;
         text-decoration:underline;
         cursor:pointer;
         padding:0;
         margin-top:4px;
    }
     .coupon-box{
         flex-direction:column;
         align-items:flex-start;
    }
     .coupon-box__form{
         width:100%;
    }
     .coupon-box__form input{
         flex:1;
         width:auto;
    }
     .option-cards--payment{
         grid-template-columns:1fr;
    }
     .cart-upsell__grid{
         grid-template-columns:1fr;
    }
     .checkout-steps__item span:last-child{
         display:none;
    }
}
 @media (max-width:640px){
     .cart__toolbar{
         flex-direction:column;
         align-items:flex-start;
         gap:12px;
    }
     .cart__footer-row{
         flex-direction:column;
         align-items:stretch;
    }
     .details-form__row{
         grid-template-columns:1fr;
    }
}
 .result-page{
     padding:70px 0 100px;
     background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(76,107,83,.16), transparent 60%), var(--bg);
}
 .result-page__inner{
     max-width:720px;
     margin-inline:auto;
     display:flex;
     flex-direction:column;
     gap:28px;
}
 .result-card{
     position:relative;
     overflow:hidden;
     text-align:center;
     padding:52px 36px 40px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-lg);
     box-shadow:var(--shadow-1);
}
 .result-card__particles{
     position:absolute;
     inset:0;
     pointer-events:none;
     overflow:hidden;
}
 .result-card__particles span{
     position:absolute;
     bottom:-10px;
     width:6px;
     height:6px;
     border-radius:50%;
     background:var(--brass-lt);
     opacity:0;
     animation:particle-rise 4.5s ease-in infinite;
}
 .result-card__particles span:nth-child(1){
     left:12%;
     animation-delay:.2s;
     background:var(--emerald-lt);
}
 .result-card__particles span:nth-child(2){
     left:28%;
     animation-delay:1.4s;
}
 .result-card__particles span:nth-child(3){
     left:46%;
     animation-delay:.7s;
     background:var(--emerald-lt);
}
 .result-card__particles span:nth-child(4){
     left:63%;
     animation-delay:2.1s;
}
 .result-card__particles span:nth-child(5){
     left:79%;
     animation-delay:.1s;
     background:var(--emerald-lt);
}
 .result-card__particles span:nth-child(6){
     left:92%;
     animation-delay:1.8s;
}
 @keyframes particle-rise{
     0%{
         opacity:0;
         transform:translateY(0) scale(.6);
    }
     15%{
         opacity:.9;
    }
     100%{
         opacity:0;
         transform:translateY(-260px) scale(1.1);
    }
}
 .result-card__icon{
     position:relative;
     display:inline-flex;
     margin-bottom:18px;
}
 .result-card__ring{
     stroke-dasharray:226;
     stroke-dashoffset:226;
     animation:ring-draw 1s var(--ease) forwards .1s;
}
 .result-card__check{
     stroke-dasharray:46;
     stroke-dashoffset:46;
     animation:check-draw .5s var(--ease) forwards .8s;
}
 @keyframes ring-draw{
     to{
         stroke-dashoffset:0;
    }
}
 @keyframes check-draw{
     to{
         stroke-dashoffset:0;
    }
}
 .result-card__eyebrow{
     display:inline-block;
     font-size:.82rem;
     color:var(--emerald-lt);
     margin-bottom:8px;
}
 .result-card h1{
     font-size:clamp(1.6rem,3vw,2.1rem);
     margin-bottom:12px;
}
 .result-card > p{
     max-width:440px;
     margin-inline:auto;
     font-size:.94rem;
     margin-bottom:30px;
}
 .result-card__meta{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:14px;
     background:var(--bg-soft);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:20px;
     margin-bottom:30px;
}
 .result-card__meta div{
     display:flex;
     flex-direction:column;
     gap:6px;
}
 .result-card__meta span{
     font-size:.74rem;
     color:var(--ink-mute);
}
 .result-card__meta strong{
     font-size:.9rem;
     color:var(--ink);
}
 .result-card__actions{
     display:flex;
     justify-content:center;
     gap:14px;
     flex-wrap:wrap;
}
/* Delivery tracking steps */
 .result-steps{
     display:flex;
     align-items:flex-start;
     justify-content:space-between;
     gap:6px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px 22px;
}
 .result-steps__item{
     display:flex;
     flex-direction:column;
     align-items:center;
     gap:8px;
     text-align:center;
     flex:1;
}
 .result-steps__icon{
     width:38px;
     height:38px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface-2);
     border:1px solid var(--line);
     color:var(--ink-mute);
     flex-shrink:0;
}
 .result-steps__item.is-done .result-steps__icon{
     background:var(--emerald);
     border-color:var(--emerald);
     color:#eefaf1;
}
 .result-steps__item.is-active .result-steps__icon{
     background:var(--brass);
     border-color:var(--brass);
     color:#1c1610;
}
 .result-steps__item strong{
     font-size:.8rem;
     color:var(--ink);
     font-weight:600;
}
 .result-steps__item small{
     font-size:.7rem;
     color:var(--ink-mute);
}
 .result-steps__line{
     height:1px;
     background:var(--line);
     flex:0 0 40px;
     margin-top:19px;
}
 .result-steps__line.is-done{
     background:var(--emerald-lt);
}
 .result-summary{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:26px;
}
 .result-summary h2{
     font-size:1.05rem;
     margin-bottom:16px;
}
 .result-summary__invoice{
     display:inline-flex;
     align-items:center;
     gap:6px;
     margin-top:16px;
     font-size:.86rem;
}
 @media (max-width:700px){
     .result-card{
         padding:40px 20px 32px;
    }
     .result-card__meta{
         grid-template-columns:repeat(2,1fr);
    }
     .result-card__actions{
         flex-direction:column;
    }
     .result-card__actions .btn{
         width:100%;
    }
     .result-steps{
         flex-wrap:wrap;
    }
     .result-steps__item{
         flex:0 0 42%;
    }
     .result-steps__line{
         display:none;
    }
}
 .articles-archive{
     padding:56px 0 100px;
}
 .articles-archive__tabs{
     display:flex;
     gap:10px;
     flex-wrap:wrap;
     margin-bottom:36px;
}
 .articles-archive__tabs a{
     padding:9px 18px;
     border-radius:999px;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink-dim);
     font-size:.86rem;
     cursor:pointer;
     transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
 .articles-archive__tabs a.is-active{
     background:var(--brass);
     border-color:var(--brass);
     color:#1c1610;
     font-weight:600;
}
 .articles-archive__tabs a:hover:not(.is-active){
     border-color:var(--brass);
     color:var(--ink);
}
 .articles-archive__grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:26px;
     margin-bottom:44px;
}
 .article-card--media{
     padding:0;
     overflow:hidden;
     display:flex;
     flex-direction:column;
}
 .article-card__media{
     display:block;
     aspect-ratio:16/10;
     overflow:hidden;
}
 .article-card__media svg{
     width:100%;
     height:100%;
     display:block;
     transition:transform .5s var(--ease);
}
 .article-card--media:hover .article-card__media svg{
     transform:scale(1.06);
}
 .article-card--media .article-card__cat{
     margin:18px 20px 0;
}
 .article-card--media h3{
     margin:0 20px 8px;
}
 .article-card--media p{
     margin:0 20px 14px;
}
 .article-card--media .article-card__meta{
     margin:0 20px;
     padding:14px 0 20px;
}
 .article-hero{
     padding:40px 0 28px;
     background: radial-gradient(ellipse 55% 60% at 85% 0%, rgba(198,146,61,.12), transparent 60%), var(--bg-soft);
     border-bottom:1px solid var(--line);
}
 .article-hero__cat{
     display:inline-block;
     font-size:.78rem;
     padding:5px 14px;
     border-radius:999px;
     background:rgba(198,146,61,.14);
     color:var(--brass-lt);
     margin-bottom:16px;
}
 .article-hero h1{
     font-size:clamp(1.7rem,3.4vw,2.5rem);
     margin-bottom:18px;
     max-width:820px;
}
 .article-hero__meta{
     display:flex;
     flex-wrap:wrap;
     gap:22px;
}
 .article-hero__meta li{
     display:flex;
     align-items:center;
     gap:6px;
     font-size:.84rem;
     color:var(--ink-mute);
}
 .article-hero__meta svg{
     color:var(--brass-lt);
     flex-shrink:0;
}
 .article-cover{
     width:100%;
     max-height:380px;
     overflow:hidden;
}
 .article-cover img{
     width:100%;
     height:auto;
     display:block;
}
 .article-page__layout{
     display:grid;
     grid-template-columns:1fr 320px;
     gap:50px;
     align-items:start;
     padding:50px 0 100px;
}
 .article-body{
     max-width:760px;
}
 .article-body p{
     font-size:1rem;
     line-height:2;
     color:var(--ink-dim);
     margin-bottom:22px;
}
 .article-body h2{
     font-size:1.28rem;
     margin:36px 0 16px;
     color:var(--ink);
     font-family:var(--font-body);
     font-weight:700;
}
 .article-pullquote{
     border-right:3px solid var(--brass);
     padding:18px 22px;
     margin:30px 0;
     background:var(--surface);
     border-radius:0 var(--radius-sm) var(--radius-sm) 0;
     font-size:1.08rem;
     color:var(--ink);
     font-family:var(--font-display);
     line-height:1.9;
}
 .article-share{
     display:flex;
     align-items:center;
     gap:14px;
     flex-wrap:wrap;
     padding:26px 0;
     margin:10px 0 34px;
     border-top:1px solid var(--line);
     border-bottom:1px solid var(--line);
}
 .article-share > span{
     font-size:.88rem;
     color:var(--ink-mute);
}
 .article-share ul{
     display:flex;
     gap:10px;
}
 .article-share a, .article-share button{
     width:36px;
     height:36px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink-mute);
     cursor:pointer;
     transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
 .article-share a:hover, .article-share button:hover{
     background:var(--brass);
     color:#1c1610;
     transform:translateY(-2px);
     border-color:var(--brass);
}
 .article-share__copied{
     font-size:.8rem;
     color:var(--emerald-lt);
}
 .article-nav{
     display:grid;
     grid-template-columns:1fr auto 1fr;
     gap:14px;
     align-items:stretch;
     margin-bottom:48px;
}
 .article-nav__item{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:16px 18px;
     display:flex;
     flex-direction:column;
     gap:8px;
     justify-content:center;
     transition:border-color .3s var(--ease), transform .3s var(--ease);
}
 .article-nav__item:hover{
     border-color:var(--brass);
     transform:translateY(-3px);
}
 .article-nav__item--next{
     text-align:left;
     align-items:flex-end;
}
 .article-nav__dir{
     display:flex;
     align-items:center;
     gap:6px;
     font-size:.78rem;
     color:var(--brass-lt);
}
 .article-nav__item strong{
     font-size:.88rem;
     color:var(--ink);
     font-weight:600;
}
 .article-nav__all{
     width:44px;
     height:44px;
     border-radius:50%;
     align-self:center;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:var(--surface);
     border:1px solid var(--line);
     color:var(--ink-mute);
     transition:border-color .3s var(--ease), color .3s var(--ease);
}
 .article-nav__all:hover{
     border-color:var(--brass);
     color:var(--brass-lt);
}
 .comments h2{
     font-size:1.2rem;
     margin-bottom:24px;
}
 .comments__list{
     display:flex;
     flex-direction:column;
     gap:22px;
     margin-bottom:40px;
}
 .comments__list li{
     display:flex;
     gap:14px;
}
 .comments__avatar{
     width:42px;
     height:42px;
     border-radius:50%;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:#eefaf1;
     font-weight:700;
}
 .comments__body{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:16px 18px;
     flex:1;
}
 .comments__head{
     display:flex;
     align-items:center;
     justify-content:space-between;
     flex-wrap:wrap;
     gap:6px;
     margin-bottom:8px;
}
 .comments__head strong{
     font-size:.9rem;
     color:var(--ink);
}
 .comments__head span{
     font-size:.76rem;
     color:var(--ink-mute);
}
 .comments__body p{
     font-size:.88rem;
     color:var(--ink-dim);
     margin:0;
}
 .comments__form h3{
     font-size:1.02rem;
     margin-bottom:16px;
     font-family:var(--font-body);
}
 .comments__save{
     padding:0;
}
 .article-sidebar{
     display:flex;
     flex-direction:column;
     gap:24px;
     position:sticky;
     top:100px;
}
 .article-sidebar__box{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:22px;
}
 .article-sidebar__box h3{
     font-size:.98rem;
     margin-bottom:16px;
}
 .latest-articles{
     display:flex;
     flex-direction:column;
     gap:14px;
}
 .latest-articles a{
     display:flex;
     align-items:center;
     gap:12px;
}
 .latest-articles__thumb{
     width:52px;
     height:52px;
     border-radius:var(--radius-sm);
     overflow:hidden;
     flex-shrink:0;
}
 .latest-articles__thumb svg{
     width:100%;
     height:100%;
     display:block;
}
 .latest-articles a strong{
     display:block;
     font-size:.84rem;
     font-weight:600;
     color:var(--ink);
     line-height:1.5;
     margin-bottom:3px;
     transition:color .3s var(--ease);
}
 .latest-articles a:hover strong{
     color:var(--brass-lt);
}
 .latest-articles a small{
     font-size:.72rem;
     color:var(--ink-mute);
}
 .tag-cloud{
     display:flex;
     flex-wrap:wrap;
     gap:8px;
}
 .tag-cloud a{
     font-size:.8rem;
     padding:6px 14px;
     border-radius:999px;
     background:var(--surface-2);
     color:var(--ink-dim);
     transition:background .3s var(--ease), color .3s var(--ease);
}
 .tag-cloud a:hover{
     background:var(--brass);
     color:#1c1610;
}
 .article-sidebar__promo{
     background:linear-gradient(150deg, var(--surface-2), var(--surface));
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:22px;
     text-align:center;
}
 .article-sidebar__promo h3{
     font-size:.98rem;
     margin-bottom:8px;
}
 .article-sidebar__promo p{
     font-size:.82rem;
     margin-bottom:16px;
}
 @media (max-width:1000px){
     .article-page__layout{
         grid-template-columns:1fr;
    }
     .article-sidebar{
         position:static;
    }
}
 @media (max-width:900px){
     .articles-archive__grid{
         grid-template-columns:repeat(2,1fr);
    }
}
 @media (max-width:640px){
     .articles-archive__grid{
         grid-template-columns:1fr;
    }
     .article-nav{
         grid-template-columns:1fr;
    }
     .article-nav__all{
         order:-1;
         width:38px;
         height:38px;
    }
     .article-nav__item--next{
         text-align:right;
         align-items:flex-start;
    }
     .article-hero__meta{
         gap:12px 18px;
    }
}
 .linkk:hover{
     cursor:pointer;
}
 .support-contact{
     padding:50px 0 10px;
}
 .support-contact__grid{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:20px;
}
 .faq{
     padding:80px 0;
}
 .faq__list{
     max-width:820px;
     margin-inline:auto;
     display:flex;
     flex-direction:column;
     gap:12px;
}
 .faq-item{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     overflow:hidden;
     transition:border-color .3s var(--ease);
     margin-top: 25px;
}
 .faq-item.is-open{
     border-color:var(--brass);
}
 .faq-item__q{
     width:100%;
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:14px;
     background:none;
     border:0;
     padding:18px 22px;
     text-align:right;
     cursor:pointer;
     font-size:.94rem;
     font-weight:600;
     color:var(--ink);
     font-family:inherit;
}
 .faq-item__q svg{
     flex-shrink:0;
     color:var(--brass-lt);
     transition:transform .35s var(--ease);
}
 .faq-item.is-open .faq-item__q svg{
     transform:rotate(180deg);
}
 .faq-item__a{
     max-height:0;
     overflow:hidden;
     transition:max-height .4s var(--ease);
}
 .faq-item.is-open .faq-item__a{
     max-height:220px;
}
 .faq-item__a p{
     padding:0 22px 20px;
     font-size:.88rem;
     color:var(--ink-dim);
}
 .new-ticket{
     padding:20px 0 80px;
}
 .new-ticket__layout{
     display:grid;
     grid-template-columns:1fr 300px;
     gap:32px;
     align-items:start;
}
 .new-ticket__form{
     max-width:none;
}
 .new-ticket__form .section-head{
     margin-bottom:8px;
}
 .new-ticket__aside{
     display:flex;
     flex-direction:column;
     gap:20px;
}
 .new-ticket__aside .article-sidebar__promo{
     text-align:right;
}
 .new-ticket__aside .article-sidebar__promo svg{
     margin-bottom:10px;
}
 .file-drop{
     display:flex;
     align-items:center;
     gap:14px;
     border:1.5px dashed var(--line);
     border-radius:var(--radius-md);
     padding:18px 20px;
     cursor:pointer;
     color:var(--ink-mute);
     transition:border-color .3s var(--ease), background .3s var(--ease);
}
 .file-drop:hover{
     border-color:var(--brass);
     background:rgba(198,146,61,.05);
}
 .file-drop svg{
     flex-shrink:0;
     color:var(--brass-lt);
}
 .file-drop strong{
     display:block;
     font-size:.88rem;
     color:var(--ink);
     margin-bottom:2px;
}
 .file-drop small{
     font-size:.78rem;
     color:var(--ink-mute);
}
 .tips-list{
     display:flex;
     flex-direction:column;
     gap:12px;
}
 .tips-list li{
     position:relative;
     padding-right:22px;
     font-size:.85rem;
     color:var(--ink-dim);
}
 .tips-list li::before{
     content:"✦";
     position:absolute;
     right:0;
     top:1px;
     color:var(--brass-lt);
     font-size:.76rem;
}
 .my-tickets{
     padding:20px 0 100px;
}
 @media (max-width:1024px){
     .support-contact__grid{
         grid-template-columns:repeat(2,1fr);
    }
     .new-ticket__layout{
         grid-template-columns:1fr;
    }
}
 @media (max-width:640px){
     .support-contact__grid{
         grid-template-columns:1fr;
    }
     .faq-item__q{
         font-size:.88rem;
         padding:16px 18px;
    }
}
 .admin-body{
     background:var(--bg);
}
 .admin-shell{
     display:flex;
     min-height:100vh;
}
 .admin-sidebar{
     width:270px;
     flex-shrink:0;
     background:var(--surface);
     border-left:1px solid var(--line);
     display:flex;
     flex-direction:column;
     padding:26px 20px;
     position:sticky;
     top:0;
     height:100vh;
}
 .admin-sidebar__brand{
     display:flex;
     align-items:center;
     gap:10px;
     color:var(--brass-lt);
     margin-bottom:34px;
     padding:0 6px;
}
 .admin-sidebar__brand .brand__text{
     font-family:var(--font-display);
     font-size:1.4rem;
     color:var(--ink);
     display:flex;
     flex-direction:column;
     line-height:1;
}
 .admin-sidebar__brand .brand__text em{
     font-style:normal;
     font-family:var(--font-body);
     font-size:.58rem;
     letter-spacing:.3em;
     color:var(--ink-mute);
}
 .admin-nav{
     flex:1;
}
 .admin-nav__label{
     display:block;
     font-size:.72rem;
     color:var(--ink-mute);
     padding:0 10px 12px;
     letter-spacing:.03em;
}
 .admin-nav ul{
     display:flex;
     flex-direction:column;
     gap:3px;
}
 .admin-nav a{
     display:flex;
     align-items:center;
     gap:12px;
     padding:12px 12px;
     border-radius:var(--radius-sm);
     font-size:.9rem;
     color:var(--ink-dim);
     position:relative;
     transition:background .3s var(--ease), color .3s var(--ease);
}
 .admin-nav a svg{
     color:var(--ink-mute);
     flex-shrink:0;
     transition:color .3s var(--ease);
}
 .admin-nav a:hover{
     background:var(--surface-2);
     color:var(--ink);
}
 .admin-nav a.is-active{
     background:linear-gradient(120deg, rgba(198,146,61,.18), rgba(198,146,61,.05));
     color:var(--brass-lt);
}
 .admin-nav a.is-active svg{
     color:var(--brass-lt);
}
 .admin-nav__badge{
     margin-inline-start:auto;
     background:var(--ember);
     color:#1c1610;
     font-size:.68rem;
     font-weight:800;
     padding:2px 8px;
     border-radius:999px;
}
 .admin-sidebar__exit{
     display:flex;
     align-items:center;
     gap:10px;
     padding:12px;
     font-size:.86rem;
     color:var(--ink-mute);
     border-top:1px solid var(--line);
     margin-top:16px;
     transition:color .3s var(--ease);
}
 .admin-sidebar__exit:hover{
     color:var(--brass-lt);
}
 .admin-backdrop{
     position:fixed;
     inset:0;
     z-index:150;
     background:rgba(8,6,4,.65);
     opacity:0;
     visibility:hidden;
     transition:opacity .3s var(--ease), visibility .3s;
}
 .admin-backdrop.is-visible{
     opacity:1;
     visibility:visible;
}
 .admin-main{
     flex:1;
     min-width:0;
}
 .admin-topbar{
     display:flex;
     align-items:center;
     gap:18px;
     padding:16px 28px;
     background: var(--adm-topbar);
     backdrop-filter:blur(10px);
     border-bottom:1px solid var(--line);
     position:sticky;
     top:0;
     z-index:40;
}
 .admin-menu-toggle{
     display:none;
     background:none;
     border:0;
     color:var(--ink);
     cursor:pointer;
     padding:6px;
}
 .admin-topbar__search{
     flex:1;
     max-width:420px;
     display:flex;
     align-items:center;
     gap:10px;
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:999px;
     padding:9px 16px;
     color:var(--ink-mute);
}
 .admin-topbar__search input{
     flex:1;
     background:transparent;
     border:0;
     color:var(--ink);
     font-size:.86rem;
}
 .admin-topbar__search input::placeholder{
     color:var(--ink-mute);
}
 .admin-topbar__actions{
     display:flex;
     align-items:center;
     gap:16px;
     margin-inline-start:auto;
}
 .admin-profile{
     display:flex;
     align-items:center;
     gap:10px;
}
 .admin-profile__avatar{
     width:36px;
     height:36px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--brass-lt), var(--brass));
     color:#1c1610;
     font-weight:800;
     font-size:.9rem;
     flex-shrink:0;
}
 .admin-profile__meta{
     display:flex;
     flex-direction:column;
     line-height:1.4;
}
 .admin-profile__meta strong{
     font-size:.84rem;
     color:var(--ink);
}
 .admin-profile__meta small{
     font-size:.72rem;
     color:var(--ink-mute);
}
 .admin-content{
     padding:28px;
     max-width:1400px;
}
 .admin-page-head{
     display:flex;
     align-items:flex-start;
     justify-content:space-between;
     gap:16px;
     flex-wrap:wrap;
     margin-bottom:24px;
}
 .admin-page-head h1{
     font-size:1.5rem;
     margin-bottom:6px;
}
 .admin-page-head p{
     font-size:.88rem;
}
 .admin-page-head .btn{
     display:inline-flex;
     align-items:center;
     gap:6px;
}
 .admin-stats{
     margin-bottom:28px;
}
 .ticket-workspace{
     display:grid;
     grid-template-columns:340px 1fr;
     gap:22px;
     align-items:start;
}
 .ticket-list-panel{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     overflow:hidden;
}
 .ticket-list-panel__toolbar{
     display:flex;
     gap:8px;
     padding:16px;
     border-bottom:1px solid var(--line);
}
 .ticket-list-panel__toolbar .select-wrap{
     flex:1;
}
 .ticket-list-panel__toolbar select{
     width:100%;
     padding:8px 30px 8px 12px;
     font-size:.78rem;
}
 .ticket-list{
     max-height:620px;
     overflow-y:auto;
}
 .ticket-list__item{
     display:flex;
     gap:12px;
     padding:16px;
     border-bottom:1px solid var(--line);
     cursor:pointer;
     transition:background .3s var(--ease);
}
 .ticket-list__item:hover{
     background:var(--surface-2);
}
 .ticket-list__item.is-active{
     background:linear-gradient(120deg, rgba(198,146,61,.14), transparent);
     border-right:3px solid var(--brass);
}
 .ticket-list__avatar{
     width:36px;
     height:36px;
     border-radius:50%;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:#eefaf1;
     font-weight:700;
     font-size:.84rem;
}
 .ticket-list__body{
     flex:1;
     min-width:0;
}
 .ticket-list__top{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap:8px;
     margin-bottom:4px;
}
 .ticket-list__top strong{
     font-size:.86rem;
     color:var(--ink);
}
 .ticket-list__time{
     font-size:.72rem;
     color:var(--ink-mute);
     flex-shrink:0;
}
 .ticket-list__body p{
     font-size:.82rem;
     color:var(--ink-dim);
     margin-bottom:8px;
     white-space:nowrap;
     overflow:hidden;
     text-overflow:ellipsis;
}
 .ticket-list__foot{
     display:flex;
     align-items:center;
     gap:8px;
     flex-wrap:wrap;
}
 .priority-dot{
     display:inline-flex;
     align-items:center;
     gap:5px;
     font-size:.7rem;
     color:var(--ink-mute);
}
 .priority-dot::before{
     content:"";
     width:7px;
     height:7px;
     border-radius:50%;
     background:currentColor;
}
 .priority-dot--urgent{
     color:#e0654a;
}
 .priority-dot--important{
     color:var(--brass-lt);
}
 .priority-dot--normal{
     color:var(--emerald-lt);
}
 .ticket-detail{
     background:var(--surface);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:24px;
     display:flex;
     flex-direction:column;
     gap:20px;
}
 .ticket-detail__header{
     display:flex;
     align-items:flex-start;
     justify-content:space-between;
     gap:16px;
     flex-wrap:wrap;
     padding-bottom:18px;
     border-bottom:1px solid var(--line);
}
 .ticket-detail__id{
     font-size:.76rem;
     color:var(--brass-lt);
}
 .ticket-detail__header h2{
     font-size:1.1rem;
     font-family:var(--font-body);
     font-weight:700;
     margin:4px 0 6px;
}
 .ticket-detail__header p{
     font-size:.8rem;
     color:var(--ink-mute);
}
 .ticket-detail__controls{
     display:flex;
     gap:8px;
     flex-wrap:wrap;
}
 .ticket-detail__controls select{
     padding:8px 30px 8px 12px;
     font-size:.8rem;
}
 .ticket-customer{
     display:flex;
     align-items:center;
     gap:12px;
     background:var(--bg-soft);
     border:1px solid var(--line);
     border-radius:var(--radius-sm);
     padding:14px 16px;
}
 .ticket-customer__avatar{
     width:36px;
     height:36px;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--brass-lt), var(--brass));
     color:#1c1610;
     font-weight:800;
     flex-shrink:0;
}
 .ticket-customer strong{
     display:block;
     font-size:.86rem;
     color:var(--ink);
}
 .ticket-customer span{
     font-size:.76rem;
     color:var(--ink-mute);
}
 .ticket-customer .link-more{
     margin-inline-start:auto;
     font-size:.78rem;
     white-space:nowrap;
}
 .ticket-thread{
     display:flex;
     flex-direction:column;
     gap:16px;
     max-height:420px;
     overflow-y:auto;
     padding-inline-end:4px;
}
 .ticket-message{
     display:flex;
     align-items:flex-end;
     gap:10px;
     max-width:80%;
}
 .ticket-message--admin{
     flex-direction:row-reverse;
     align-self:flex-start;
}
 .ticket-message--customer{
     align-self:flex-end;
}
 .ticket-message__avatar{
     width:30px;
     height:30px;
     border-radius:50%;
     flex-shrink:0;
     display:flex;
     align-items:center;
     justify-content:center;
     background:linear-gradient(160deg, var(--emerald-lt), var(--emerald));
     color:#eefaf1;
     font-size:.76rem;
     font-weight:700;
}
 .ticket-message__avatar--admin{
     background:linear-gradient(160deg, var(--brass-lt), var(--brass));
     color:#1c1610;
}
 .ticket-message__bubble{
     background:var(--bg-soft);
     border:1px solid var(--line);
     border-radius:var(--radius-md);
     padding:12px 16px;
}
 .ticket-message--admin .ticket-message__bubble{
     background:rgba(198,146,61,.1);
     border-color:rgba(198,146,61,.3);
}
 .ticket-message__bubble p{
     font-size:.86rem;
     color:var(--ink-dim);
     margin-bottom:6px;
}
 .ticket-message__time{
     font-size:.7rem;
     color:var(--ink-mute);
}
 .ticket-reply{
     border-top:1px solid var(--line);
     padding-top:18px;
     display:flex;
     flex-direction:column;
     gap:12px;
}
 .ticket-reply__canned{
     display:flex;
     align-items:center;
     gap:8px;
     flex-wrap:wrap;
     font-size:.78rem;
     color:var(--ink-mute);
}
 .ticket-reply__canned button{
     font-size:.76rem;
     padding:6px 12px;
     border-radius:999px;
     background:var(--surface-2);
     border:1px solid var(--line);
     color:var(--ink-dim);
     cursor:pointer;
     transition:background .3s var(--ease), color .3s var(--ease);
}
 .ticket-reply__canned button:hover{
     background:var(--brass);
     color:#1c1610;
     border-color:var(--brass);
}
 .ticket-reply textarea{
     width:100%;
     background:var(--bg-soft);
     border:1px solid var(--line);
     color:var(--ink);
     border-radius:var(--radius-sm);
     padding:12px 14px;
     font-size:.88rem;
     font-family:inherit;
     resize:vertical;
}
 .ticket-reply textarea:focus{
     border-color:var(--brass);
     outline:none;
}
 .ticket-reply__foot{
     display:flex;
     align-items:center;
     justify-content:space-between;
     flex-wrap:wrap;
     gap:12px;
}
 .ticket-reply__note{
     padding:0;
     font-size:.8rem;
}
 .ticket-reply__actions{
     display:flex;
     gap:10px;
}
 @media (max-width:1200px){
     .ticket-workspace{
         grid-template-columns:300px 1fr;
    }
}
 @media (max-width:960px){
     .admin-sidebar{
         position:fixed;
         z-index:200;
         right:0;
         transform:translateX(100%);
         transition:transform .35s var(--ease);
    }
     .admin-sidebar.is-open{
         transform:translateX(0);
    }
     .admin-menu-toggle{
         display:flex;
    }
     .ticket-workspace{
         grid-template-columns:1fr;
    }
     .ticket-list{
         max-height:340px;
    }
}
 @media (max-width:640px){
     .admin-topbar{
         padding:14px 16px;
         gap:10px;
    }
     .admin-topbar__search{
         display:none;
    }
     .admin-content{
         padding:18px;
    }
     .admin-profile__meta{
         display:none;
    }
     .ticket-detail{
         padding:18px;
    }
     .ticket-message{
         max-width:92%;
    }
}
 .footer__col--contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem 2rem;
    border-top: 1px solid var(--line);
    padding: 22px 24px;
    font-size: .8rem;
    color: var(--ink-mute);
}

.footer__col--contact h4 {
    grid-column: 1 / -1; 
    margin-top: 0.5rem;
}

html{
    scroll-padding-top: 96px;
}
@media (max-width:640px){
    html{
        scroll-padding-top: 76px;
    }
}


@media (max-width:900px){
    .footer__col--contact{
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
    }
}
@media (max-width:640px){
    .footer__col--contact{
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .footer__col--contact li{
        word-break: break-word;
        line-height: 1.9;
    }
}

@media (max-width:390px){
    .wrap{
        padding-inline: 0px;
    }
    .btn{
        padding: 12px 20px;
        font-size: .9rem;
    }
    .btn--sm{
        padding: 8px 12px;
        font-size: .78rem;
    }
    .topbar__mail span{
        display: none; 
    }
    .age-gate__card{
        padding: 26px 18px;
    }
    .result-card{
        padding: 34px 18px 28px;
    }
    h1{
        word-break: break-word;
    }
}

.age-gate__card{
    max-height: 90vh;
    overflow-y: auto;
}
@media (max-height:520px) and (orientation:landscape){
    .age-gate__card{
        padding: 20px;
    }
    .age-gate__badge{
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
}


@media (max-width:640px){
    .icon-btn, .topbar__social a, .footer__social a{
        min-width: 40px;
        min-height: 40px;
    }
}


html, body{
    max-width: 100%;
    overflow-x: hidden;
}


.closenav{
    display: none;
}
@media (max-width:1024px){
    .closenav{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 22px;
        left: 22px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--surface-2);
        border: 1px solid var(--line);
        cursor: pointer;
        transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
        z-index: 5;
    }
    .closenav:hover, .closenav:focus-visible{
        background: var(--brass);
        border-color: var(--brass);
        transform: rotate(90deg);
    }
    .closenav svg{
        width: 16px;
        height: 16px;
        fill: var(--ink) !important; 
    }
    .closenav:hover svg, .closenav:focus-visible svg{
        fill: #1c1610 !important;
    }
    .nav-menu > ul{
        margin-top: 6px;
    }
    .nav-menu{
        z-index: 150;
    }
}


.nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(6,4,2,.6);
    backdrop-filter: blur(2px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
}
.nav-overlay.is-open{
    opacity: 1;
    visibility: visible;
}


body.nav-locked{
    overflow: hidden;
}
.crumb-bar{ padding:18px 0; border-bottom:1px solid var(--line); }


.product-info{ padding:38px 0 70px; }
.product-info__layout{
  display:grid; grid-template-columns: 1fr 1fr; gap:44px; align-items:start;
}


.product-gallery{ position:sticky; top:100px; }
.product-gallery__main{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(160deg, var(--surface-2), var(--bg-soft));
  border:1px solid var(--line); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
}
.product-gallery__main img{ width:100%; height:100%; object-fit:cover; }
.product-gallery__zoom{
  position:absolute; bottom:14px; left:14px; width:38px; height:38px; border-radius:50%;
  background:rgba(22,17,13,.7); border:1px solid var(--line); color:var(--ink); display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.product-gallery__zoom:hover{ border-color:var(--brass); color:var(--brass-lt); }
.product-gallery__thumbs{ display:flex; gap:10px; margin-top:14px; overflow-x:auto; padding-bottom:2px; }
.product-gallery__thumb{
  flex-shrink:0; width:72px; height:72px; border-radius:var(--radius-sm); overflow:hidden; cursor:pointer;
  border:2px solid var(--line); background:var(--surface-2); padding:0;
}
.product-gallery__thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-gallery__thumb.is-active{ border-color:var(--brass); }
.product-lightbox{ border:none; border-radius:var(--radius-lg); padding:0; background:transparent; max-width:min(90vw, 900px); }
.product-lightbox::backdrop{ background:rgba(10,8,5,.8); }
.product-lightbox img{ width:100%; display:block; border-radius:var(--radius-lg); }
.product-lightbox__close{
  position:absolute; top:12px; left:12px; width:36px; height:36px; border-radius:50%; background:rgba(22,17,13,.75);
  border:1px solid var(--line); color:var(--ink); display:flex; align-items:center; justify-content:center; cursor:pointer;
}


.product-panel__cat{ font-size:.78rem; color:var(--brass-lt); font-weight:700; }
.product-panel h1{ margin:8px 0 10px; font-size:1.9rem; line-height:1.4; }
.product-panel__meta{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:.84rem; color:var(--ink-mute); margin-bottom:18px; }
.product-panel__meta .stars-inline{ font-size:1rem; }

.product-warning{
  display:flex; align-items:flex-start; gap:12px; background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.35);
  color:var(--danger); border-radius:var(--radius-md); padding:14px 16px; margin-bottom:22px; font-size:.85rem; line-height:1.9;
}
.product-warning svg{ flex-shrink:0; color:var(--danger); margin-top:2px; }
.product-warning strong{ display:block; color:var(--danger); margin-bottom:3px; }

.product-price{ display:flex; align-items:baseline; gap:12px; margin-bottom:18px; }
.product-price__now{ font-size:1.9rem; font-weight:800; color:var(--brass-lt); }
.product-price__now small{ font-size:.9rem; font-weight:500; color:var(--ink-mute); }
.product-price__old{ font-size:1.05rem; color:var(--ink-mute); text-decoration:line-through; }
.product-price__off{ background:rgba(255,138,61,.15); color:var(--ember); font-size:.74rem; font-weight:800; padding:3px 9px; border-radius:999px; }

.product-stock{ display:inline-flex; align-items:center; gap:7px; font-size:.82rem; font-weight:600; margin-bottom:22px; }
.product-stock::before{ content:''; width:8px; height:8px; border-radius:50%; background:currentColor; }
.product-stock--in{ color:#7fd99a; }
.product-stock--low{ color:var(--ember); }
.product-stock--out{ color:#ef6f68; }

.product-panel__desc{ color:var(--ink-dim); font-size:.92rem; line-height:2; margin-bottom:24px; }

.product-variants{ margin-bottom:24px; }
.product-variants h3{ font-size:.85rem; margin:0 0 10px; color:var(--ink-mute); font-weight:600; }
.product-variants__options{ display:flex; gap:9px; flex-wrap:wrap; }
.product-variants__option{
  padding:8px 16px; border-radius:999px; border:1px solid var(--line); background:var(--surface-2);
  color:var(--ink); font-size:.82rem; cursor:pointer;
}
.product-variants__option input{ position:absolute; opacity:0; pointer-events:none; }
.product-variants__option:has(input:checked){ border-color:var(--brass); background:rgba(198,146,61,.14); color:var(--brass-lt); }

.product-buy-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--line); border-radius:999px; overflow:hidden; width:fit-content; }

.product-actions{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.product-actions .icon-btn{ position:static; }

.product-share{ display:flex; align-items:center; gap:10px; margin-top:20px; font-size:.82rem; color:var(--ink-mute); }
.product-share ul{ list-style:none; margin:0; padding:0; display:flex; gap:8px; }
.product-share a{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--ink-mute); transition:border-color .3s var(--ease), color .3s var(--ease);
}
.product-share a:hover{ border-color:var(--brass); color:var(--brass-lt); }


.product-tabs{ margin-top:56px; }
.product-tabs__nav{ display:flex; gap:6px; border-bottom:1px solid var(--line); overflow-x:auto; }
.product-tabs__btn{
  background:none; border:none; padding:14px 20px; font-size:.9rem; font-weight:600; color:var(--ink-mute);
  cursor:pointer; position:relative; white-space:nowrap;
}
.product-tabs__btn.is-active{ color:var(--brass-lt); }
.product-tabs__btn.is-active::after{ content:''; position:absolute; right:0; left:0; bottom:-1px; height:2px; background:var(--brass); }
.product-tabs__panel{ display:none; padding:28px 0; }
.product-tabs__panel.is-active{ display:block; }

.spec-table{ width:100%; border-collapse:collapse; font-size:.88rem; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:12px 6px; }
.spec-table td:first-child{ color:var(--ink-mute); width:220px; }

.review-summary{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; padding-bottom:26px; margin-bottom:26px; border-bottom:1px solid var(--line); }
.review-summary__score{ text-align:center; }
.review-summary__score strong{ display:block; font-size:2.6rem; font-weight:800; color:var(--brass-lt); line-height:1; }
.review-summary__score .stars-inline{ display:block; margin:8px 0 4px; font-size:1.1rem; }
.review-summary__score span{ font-size:.78rem; color:var(--ink-mute); }
.review-summary__bars{ flex:1; min-width:220px; display:flex; flex-direction:column; gap:6px; }
.review-summary__bar{ display:flex; align-items:center; gap:10px; font-size:.76rem; color:var(--ink-mute); }
.review-summary__bar-track{ flex:1; height:6px; border-radius:999px; background:var(--surface-2); overflow:hidden; }
.review-summary__bar-fill{ height:100%; background:var(--brass); border-radius:999px; }

.review-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:32px; }
.review-item{ padding-bottom:22px; border-bottom:1px solid var(--line); }
.review-item:last-child{ border-bottom:none; }
.review-item__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:8px; flex-wrap:wrap; }
.review-item__user{ display:flex; align-items:center; gap:10px; }
.review-item__avatar{ width:38px; height:38px; border-radius:50%; background:linear-gradient(160deg, var(--brass), #7a5c28); display:flex; align-items:center; justify-content:center; font-weight:700; color:#1c1610; flex-shrink:0; }
.review-item__user strong{ display:block; font-size:.86rem; }
.review-item__user span{ font-size:.72rem; color:var(--ink-mute); }
.review-item__date{ font-size:.74rem; color:var(--ink-mute); }
.review-item p{ margin:6px 0 0; font-size:.88rem; line-height:1.9; color:var(--ink-dim); }

.review-form .details-form__row{ align-items:flex-end; }
.review-form__rating{ display:flex; gap:4px; font-size:1.4rem; color:var(--line); }
.review-form__rating input{ display:none; }
.review-form__rating label{ cursor:pointer; }
.review-form__rating label:hover,
.review-form__rating label:hover ~ label{ color:var(--brass-lt); }
.review-form__rating:has(input:checked) label:has(~ input:checked),
.review-form__rating input:checked ~ label{ color:var(--brass-lt); }

.related-products{ padding:60px 0 80px; border-top:1px solid var(--line); margin-top:20px; }

@media (max-width: 980px){
  .product-info__layout{ grid-template-columns:1fr; gap:30px; }
  .product-gallery{ position:static; }
}
@media (max-width: 640px){
  .product-panel h1{ font-size:1.5rem; }
  .review-summary{ flex-direction:column; align-items:flex-start; }
}

:root{
  --novin-ember: #c9793d;
  --novin-gold: #d4af6a;
  --novin-cream: #f3ece1;
  --novin-smoke: #211a14;
  --novin-smoke-2: #2a2119;
  --novin-line: rgba(212,175,106,.16);
  --novin-danger: #d9614f;
}


.section-head{
  max-width: 640px;
  margin: 0 0 32px;
}
.section-head h2{
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--novin-cream);
  margin: 0 0 10px;
}
.section-head p{
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 0;
}


.notices-page{ padding: 12px 0 72px; }

.notice-list{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.notice-list::before{
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 21px;
  width: 1px;
  background: linear-gradient(to bottom, var(--novin-line), transparent 95%);
}

.notice-card{
  position: relative;
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: var(--novin-smoke);
  border: 1px solid var(--novin-line);
  border-radius: 16px;
  transition: border-color .25s ease, transform .25s ease;
}
.notice-card:hover{ border-color: rgba(212,175,106,.4); transform: translateY(-2px); }

.notice-card__dot{
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--novin-gold);
  box-shadow: 0 0 0 4px rgba(212,175,106,.14);
  position: relative;
  z-index: 1;
}
.notice-card--important .notice-card__dot{
  background: var(--novin-ember);
  box-shadow: 0 0 0 4px rgba(201,121,61,.2);
}

.notice-card__content{ flex: 1 1 auto; min-width: 0; }
.notice-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.notice-card__badge{
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(212,175,106,.12);
  color: var(--novin-gold);
  border: 1px solid rgba(212,175,106,.3);
  white-space: nowrap;
}
.notice-card__badge--important{
  background: rgba(201,121,61,.14);
  color: var(--novin-ember);
  border-color: rgba(201,121,61,.35);
}
.notice-card__date{
  font-size: 13px;
  color: var(--notice-card-text);
}
.notice-card__title{
  font-size: 18px;
  color: var(--novin-cream);
  margin: 0 0 8px;
  line-height: 1.6;
}
.notice-card__body{
  margin: 0;
  color: var(--notice-card-text);
  line-height: 1.95;
  font-size: 14.5px;
}

.notices-empty{
  text-align: center;
  padding: 64px 20px;
  border: 1px dashed var(--novin-line);
  border-radius: 16px;
  color: rgba(243,236,225,.6);
}
.notices-empty svg{ color: var(--novin-gold); margin-bottom: 14px; }
.notices-empty h2{ color: var(--novin-cream); font-size: 18px; margin: 0 0 8px; }
.notices-empty p{ margin: 0; font-size: 14px; }

@media (max-width: 640px){
  .notice-list::before{ right: 17px; }
  .notice-card{ padding: 18px 16px; gap: 14px; border-radius: 14px; }
  .notice-card__title{ font-size: 16.5px; }
}


.careers-why{ padding: 8px 0 56px; }
.careers-why__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.careers-why__item{
  padding: 26px 22px;
  background: var(--novin-smoke);
  border: 1px solid var(--novin-line);
  border-radius: 16px;
  text-align: center;
}
.careers-why__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,175,106,.1);
  color: var(--novin-gold);
  margin-bottom: 16px;
}
.careers-why__item h3{
  font-size: 16px;
  color: var(--novin-cream);
  margin: 0 0 8px;
}
.careers-why__item p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-dim);
}

@media (max-width: 860px){
  .careers-why__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .careers-why__grid{ grid-template-columns: 1fr; }
}


.careers-jobs{ padding: 0 0 56px; }
.job-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.job-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px;
  background: var(--novin-smoke);
  border: 1px solid var(--novin-line);
  border-radius: 16px;
  transition: border-color .25s ease, transform .25s ease;
}
.job-card:hover{ border-color: rgba(212,175,106,.4); transform: translateY(-2px); }
.job-card__info h3{
  font-size: 16.5px;
  color: var(--novin-cream);
  margin: 0 0 10px;
}
.job-card__meta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.job-card__meta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.job-card__apply{
  white-space: nowrap;
  font-size: 13.5px;
  padding: 10px 18px;
}

@media (max-width: 760px){
  .job-list{ grid-template-columns: 1fr; }
  .job-card{ flex-direction: column; align-items: stretch; text-align: center; }
  .job-card__meta{ justify-content: center; }
  .job-card__apply{ width: 100%; }
}


.careers-form{ padding: 0 0 88px; }

.application-form{
  background: var(--novin-smoke);
  border: 1px solid var(--novin-line);
  border-radius: 20px;
  padding: 36px;
  max-width: 860px;
}


.hp-field{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-fieldset{
  border: 0;
  padding: 0;
  margin: 0 0 32px;
}
.form-fieldset legend{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Aref Ruqaa", serif;
  font-size: 19px;
  color: var(--novin-cream);
  padding: 0 0 18px;
  margin-bottom: 18px;
  width: 100%;
  border-bottom: 1px solid var(--novin-line);
}
.form-fieldset__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212,175,106,.14);
  color: var(--novin-gold);
  font-size: 13px;
  font-family: "Vazirmatn", sans-serif;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row .form-group{ margin-bottom: 0; }

.form-label{
  font-size: 13.5px;
  color: rgba(243,236,225,.75);
}
.form-label .req{ color: var(--novin-ember); }

.form-control{
  width: 100%;
  background: rgba(243,236,225,.04);
  border: 1px solid var(--novin-line);
  border-radius: 10px;
  color: var(--novin-cream);
  padding: 13px 14px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.form-control::placeholder{ color: var(--text-secondary); }
.form-control:focus{
  outline: none;
  border-color: var(--novin-gold);
  background: rgba(243,236,225,.06);
}
.form-control:focus-visible{
  outline: 2px solid var(--novin-gold);
  outline-offset: 2px;
}
select.form-control{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af6a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}
textarea.form-control{ resize: vertical; min-height: 120px; line-height: 1.8; }

.form-hint{
  font-size: 12px;
  color: rgba(243,236,225,.42);
  align-self: flex-start;
}


.file-drop{ position: relative; }
.file-drop input[type="file"]{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-drop__label{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px dashed var(--novin-line);
  border-radius: 12px;
  color: var(--novin-gold);
  background: rgba(243,236,225,.03);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.file-drop input[type="file"]:focus-visible ~ .file-drop__label,
.file-drop:hover .file-drop__label{
  border-color: var(--novin-gold);
  background: rgba(212,175,106,.06);
}
.file-drop__text{ color: var(--novin-cream); font-size: 14px; white-space: nowrap; }
.file-drop__filename{
  font-size: 12px;
  color: rgba(243,236,225,.45);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.form-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(243,236,225,.65);
  margin: 4px 0 30px;
  cursor: pointer;
}
.form-check input{
  margin-top: 4px;
  width: 17px;
  height: 17px;
  accent-color: var(--novin-gold);
  flex: 0 0 auto;
  cursor: pointer;
}
.form-check a{ color: var(--novin-gold); text-decoration: underline; text-underline-offset: 3px; }

.form-actions{ display: flex; justify-content: flex-start; }
.form-actions .btn{ min-width: 220px; }

@media (max-width: 720px){
  .application-form{ padding: 24px 18px; border-radius: 16px; }
  .form-row{ grid-template-columns: 1fr; gap: 0; }
  .form-fieldset legend{ font-size: 17px; }
  .form-actions{ justify-content: stretch; }
  .form-actions .btn{ width: 100%; }
}


/* @media (prefers-reduced-motion: reduce){
  .notice-card, .job-card{ transition: none; }
} */

.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #b3d4fc;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #6793fb;
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }
}

:root, html[data-theme]{
  --primary: var(--brass);
  --text-muted: var(--ink-mute);
}


html[data-theme="dark"]{
  --bg: #16110d;
  --bg-soft: #1c1611;
  --surface: #221a14;
  --surface-2: #2a2018;
  --line: #3a2f24;
  --brass: #c6923d;
  --brass-lt: #e8c27a;
  --emerald: #35513f;
  --emerald-lt: #4c6b53;
  --ember: #ff8a3d;
  --ink: #f1e9dc;
  --ink-dim: #cbc0b0;
  --ink-mute: #8f8474;
  --shadow-1: 0 10px 30px rgba(0,0,0,.35);
  --shadow-2: 0 20px 60px rgba(0,0,0,.45);

  --novin-ember: #c9793d;
  --novin-gold: #d4af6a;
  --novin-cream: #f3ece1;
  --novin-smoke: #211a14;
  --novin-smoke-2: #2a2119;
  --novin-line: rgba(212,175,106,.16);
  --novin-danger: #d9614f;
  --navbar: rgba(22,17,13,.9);
  --notice-card-text: rgba(243,236,225,.68);
  --brand-text: inherit;
  --brand-top-text: inherit;
  --surface-solid: #0e1829;
  --footer: #0f0b08;
  --text-secondary: #c6d1df;
}


html[data-theme="light"]{
  --bg: #faf7f2;
  --bg-soft: #f2ebdd;
  --surface: #ffffff;
  --surface-2: #f5efe3;
  --line: #e6dac3;
  --brass: #a9751c;
  --brass-lt: #8a5c14;
  --emerald: #2c4436;
  --emerald-lt: #3a5847;
  --ember: #c05f21;
  --ink: #241c14;
  --ink-dim: #4b4033;
  --ink-mute: #8a7c68;
  --shadow-1: 0 10px 26px rgba(60,45,20,.10);
  --shadow-2: 0 24px 60px rgba(60,45,20,.14);

  --novin-ember: #b5601f;
  --novin-gold: #8a6a1f;
  --novin-cream: #241c14;
  --novin-smoke: #ffffff;
  --novin-smoke-2: #f6f0e4;
  --novin-line: rgba(138,92,20,.18);
  --novin-danger: #b8402f;
  --navbar: rgba(235, 233, 232, 0.9);
  --notice-card-text: rgba(29, 29, 28, 0.68);
  --brand-text: white;
  --brand-top-text: black;
  --surface-solid: #dcdddf;
  --footer: #c6c6c6;
  --text-secondary: rgb(53, 53, 53);
}


body, .site-header, .navbar, .topbar, header, footer, section,
.wrap, .btn, .icon-btn, .cat-card, .product-card, .article-card,
.notice-card, .job-card, .ticket-detail, .ticket-message__bubble{
  transition: background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.theme-toggle{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.theme-toggle:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 999px;
}
.theme-toggle__track{
  position: relative;
  display: block;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.theme-toggle__thumb{
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--brass-lt), var(--brass));
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), background .35s var(--ease);
}
html[data-theme="light"] .theme-toggle__thumb{
  transform: translateX(-22px);
}
.theme-toggle__icon{
  position: absolute;
  color: #1c1610;
  opacity: 0;
  transform: scale(.4) rotate(-90deg);
  transition: opacity .3s ease, transform .3s ease;
}
.theme-toggle__icon--moon{ opacity: 1; transform: scale(1) rotate(0deg); }
html[data-theme="light"] .theme-toggle__icon--sun{ opacity: 1; transform: scale(1) rotate(0deg); }
html[data-theme="light"] .theme-toggle__icon--moon{ opacity: 0; transform: scale(.4) rotate(90deg); }

/* @media (prefers-reduced-motion: reduce){
  .theme-toggle__thumb, .theme-toggle__icon,
  body, .site-header, .navbar, .topbar, header, footer, section,
  .wrap, .btn, .icon-btn, .cat-card, .product-card, .article-card,
  .notice-card, .job-card, .ticket-detail, .ticket-message__bubble{
    transition: none !important;
  }
} */
.motion-off *{
    transition-duration: .0001ms !important;
    animation-duration: .0001ms !important;
}