@font-face{
    font-family:'IRANSansWeb';
    src:url('../fonts/IranSans/IRANSansWeb(FaNum).eot');
    src:url('../fonts/IranSans/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'),
        url('../fonts/IranSans/IRANSansWeb(FaNum).woff2') format('woff2'),
        url('../fonts/IranSans/IRANSansWeb(FaNum).woff') format('woff'),
        url('../fonts/IranSans/IRANSansWeb(FaNum).ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
    font-display:swap;
  }

  :root{
    --cream:#f7f3ec;
    --cream-dark:#efe8db;
    --ink:#22281f;
    --green:#1c2a20;
    --green-soft:#2a3b2c;
    --gold:#b98f4e;
    --gold-light:#d9b579;
    --line:#e1d9c8;
    --text:#3a362f;
    --text-soft:#75705f;
    --white:#fffdfa;
    --radius:2px;
    --maxw:1240px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;overflow-x:hidden;width:100%;}
  body{
    font-family:'IRANSansWeb', Tahoma, sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.8;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    width:100%;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}
  .container{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
  .eyebrow{
    font-size:13px;
    letter-spacing:1px;
    color:var(--gold);
    font-weight:600;
    display:block;
    margin-bottom:10px;
  }
  h1,h2,h3{font-weight:700;color:var(--ink);}
  .section-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:8px;
  }
  .section-sub-rule{
    width:70px;height:2px;background:var(--gold);
    margin:14px auto 46px;
    position:relative;
  }
  .section-sub-rule::before{
    content:"◇";
    position:absolute;top:50%;left:50%;
    transform:translate(-50%,-50%);
    background:var(--cream);
    color:var(--gold);
    font-size:13px;
    padding:0 10px;
  }
  .btn{
    display:inline-block;
    padding:14px 30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    border-radius:var(--radius);
    transition:all .25s ease;
    border:1px solid transparent;
  }
  .btn-primary{background:var(--green);color:var(--white);}
  .btn-primary:hover{background:var(--gold);color:var(--ink);}
  .btn-outline{border-color:var(--ink);color:var(--ink);background:transparent;}
  .btn-outline:hover{background:var(--ink);color:var(--white);}
  .btn-light{border-color:rgba(255,255,255,.6);color:var(--white);}
  .btn-light:hover{background:var(--white);color:var(--green);}

  /* ============ HEADER ============ */
  header{
    background:rgba(255,253,250,.66);
    -webkit-backdrop-filter:blur(16px) saturate(160%);
    backdrop-filter:blur(16px) saturate(160%);
    border-bottom:1px solid rgba(255,255,255,.5);
    box-shadow:0 6px 26px rgba(34,40,31,.06);
    position:sticky;top:0;z-index:200;
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 28px;
    max-width:var(--maxw);
    margin:0 auto;
    gap:20px;
  }
  .logo{
    text-align:center;
    line-height:1.1;
  }
  .logo a{display:flex;flex-direction:column;align-items:center;gap:2px;}
  .logo .mark{font-size:22px;color:var(--gold);}
  .logo .word{
    font-size:22px;font-weight:800;letter-spacing:2px;color:var(--ink);
  }
  .logo .tag{
    font-size:10px;letter-spacing:3px;color:var(--text-soft);
  }

  nav.main-nav{display:flex;align-items:center;gap:34px;}
  nav.main-nav > ul{display:flex;gap:34px;}
  nav.main-nav > ul > li{position:relative;}
  nav.main-nav > ul > li > a{
    font-size:14.5px;font-weight:600;color:var(--ink);
    display:flex;align-items:center;gap:6px;
    padding:10px 2px;
  }
  nav.main-nav > ul > li > a::after{
    content:"";display:block;position:absolute;right:0;bottom:4px;left:0;
    height:2px;background:var(--gold);
    transform:scaleX(0);transform-origin:center;
    transition:transform .25s ease;
  }
  nav.main-nav > ul > li > a:hover::after{transform:scaleX(1);}
  .caret{width:8px;height:8px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-4px;transition:transform .2s ease;}
  li.has-dropdown:hover .caret{transform:rotate(-135deg);margin-top:2px;}

  .dropdown{
    position:absolute;
    top:100%;
    right:50%;
    transform:translate(50%,4px) scale(.97);
    background:rgba(255,253,250,.62);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    backdrop-filter:blur(20px) saturate(180%);
    min-width:230px;
    box-shadow:0 22px 50px rgba(20,20,10,.16);
    border:1px solid rgba(255,255,255,.55);
    border-radius:10px;
    padding:10px;
    opacity:0;
    visibility:hidden;
    transition:opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index:50;
  }
  li.has-dropdown:hover .dropdown,
  li.has-dropdown:focus-within .dropdown{
    opacity:1;visibility:visible;transform:translate(50%,10px) scale(1);
  }
  .dropdown li a{
    display:block;padding:11px 14px;font-size:14px;border-radius:6px;color:var(--text);
    transition:background .2s ease, color .2s ease, padding-right .2s ease;
  }
  .dropdown li a:hover{background:rgba(255,255,255,.55);color:var(--gold);padding-right:18px;}

  .header-icons{display:flex;align-items:center;gap:20px;}
  .icon-item{position:relative;}
  .icon-btn{color:var(--ink);position:relative;padding:4px;}
  .icon{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.6;}
  .cart-wrap{position:relative;}
  .cart-count{
    position:absolute;top:-6px;left:-9px;
    background:var(--gold);color:var(--white);
    font-size:10px;width:16px;height:16px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
  }
  .burger{display:none;color:var(--ink);}
  .burger .icon{width:24px;height:24px;}

  /* ---- glassy header panels: search / account / cart ---- */
  .panel{
    position:absolute;
    top:calc(100% + 16px);
    left:0;
    background:rgba(255,253,250,.68);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    backdrop-filter:blur(20px) saturate(180%);
    border:1px solid rgba(255,255,255,.55);
    border-radius:12px;
    box-shadow:0 22px 50px rgba(20,20,10,.16);
    padding:18px;
    opacity:0;
    visibility:hidden;
    transform:translateY(6px) scale(.97);
    transform-origin:top left;
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index:120;
  }
  .panel.open{opacity:1;visibility:visible;transform:translateY(0) scale(1);}
  .panel h4{font-size:15px;margin-bottom:14px;color:var(--ink);}

  .search-panel{width:300px;}
  .search-form{display:flex;gap:8px;}
  .search-form input{
    flex:1;background:rgba(255,255,255,.6);border:1px solid var(--line);
    border-radius:8px;padding:10px 12px;font-family:inherit;font-size:13.5px;color:var(--text);
  }
  .search-form input:focus{outline:none;border-color:var(--gold);}
  .search-form button{
    width:40px;height:40px;flex-shrink:0;background:var(--green);color:var(--white);
    border-radius:8px;display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .search-form button:hover{background:var(--gold);color:var(--ink);}
  .search-form button .icon{width:17px;height:17px;}

  .account-panel{width:280px;}
  .account-panel form{display:flex;flex-direction:column;gap:6px;}
  .account-panel label{font-size:12px;color:var(--text-soft);margin-top:6px;}
  .account-panel input{
    background:rgba(255,255,255,.6);border:1px solid var(--line);
    border-radius:8px;padding:10px 12px;font-family:inherit;font-size:13.5px;color:var(--text);
  }
  .account-panel input:focus{outline:none;border-color:var(--gold);}
  .btn-block{display:block;width:100%;text-align:center;margin-top:14px;padding:12px;}
  .panel-links{
    display:flex;flex-direction:column;gap:8px;margin-top:16px;
    padding-top:14px;border-top:1px solid var(--line);
  }
  .panel-links a{font-size:12.5px;color:var(--text-soft);transition:color .2s ease;}
  .panel-links a b{color:var(--gold);font-weight:700;}
  .panel-links a:hover{color:var(--gold);}

  .cart-panel{width:320px;}
  .cart-items{display:flex;flex-direction:column;gap:12px;margin-bottom:14px;}
  .cart-item{display:flex;align-items:center;gap:10px;position:relative;}
  .cart-item img{width:52px;height:52px;object-fit:cover;border-radius:8px;flex-shrink:0;}
  .cart-item-info{display:flex;flex-direction:column;gap:3px;flex:1;min-width:0;}
  .ci-name{font-size:13px;font-weight:600;color:var(--ink);}
  .ci-qty{font-size:11.5px;color:var(--text-soft);}
  .ci-price{font-size:12px;font-weight:700;color:var(--gold);white-space:nowrap;}
  .ci-remove{
    width:20px;height:20px;border-radius:50%;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    color:var(--text-soft);font-size:15px;line-height:1;
    transition:background .2s ease, color .2s ease;
  }
  .ci-remove:hover{background:rgba(0,0,0,.06);color:#b3413a;}
  .cart-subtotal{
    display:flex;justify-content:space-between;align-items:center;
    font-size:13.5px;font-weight:700;color:var(--ink);
    padding-top:14px;border-top:1px solid var(--line);margin-bottom:14px;
  }
  .cart-actions{display:flex;flex-direction:column;gap:10px;}
  .cart-actions .btn{padding:11px;font-size:13px;}


  /* ============ HERO ============ */
  .hero{
    background:linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    align-items:stretch;
    min-height:560px;
  }
  .hero-text{
    display:flex;flex-direction:column;justify-content:center;
    padding:60px 28px 60px 40px;
    max-width:560px;
    margin-inline-start:auto;
  }
  .hero-text h1{
    font-size:52px;line-height:1.18;margin-bottom:20px;letter-spacing:-.5px;
  }
  .hero-text p{
    color:var(--text-soft);font-size:16.5px;margin-bottom:32px;max-width:440px;
  }
  .hero-cta{display:flex;gap:14px;margin-bottom:52px;flex-wrap:wrap;}
  .hero-badges{display:flex;gap:34px;flex-wrap:wrap;}
  .hero-badges .badge{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;width:96px;}
  .hero-badges .badge .icon{width:26px;height:26px;stroke:var(--gold);}
  .hero-badges .badge span{font-size:11.5px;font-weight:700;letter-spacing:.3px;color:var(--ink);}

  .hero-media{position:relative;overflow:hidden;}
  .hero-media img{width:100%;height:100%;object-fit:cover;min-height:340px;}

  /* ============ TRUST STRIP TOP (collections) ============ */
  .collections{padding:88px 0 96px;}
  .collection-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
  }
  .collection-card{
    text-align:center;
  }
  .collection-thumb{
    aspect-ratio:1/1.08;
    overflow:hidden;
    background:var(--white);
    border:1px solid var(--line);
    margin-bottom:16px;
  }
  .collection-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .collection-card:hover .collection-thumb img{transform:scale(1.06);}
  .collection-card h3{font-size:15px;letter-spacing:.5px;margin-bottom:6px;}
  .collection-card .shop-link{font-size:12.5px;color:var(--gold);font-weight:600;display:inline-flex;align-items:center;gap:5px;}

  /* ============ BEST SELLERS ============ */
  .bestsellers{padding:0 0 96px;}
  .product-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
    margin-bottom:46px;
  }
  .product-card{background:var(--white);border:1px solid var(--line);position:relative;}
  .product-thumb{aspect-ratio:1/1;overflow:hidden;position:relative;}
  .product-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .product-card:hover .product-thumb img{transform:scale(1.07);}
  .wish{
    position:absolute;top:12px;left:12px;
    width:34px;height:34px;border-radius:50%;
    background:var(--white);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    transition:background .2s ease;
  }
  .wish .icon{width:16px;height:16px;stroke:var(--ink);}
  .wish:hover{background:var(--gold);}
  .wish:hover .icon{stroke:var(--white);}
  .product-info{padding:18px 16px 22px;text-align:center;}
  .product-info h4{font-size:15px;font-weight:600;margin-bottom:8px;}
  .price{color:var(--gold);font-weight:700;margin-bottom:10px;font-size:14.5px;}
  .stars{color:var(--gold-light);font-size:13px;letter-spacing:2px;}
  .view-all{text-align:center;}

  /* ============ STORY ============ */
  .story{
    display:grid;grid-template-columns:1fr 1fr;
    background:var(--green);
  }
  .story-media{overflow:hidden;}
  .story-media img{width:100%;height:100%;object-fit:cover;min-height:420px;}
  .story-text{
    color:var(--white);
    padding:70px 56px;
    display:flex;flex-direction:column;justify-content:center;
    max-width:560px;
  }
  .story-text .eyebrow{color:var(--gold-light);}
  .story-text h2{color:var(--white);font-size:32px;line-height:1.4;margin-bottom:18px;}
  .story-text p{color:#cfd3c8;font-size:15.5px;margin-bottom:34px;max-width:460px;}
  .story-points{display:flex;gap:30px;margin-bottom:38px;flex-wrap:wrap;}
  .story-points .pt{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;width:120px;}
  .story-points .pt .icon{width:24px;height:24px;stroke:var(--gold-light);}
  .story-points .pt span{font-size:11.5px;font-weight:700;letter-spacing:.3px;}

  /* ============ TESTIMONIALS ============ */
  .testimonials{padding:96px 0;text-align:center;position:relative;}

  .testimonial-slider{
    display:flex;align-items:center;gap:18px;
    max-width:680px;margin:10px auto 0;
  }
  .t-viewport{overflow:hidden;flex:1;}
  .t-track{
    display:flex;
    direction:ltr;
    transition:transform .45s cubic-bezier(.65,0,.35,1);
  }
  .t-card{
    direction:rtl;
    flex:0 0 100%;
    background:var(--white);border:1px solid var(--line);
    padding:36px 32px;text-align:right;
    box-sizing:border-box;
  }
  .t-card .stars{display:block;margin-bottom:16px;font-size:15px;}
  .t-card p{color:var(--text);font-size:14.5px;margin-bottom:24px;min-height:80px;}
  .t-person{display:flex;align-items:center;gap:12px;}
  .t-person img{width:42px;height:42px;border-radius:50%;object-fit:cover;}
  .t-person span{font-weight:700;font-size:14px;}

  .t-arrow{
    flex-shrink:0;
    width:44px;height:44px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    background:var(--white);border:1px solid var(--line);
    color:var(--ink);
    box-shadow:0 8px 20px rgba(20,20,10,.08);
    transition:background .2s ease, color .2s ease, transform .2s ease;
  }
  .t-arrow:hover{background:var(--gold);color:var(--white);transform:scale(1.06);}
  .t-arrow .icon{width:18px;height:18px;}

  .dots{display:flex;justify-content:center;gap:8px;margin-top:30px;}
  .dots i{
    width:7px;height:7px;border-radius:50%;background:var(--line);display:block;
    cursor:pointer;transition:background .2s ease, transform .2s ease;
  }
  .dots i.active{background:var(--gold);transform:scale(1.3);}


  /* ============ TRUST STRIP BOTTOM ============ */
  .trust-strip{
    background:var(--cream-dark);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .trust-inner{
    display:grid;grid-template-columns:repeat(4,1fr);
    padding:26px 0;
  }
  .trust-item{
    display:flex;align-items:center;justify-content:center;gap:12px;
    padding:10px 14px;
    border-left:1px solid var(--line);
  }
  .trust-item:last-child{border-left:none;}
  .trust-item .icon{width:26px;height:26px;stroke:var(--gold);flex-shrink:0;}
  .trust-item .t-title{font-size:13.5px;font-weight:700;display:block;}
  .trust-item .t-sub{font-size:11.5px;color:var(--text-soft);}

  /* ============ FOOTER ============ */
  footer{background:var(--green);color:#d8dbd0;padding-top:64px;}
  .footer-grid{
    display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr 1.3fr 1.2fr;
    gap:26px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,.1);
  }
  .contact-list li{
    display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;
    font-size:13.5px;color:#b7bbab;line-height:1.7;
  }
  .contact-list li .icon{width:17px;height:17px;stroke:var(--gold-light);flex-shrink:0;margin-top:2px;}
  .contact-list li a{color:#b7bbab;transition:color .2s ease;}
  .contact-list li a:hover{color:var(--gold-light);}
  .footer-brand .logo-f{display:flex;align-items:center;gap:8px;margin-bottom:16px;}
  .footer-brand .logo-f .word{color:var(--gold-light);font-size:20px;font-weight:800;letter-spacing:1.5px;}
  .footer-brand p{font-size:13px;color:#a9ad9e;max-width:230px;}
  footer h5{color:var(--white);font-size:14.5px;font-weight:700;margin-bottom:18px;}
  footer .footer-grid ul li{margin-bottom:11px;}
  footer .footer-grid ul li a{font-size:13.5px;color:#b7bbab;transition:color .2s ease;}
  footer .footer-grid ul li a:hover{color:var(--gold-light);}
  .newsletter-form{display:flex;margin-top:14px;border:1px solid rgba(255,255,255,.25);}
  .newsletter-form input{
    flex:1;background:transparent;border:none;padding:12px 14px;color:var(--white);font-size:13px;font-family:inherit;
  }
  .newsletter-form input::placeholder{color:#8b8f7e;}
  .newsletter-form button{background:var(--gold);color:var(--ink);padding:0 18px;font-weight:700;font-size:13px;}
  .footer-bottom{
    display:flex;justify-content:space-between;align-items:center;padding:22px 0;font-size:12.5px;color:#8b8f7e;flex-wrap:wrap;gap:10px;
  }
  .footer-bottom .socials{display:flex;gap:14px;}
  .footer-bottom .socials a{width:32px;height:32px;border:1px solid rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;}
  .footer-bottom .socials .icon{width:15px;height:15px;stroke:#c7cabb;}

  /* ============ RESPONSIVE ============ */
  @media (max-width:1080px){
    .collection-grid{grid-template-columns:repeat(3,1fr);}
    .product-grid{grid-template-columns:repeat(3,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr 1fr;}
    .trust-inner{grid-template-columns:repeat(2,1fr);}
    .trust-item{border-left:none;border-bottom:1px solid var(--line);}
  }
  @media (max-width:900px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-media{order:-1;}
    .hero-media img{min-height:280px;}
    .hero-text{margin-inline-start:0;max-width:100%;padding:44px 24px;}
    .story{grid-template-columns:1fr;}
    .story-text{padding:50px 30px;max-width:100%;}
    .testimonial-slider{gap:10px;}
    .t-arrow{width:36px;height:36px;}
    .t-arrow .icon{width:15px;height:15px;}
    .t-card{padding:26px 20px;}
  }
  @media (max-width:760px){
    .search-panel, .account-panel, .cart-panel{
      max-width:calc(100vw - 56px);
    }
    nav.main-nav{
      position:fixed;inset:0 0 0 auto;top:0;height:100vh;width:280px;max-width:85vw;
      background:rgba(255,253,250,.72);
      -webkit-backdrop-filter:blur(22px) saturate(180%);
      backdrop-filter:blur(22px) saturate(180%);
      border-right:1px solid rgba(255,255,255,.5);
      flex-direction:column;align-items:flex-start;
      padding:90px 24px 24px;gap:0;
      transform:translateX(100%);
      transition:transform .3s ease;
      box-shadow:10px 0 30px rgba(0,0,0,.14);
      overflow-y:auto;
      z-index:250;
    }
    body.nav-open nav.main-nav{transform:translateX(0);}
    body.nav-open::after{
      content:"";position:fixed;inset:0;
      background:rgba(20,24,16,.35);
      z-index:150;
    }
    nav.main-nav > ul{flex-direction:column;width:100%;gap:0;}
    nav.main-nav > ul > li{width:100%;border-bottom:1px solid var(--line);}
    nav.main-nav > ul > li > a{padding:16px 4px;}
    .dropdown{
      position:static;transform:none;box-shadow:none;border:none;
      display:none;opacity:1;visibility:visible;padding:0 0 10px 14px;
    }
    li.has-dropdown.open .dropdown{display:block;}
    li.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:none;display:none;}
    li.has-dropdown.open .dropdown{display:block;}
    .burger{display:block;}
    .collection-grid{grid-template-columns:repeat(2,1fr);}
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .hero-text h1{font-size:38px;}
  }
  @media (max-width:480px){
    .collection-grid{grid-template-columns:repeat(2,1fr);}
    .product-grid{grid-template-columns:1fr 1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .header-icons{gap:12px;}
    .hero-badges{gap:20px;}
    .hero-badges .badge{width:80px;}
    .panel{
      position:fixed;
      top:76px;left:50%;right:auto;
      transform:translate(-50%,6px) scale(.97);
      transform-origin:top center;
      width:calc(100vw - 32px);
      max-width:340px;
    }
    .panel.open{transform:translate(-50%,0) scale(1);}
  }
