/*
Theme Name: باماسلام
Theme URI: https://example.com
Author: Bamaslam
Author URI: https://example.com
Description: قالب اختصاصی فروشگاه اینترنتی لوازم خانگی باماسلام. طراحی بر پایه رنگ‌بندی سرمه‌ای و طلایی مسی با موتیف "دیال کنترل".
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bamaslam
Tags: e-commerce, custom-menu, rtl-language-support, translation-ready
*/


  /* ===========================================================
     DESIGN TOKENS
     Palette: deep navy (boardroom trust) + brushed-gold accent
     (luxury warmth) + soft ivory. Same variable names as before
     so every component below inherits the new palette for free.
     Signature motif: the appliance "control dial" — a ticked
     ring used for category icons, ratings, and dividers.
  =========================================================== */
  :root{
    --ink-900:#0A0F1E;
    --ink-800:#0F1626;
    --ink-700:#182238;
    --steel-600:#33405C;
    --steel-300:#98A2BD;
    --cream-50:#FAF8F2;
    --cream-100:#F1EADA;
    --copper-500:#C9A24A;
    --copper-400:#DFC17A;
    --copper-600:#A8822F;
    --forest-600:#1E5C4A;
    --forest-100:#E3EFEA;
    --ink-text:#171B2A;
    --slate-text:#5B6272;
    --white:#FFFFFF;
    --radius-lg:18px;
    --radius-md:12px;
    --radius-sm:8px;
    --shadow-soft: 0 12px 32px -16px rgba(17,20,26,0.28);
    --shadow-lift: 0 20px 44px -18px rgba(17,20,26,0.38);
    --maxw:1280px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Vazirmatn',sans-serif;
    background:var(--cream-50);
    color:var(--ink-text);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{display:block;}
  a{color:inherit;text-decoration:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
  ul{list-style:none;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
  .visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);}

  :focus-visible{
    outline:2.5px solid var(--copper-500);
    outline-offset:3px;
    border-radius:6px;
  }

  .icon{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
  .icon-fill{fill:currentColor;stroke:none;}

  /* ===========================================================
     TOP UTILITY BAR
  =========================================================== */
  .topbar{
    background:var(--ink-900);
    color:var(--steel-300);
    font-size:13px;
  }
  .topbar .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:9px;
    padding-bottom:9px;
    gap:24px;
    flex-wrap:wrap;
  }
  .topbar-contact{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
  .topbar-contact a, .topbar-hours{display:flex;align-items:center;gap:7px;color:var(--steel-300);transition:color .15s;}
  .topbar-contact a:hover{color:var(--copper-400);}
  .topbar .icon{width:15px;height:15px;}
  .topbar-hours{color:var(--steel-300);}
  .topbar-hours b{color:var(--cream-100);font-weight:600;}

  /* ===========================================================
     MAIN HEADER
  =========================================================== */
  header.site-header{
    background:var(--ink-900);
    border-bottom:1px solid var(--ink-700);
    position:sticky;
    top:0;
    z-index:50;
  }
  .main-nav-row{
    display:flex;
    align-items:center;
    gap:32px;
    padding-top:16px;
    padding-bottom:16px;
  }

  .brand{display:flex;align-items:center;gap:10px;flex-shrink:0;}
  .brand-mark{
    width:42px;height:42px;
    border-radius:50%;
    border:2px solid var(--copper-500);
    display:flex;align-items:center;justify-content:center;
    position:relative;
  }
  .brand-mark::before{
    content:"";
    width:5px;height:5px;
    background:var(--copper-500);
    border-radius:50%;
    position:absolute;
    top:5px;
    left:50%;
    transform:translateX(-50%);
  }
  .brand-mark span{
    font-weight:800;color:var(--cream-100);font-size:15px;
  }
  .brand-text{display:flex;flex-direction:column;}
  .brand-text strong{
    font-size:19px;font-weight:800;color:var(--cream-50);letter-spacing:.2px;
  }
  .brand-text small{
    font-size:11.5px;color:var(--steel-300);font-weight:500;
  }

  nav.primary-links{display:flex;align-items:center;gap:30px;flex:1;justify-content:center;}
  nav.primary-links a{
    color:var(--cream-100);
    font-size:14.5px;
    font-weight:500;
    position:relative;
    padding:6px 2px;
    transition:color .15s;
  }
  nav.primary-links a::after{
    content:"";
    position:absolute;
    right:0;left:0;bottom:0;
    height:2px;
    background:var(--copper-500);
    transform:scaleX(0);
    transition:transform .2s ease;
  }
  nav.primary-links a:hover{color:var(--cream-50);}
  nav.primary-links a:hover::after{transform:scaleX(1);}

  .header-actions{display:flex;align-items:center;gap:18px;flex-shrink:0;}
  .header-icon-btn{
    display:flex;align-items:center;gap:8px;
    color:var(--cream-100);
    font-size:13.5px;
    font-weight:500;
    padding:8px 10px;
    border-radius:var(--radius-sm);
    transition:background .15s, color .15s;
    position:relative;
  }
  .header-icon-btn:hover{background:var(--ink-700);color:var(--cream-50);}
  .cart-count{
    position:absolute;
    top:0px;right:0px;
    background:var(--copper-500);
    color:var(--ink-900);
    font-size:10.5px;
    font-weight:800;
    width:17px;height:17px;
    display:flex;align-items:center;justify-content:center;
    border-radius:50%;
    transform:translate(35%,-35%);
  }
  .menu-toggle{display:none;}

  /* search row */
  .search-row{padding-bottom:18px;}
  .search-bar{
    display:flex;
    align-items:center;
    background:var(--ink-700);
    border:1px solid var(--steel-600);
    border-radius:999px;
    overflow:hidden;
    transition:border-color .15s;
  }
  .search-bar:hover, .search-bar:focus-within{border-color:var(--copper-500);}
  .search-bar select{
    background:transparent;
    color:var(--cream-100);
    font-family:inherit;
    font-size:13.5px;
    padding:13px 18px;
    border-left:1px solid var(--steel-600);
    flex-shrink:0;
  }
  .search-bar input{
    flex:1;
    background:transparent;
    border:none;
    color:var(--cream-50);
    font-family:inherit;
    font-size:14px;
    padding:13px 6px 13px 18px;
  }
  .search-bar input::placeholder{color:var(--steel-300);}
  .search-bar button{
    background:var(--copper-500);
    color:var(--ink-900);
    padding:13px 22px;
    display:flex;align-items:center;gap:8px;
    font-size:13.5px;font-weight:700;
    transition:background .15s;
    flex-shrink:0;
  }
  .search-bar button:hover{background:var(--copper-400);}

  /* ===========================================================
     HERO
  =========================================================== */
  .hero{
    background:var(--ink-900);
    position:relative;
    overflow:hidden;
    border-bottom:1px solid var(--ink-700);
  }
  .hero::before{
    content:"";
    position:absolute;
    width:620px;height:620px;
    border-radius:50%;
    border:1px solid rgba(194,121,63,.18);
    top:-220px;left:-160px;
  }
  .hero::after{
    content:"";
    position:absolute;
    width:420px;height:420px;
    border-radius:50%;
    border:1px solid rgba(194,121,63,.12);
    top:-90px;left:-30px;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:56px;
    align-items:center;
    padding-top:76px;
    padding-bottom:76px;
    position:relative;
    z-index:1;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--copper-400);
    font-size:13px;
    font-weight:700;
    letter-spacing:.3px;
    margin-bottom:18px;
  }
  .hero-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--copper-500);}
  .hero h1{
    font-size:44px;
    line-height:1.32;
    font-weight:800;
    color:var(--cream-50);
    margin-bottom:20px;
    letter-spacing:-.3px;
  }
  .hero h1 em{color:var(--copper-400);font-style:normal;}
  .hero p.lead{
    font-size:16px;
    color:var(--steel-300);
    max-width:480px;
    margin-bottom:32px;
  }
  .hero-ctas{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:40px;}
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:14px 26px;
    border-radius:999px;
    font-size:14.5px;
    font-weight:700;
    transition:transform .15s, box-shadow .15s, background .15s, color .15s;
  }
  .btn-primary{background:var(--copper-500);color:var(--ink-900);}
  .btn-primary:hover{background:var(--copper-400);transform:translateY(-1px);box-shadow:var(--shadow-soft);}
  .btn-ghost{border:1.5px solid var(--steel-600);color:var(--cream-100);}
  .btn-ghost:hover{border-color:var(--copper-500);color:var(--copper-400);}
  .btn-dark{background:var(--ink-900);color:var(--cream-50);}
  .btn-dark:hover{background:var(--ink-700);}

  .hero-trustline{display:flex;align-items:center;gap:26px;flex-wrap:wrap;}
  .hero-trustline div{display:flex;align-items:center;gap:9px;color:var(--steel-300);font-size:13px;font-weight:500;}
  .hero-trustline .icon{color:var(--copper-400);width:18px;height:18px;}

  .hero-stats{
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:34px;
    padding-top:28px;
    border-top:1px solid var(--ink-700);
  }
  .hero-stats div{display:flex;flex-direction:column;gap:3px;}
  .hero-stats strong{font-size:22px;font-weight:800;color:var(--cream-50);letter-spacing:-.2px;}
  .hero-stats span{font-size:12px;color:var(--steel-300);}
  .hero-stats .sep{width:1px;height:30px;background:var(--ink-700);}

  /* hero visual: abstract appliance illustration, no stock photo */
  .hero-visual{
    position:relative;
    aspect-ratio:1/0.92;
    border-radius:28px;
    background:linear-gradient(155deg, #1B2540 0%, #0C1120 70%);
    border:1px solid var(--ink-700);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow-lift);
  }
  .dial-display{
    width:62%;
    aspect-ratio:1.78/1;
    border-radius:14px;
    background:linear-gradient(135deg,#243255,#111827);
    border:1px solid var(--steel-600);
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
  }
  .dial-display .glow{
    position:absolute;inset:10px;
    border-radius:9px;
    background:radial-gradient(circle at 30% 30%, rgba(194,121,63,.22), transparent 60%);
  }
  .dial-display strong{position:relative;z-index:1;color:var(--cream-50);font-size:13px;font-weight:700;letter-spacing:2px;}
  .dial-display span{position:relative;z-index:1;color:var(--steel-300);font-size:11px;}
  .dial-ring{
    position:absolute;
    width:108px;height:108px;
    border-radius:50%;
    border:2px solid var(--copper-500);
    bottom:-30px;left:-30px;
    background:var(--ink-800);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 10px 26px -10px rgba(0,0,0,.5);
  }
  .dial-ring::before{
    content:"";
    width:4px;height:4px;
    background:var(--copper-400);
    border-radius:50%;
    position:absolute;top:14px;left:50%;
    transform:translateX(-50%);
  }
  .dial-ring .icon{width:34px;height:34px;color:var(--cream-100);}
  .float-card{
    position:absolute;
    top:24px;right:-18px;
    background:var(--cream-50);
    border-radius:14px;
    padding:13px 16px;
    display:flex;align-items:center;gap:10px;
    box-shadow:var(--shadow-soft);
  }
  .float-card .icon{width:22px;height:22px;color:var(--forest-600);}
  .float-card div strong{display:block;font-size:13px;font-weight:700;color:var(--ink-text);}
  .float-card div span{font-size:11px;color:var(--slate-text);}

  /* ===========================================================
     SECTION HEADINGS (shared)
  =========================================================== */
  .section{padding-top:72px;padding-bottom:72px;}
  .section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:38px;
    flex-wrap:wrap;
  }
  .section-head .eyebrow{
    color:var(--copper-600);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:8px;
    display:block;
  }
  .section-head h2{font-size:28px;font-weight:800;color:var(--ink-text);letter-spacing:-.2px;}
  .section-head p{font-size:14px;color:var(--slate-text);margin-top:6px;max-width:460px;}
  .section-link{
    display:flex;align-items:center;gap:6px;
    color:var(--copper-600);
    font-size:14px;font-weight:700;
    border-bottom:1.5px solid transparent;
    transition:border-color .15s;
    flex-shrink:0;
  }
  .section-link:hover{border-color:var(--copper-500);}
  .section-link .icon{width:16px;height:16px;}

  /* ===========================================================
     CATEGORY RAIL
  =========================================================== */
  .cat-section{background:var(--cream-100);}
  .cat-rail{
    display:grid;
    grid-template-columns:repeat(10,minmax(105px,1fr));
    gap:14px;
  }
  .cat-card{
    background:linear-gradient(165deg,var(--white) 0%,var(--cream-50) 100%);
    border:1px solid #EAE3D3;
    border-radius:var(--radius-lg);
    padding:24px 12px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    text-align:center;
    box-shadow:0 6px 18px -14px rgba(17,20,26,0.35);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .cat-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);border-color:var(--copper-400);}
  .cat-dial{
    width:60px;height:60px;
    border-radius:50%;
    background:radial-gradient(circle at 32% 28%, var(--cream-50) 0%, var(--cream-100) 100%);
    border:1.5px solid var(--copper-400);
    display:flex;align-items:center;justify-content:center;
    position:relative;
    margin-bottom:6px;
    transition:border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .cat-dial::before{
    content:"";width:4px;height:4px;border-radius:50%;
    background:var(--copper-500);
    position:absolute;top:7px;left:50%;transform:translateX(-50%);
    transition:background .18s;
  }
  .cat-card:hover .cat-dial{border-color:var(--copper-500);background:var(--ink-900);transform:scale(1.06);}
  .cat-card:hover .cat-dial::before{background:var(--copper-400);}
  .cat-dial .icon{width:27px;height:27px;color:var(--ink-700);transition:color .2s ease;}
  .cat-card:hover .cat-dial .icon{color:var(--copper-400);}
  .cat-card span{font-size:13.5px;font-weight:700;color:var(--ink-text);}
  .cat-card small{font-size:11px;font-weight:500;color:var(--slate-text);}

  /* ===========================================================
     PRODUCTS GRID
  =========================================================== */
  .products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  .product-card{
    background:var(--white);
    border:1px solid #ECE7DC;
    border-radius:var(--radius-lg);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .18s, box-shadow .18s;
  }
  .product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);}
  .product-media{
    aspect-ratio:1/0.86;
    position:relative;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
  }
  .product-media .icon{width:64px;height:64px;color:var(--white);opacity:.92;transition:transform .35s ease;}
  .product-card:hover .product-media .icon{transform:scale(1.08) rotate(-2deg);}
  .media-1{background:linear-gradient(150deg,#324062,#141B2E);}
  .media-2{background:linear-gradient(150deg,#1F4E52,#122024);}
  .media-3{background:linear-gradient(150deg,#5C4A28,#241C10);}
  .media-4{background:linear-gradient(150deg,#3A4A3E,#17201A);}
  .product-tag{
    position:absolute;top:14px;right:14px;
    background:rgba(250,248,244,.94);
    color:var(--ink-text);
    font-size:11.5px;font-weight:700;
    padding:5px 12px;
    border-radius:999px;
  }
  .product-tag.bestseller{color:var(--copper-600);}
  .product-tag.editors{color:var(--forest-600);}
  .wishlist-btn{
    position:absolute;top:14px;left:14px;
    width:34px;height:34px;
    border-radius:50%;
    background:rgba(250,248,244,.94);
    display:flex;align-items:center;justify-content:center;
    transition:background .15s, transform .15s;
  }
  .wishlist-btn .icon{width:16px;height:16px;color:var(--ink-text);transition:color .15s, fill .15s;}
  .wishlist-btn:hover{transform:scale(1.08);}
  .wishlist-btn.active .icon{color:#C24545;fill:#C24545;}
  .product-body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:10px;flex:1;}
  .product-body h3{font-size:15.5px;font-weight:700;color:var(--ink-text);}
  .stars{display:flex;align-items:center;gap:6px;}
  .stars .icon{width:14px;height:14px;color:var(--copper-500);}
  .stars .icon.off{color:#DDD6C8;}
  .stars span{font-size:12px;color:var(--slate-text);margin-right:2px;}
  .price-row{display:flex;align-items:baseline;justify-content:space-between;margin-top:auto;}
  .price{font-size:18px;font-weight:800;color:var(--ink-text);}
  .price small{font-size:12px;font-weight:500;color:var(--slate-text);margin-right:4px;}
  .price-note{font-size:11px;color:var(--forest-600);font-weight:600;}

  /* ===========================================================
     CART DRAWER
  =========================================================== */
  .cart-overlay{
    position:fixed;inset:0;
    background:rgba(10,15,30,.55);
    backdrop-filter:blur(2px);
    opacity:0;visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
    z-index:90;
  }
  .cart-overlay.open{opacity:1;visibility:visible;}
  .cart-drawer{
    position:fixed;top:0;bottom:0;left:0;
    width:min(420px,92vw);
    background:var(--cream-50);
    box-shadow:24px 0 60px -20px rgba(10,15,30,.5);
    z-index:91;
    display:flex;flex-direction:column;
    transform:translateX(-100%);
    transition:transform .35s cubic-bezier(.4,0,.2,1);
  }
  .cart-drawer.open{transform:translateX(0);}
  .cart-drawer-head{
    background:var(--ink-900);
    color:var(--cream-50);
    padding:20px 24px;
    display:flex;align-items:center;justify-content:space-between;
    flex-shrink:0;
  }
  .cart-drawer-head strong{font-size:16.5px;font-weight:800;display:flex;align-items:center;gap:9px;}
  .cart-drawer-head strong .icon{width:19px;height:19px;color:var(--copper-400);}
  .cart-drawer-close{
    width:34px;height:34px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--cream-100);
    transition:background .15s;
  }
  .cart-drawer-close:hover{background:var(--ink-700);}
  .cart-drawer-close .icon{width:18px;height:18px;}

  .cart-drawer-body{flex:1;overflow-y:auto;padding:18px 22px;display:flex;flex-direction:column;gap:14px;}
  .cart-item{
    display:flex;gap:14px;
    background:var(--white);
    border:1px solid #ECE7DC;
    border-radius:var(--radius-md);
    padding:14px;
    position:relative;
  }
  .cart-item-media{
    width:64px;height:64px;flex-shrink:0;
    border-radius:var(--radius-sm);
    display:flex;align-items:center;justify-content:center;
  }
  .cart-item-media .icon{width:30px;height:30px;color:var(--white);}
  .cart-item-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:6px;}
  .cart-item-body h4{font-size:14px;font-weight:700;color:var(--ink-text);}
  .cart-item-unit{font-size:11.5px;color:var(--slate-text);}
  .cart-item-row{display:flex;align-items:center;justify-content:space-between;margin-top:auto;}
  .qty-stepper{
    display:flex;align-items:center;
    border:1px solid var(--cream-100);
    background:var(--cream-100);
    border-radius:999px;
    overflow:hidden;
  }
  .qty-stepper button{
    width:26px;height:26px;
    display:flex;align-items:center;justify-content:center;
    font-size:15px;font-weight:700;color:var(--ink-700);
    transition:background .15s, color .15s;
  }
  .qty-stepper button:hover{background:var(--copper-500);color:var(--ink-900);}
  .qty-stepper span{width:22px;text-align:center;font-size:13px;font-weight:700;color:var(--ink-text);}
  .cart-item-price{font-size:13.5px;font-weight:800;color:var(--ink-text);}
  .cart-item-remove{
    position:absolute;top:10px;left:10px;
    width:24px;height:24px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--slate-text);
    transition:background .15s, color .15s;
  }
  .cart-item-remove:hover{background:var(--forest-100);color:#C24545;}
  .cart-item-remove .icon{width:13px;height:13px;}

  .cart-empty{display:none;flex-direction:column;align-items:center;text-align:center;gap:14px;margin:auto;padding:40px 10px;}
  .cart-empty .cat-dial{width:64px;height:64px;}
  .cart-empty .cat-dial .icon{width:28px;height:28px;}
  .cart-empty p{font-size:13.5px;color:var(--slate-text);max-width:240px;}
  .cart-empty a{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--ink-900);color:var(--cream-50);
    font-size:13px;font-weight:700;
    padding:11px 20px;border-radius:999px;
    transition:background .15s;
  }
  .cart-empty a:hover{background:var(--copper-600);}

  .cart-drawer-foot{
    flex-shrink:0;padding:18px 22px 22px;
    border-top:1px solid #ECE7DC;
    background:var(--white);
    display:flex;flex-direction:column;gap:12px;
  }
  .cart-trust{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
  .cart-trust span{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--slate-text);font-weight:600;}
  .cart-trust .icon{width:14px;height:14px;color:var(--forest-600);}
  .cart-summary-row{display:flex;align-items:center;justify-content:space-between;font-size:13.5px;color:var(--slate-text);}
  .cart-summary-row.total{font-size:16px;font-weight:800;color:var(--ink-text);padding-top:10px;border-top:1px dashed #E2DBCB;}
  .cart-summary-row.total small{font-size:12px;font-weight:500;color:var(--slate-text);margin-right:4px;}
  .cart-checkout-btn{
    display:flex;align-items:center;justify-content:center;gap:9px;
    background:var(--copper-500);color:var(--ink-900);
    font-size:14.5px;font-weight:800;
    padding:14px;border-radius:999px;
    transition:background .15s, transform .15s;
  }
  .cart-checkout-btn:hover{background:var(--copper-400);transform:translateY(-1px);}
  .cart-checkout-btn .icon{width:17px;height:17px;}
  .cart-continue{text-align:center;font-size:12.5px;color:var(--slate-text);font-weight:600;}
  .cart-continue:hover{color:var(--copper-600);}
  @media (max-width:480px){
    .cart-drawer{width:100vw;}
  }
  .add-cart-btn{
    margin-top:10px;
    display:flex;align-items:center;justify-content:center;gap:9px;
    background:var(--ink-900);
    color:var(--cream-50);
    padding:12px;
    border-radius:var(--radius-md);
    font-size:13.5px;font-weight:700;
    transition:background .15s;
  }
  .add-cart-btn:hover{background:var(--copper-600);}
  .add-cart-btn .icon{width:17px;height:17px;}

  /* ===========================================================
     ABOUT US
  =========================================================== */
  .about-section{background:var(--cream-50);}
  .about-grid{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:56px;
    align-items:center;
  }
  .about-content .eyebrow{
    color:var(--copper-600);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:10px;
    display:block;
  }
  .about-content h2{
    font-size:30px;
    font-weight:800;
    color:var(--ink-text);
    letter-spacing:-.2px;
    line-height:1.45;
    margin-bottom:16px;
  }
  .about-content > p{
    font-size:14.5px;
    color:var(--slate-text);
    max-width:480px;
    margin-bottom:26px;
  }
  .about-list{display:flex;flex-direction:column;gap:16px;margin-bottom:30px;}
  .about-list li{display:flex;align-items:flex-start;gap:14px;}
  .about-list .icon{
    width:19px;height:19px;
    flex-shrink:0;
    color:var(--copper-600);
    margin-top:2px;
  }
  .about-list li strong{display:block;font-size:14.5px;font-weight:700;color:var(--ink-text);margin-bottom:2px;}
  .about-list li span{font-size:13px;color:var(--slate-text);}
  .about-stats{
    display:flex;
    align-items:center;
    gap:22px;
    padding:20px 0 30px;
    flex-wrap:wrap;
  }
  .about-stats div{display:flex;flex-direction:column;gap:3px;}
  .about-stats strong{font-size:22px;font-weight:800;color:var(--ink-text);letter-spacing:-.2px;}
  .about-stats span{font-size:12px;color:var(--slate-text);}
  .about-stats .sep{width:1px;height:30px;background:#E2DBCB;}

  /* ===========================================================
     ADVISORY / EDITORIAL BANNER
  =========================================================== */
  .advisory{
    background:var(--ink-900);
    border-radius:var(--radius-lg);
    padding:48px 44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
  }
  .advisory-text strong{display:block;color:var(--cream-50);font-size:21px;font-weight:800;margin-bottom:8px;}
  .advisory-text p{color:var(--steel-300);font-size:14px;max-width:480px;}

  /* ===========================================================
     TRUST STRIP
  =========================================================== */
  .trust-section{background:var(--cream-100);}
  .trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  .trust-card{
    background:var(--white);
    border:1px solid #E7E1D5;
    border-radius:var(--radius-lg);
    padding:26px 22px;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .trust-icon{
    width:48px;height:48px;
    border-radius:50%;
    background:var(--forest-100);
    display:flex;align-items:center;justify-content:center;
  }
  .trust-icon .icon{width:23px;height:23px;color:var(--forest-600);}
  .trust-card h4{font-size:15px;font-weight:700;color:var(--ink-text);}
  .trust-card p{font-size:13px;color:var(--slate-text);}

  /* ===========================================================
     FAQ
  =========================================================== */
  .faq-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:760px;
  }
  .faq-item{
    background:var(--white);
    border:1px solid #E7E1D5;
    border-radius:var(--radius-md);
    padding:6px 22px;
  }
  .faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:16px 0;
    font-size:15px;
    font-weight:700;
    color:var(--ink-text);
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item .faq-caret{width:16px;height:16px;color:var(--copper-500);flex-shrink:0;transition:transform .2s ease;}
  .faq-item[open] .faq-caret{transform:rotate(-90deg);}
  .faq-item p{font-size:13.5px;color:var(--slate-text);padding:0 0 18px;max-width:640px;}

  /* ===========================================================
     TESTIMONIALS
  =========================================================== */
  .testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  .testi-card{
    background:var(--ink-900);
    border-radius:var(--radius-lg);
    padding:28px 26px;
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .testi-card .ic-quote-wrap{width:30px;height:30px;color:var(--copper-500);}
  .testi-card p{font-size:14px;color:var(--cream-100);line-height:1.85;}
  .testi-footer{display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:6px;}
  .testi-avatar{
    width:38px;height:38px;border-radius:50%;
    background:linear-gradient(135deg,var(--copper-500),var(--copper-600));
    display:flex;align-items:center;justify-content:center;
    color:var(--cream-50);font-size:13px;font-weight:800;flex-shrink:0;
  }
  .testi-meta strong{display:block;font-size:13px;font-weight:700;color:var(--cream-50);}
  .testi-meta span{font-size:11.5px;color:var(--steel-300);}
  .testi-stars{display:flex;gap:3px;margin-bottom:-4px;}
  .testi-stars .icon{width:13px;height:13px;color:var(--copper-500);}

  /* ===========================================================
     NEWSLETTER
  =========================================================== */
  .newsletter{
    background:var(--cream-100);
    border:1px solid #E7E1D5;
    border-radius:var(--radius-lg);
    padding:42px 44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
  }
  .newsletter-text strong{display:block;font-size:19px;font-weight:800;color:var(--ink-text);margin-bottom:6px;}
  .newsletter-text p{font-size:13.5px;color:var(--slate-text);max-width:380px;}
  .newsletter-form{display:flex;gap:10px;flex-wrap:wrap;}
  .newsletter-field{
    display:flex;align-items:center;gap:10px;
    background:var(--white);
    border:1px solid #DED7C8;
    border-radius:999px;
    padding:0 20px;
    width:260px;
    max-width:100%;
    transition:border-color .15s;
  }
  .newsletter-field:focus-within{border-color:var(--copper-500);}
  .newsletter-field .icon{width:16px;height:16px;color:var(--slate-text);flex-shrink:0;}
  .newsletter-field input{
    flex:1;
    background:transparent;
    border:none;
    font-family:inherit;
    font-size:13.5px;
    padding:13px 0;
    color:var(--ink-text);
  }
  .newsletter-field input:focus{outline:none;}
  .newsletter-field input::placeholder{color:var(--slate-text);}
  .newsletter-status{
    flex-basis:100%;
    font-size:12.5px;
    font-weight:700;
    min-height:1px;
  }
  .newsletter-status:empty{display:none;}
  .newsletter-status.error{color:#C24545;}
  .newsletter-status.success{color:var(--forest-600);}
  .newsletter-form button{
    background:var(--ink-900);
    color:var(--cream-50);
    padding:13px 24px;
    border-radius:999px;
    font-size:13.5px;font-weight:700;
    display:flex;align-items:center;gap:8px;
    transition:background .15s;
    flex-shrink:0;
  }
  .newsletter-form button:hover{background:var(--copper-600);}

  /* ===========================================================
     FOOTER TRUST BADGES
  =========================================================== */
  .footer-badges{display:flex;align-items:center;gap:14px;margin-top:18px;flex-wrap:wrap;}
  .footer-badge{
    display:flex;align-items:center;gap:8px;
    border:1px solid var(--ink-700);
    border-radius:10px;
    padding:9px 13px;
    font-size:11.5px;
    color:var(--steel-300);
  }
  .footer-badge .icon{width:17px;height:17px;color:var(--copper-400);}

  /* ===========================================================
     FOOTER
  =========================================================== */
  footer{background:var(--ink-900);color:var(--steel-300);}
  .footer-top{
    padding-top:60px;padding-bottom:44px;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:36px;
    border-bottom:1px solid var(--ink-700);
  }
  .footer-brand p{font-size:13.5px;line-height:1.8;margin-top:14px;max-width:300px;}
  .footer-col h5{color:var(--cream-50);font-size:14px;font-weight:700;margin-bottom:16px;}
  .footer-col ul{display:flex;flex-direction:column;gap:11px;}
  .footer-col a{font-size:13.5px;color:var(--steel-300);transition:color .15s;}
  .footer-col a:hover{color:var(--copper-400);}
  .footer-contact li{display:flex;align-items:center;gap:9px;font-size:13.5px;}
  .footer-contact .icon{width:16px;height:16px;color:var(--copper-400);}
  .ltr-num{
    direction:ltr;
    unicode-bidi:isolate;
    font-family:'Segoe UI', Arial, sans-serif;
    font-weight:700;
    letter-spacing:.3px;
  }
  .footer-bottom{
    padding-top:20px;padding-bottom:20px;
    display:flex;align-items:center;justify-content:space-between;
    font-size:12.5px;
    flex-wrap:wrap;
    gap:10px;
  }
  .footer-social{display:flex;gap:10px;}
  .footer-social a{
    width:34px;height:34px;border-radius:50%;
    border:1px solid var(--ink-700);
    display:flex;align-items:center;justify-content:center;
    transition:border-color .15s, color .15s;
  }
  .footer-social a:hover{border-color:var(--copper-500);color:var(--copper-400);}
  .footer-social .icon{width:15px;height:15px;}

  /* ===========================================================
     SCROLL REVEAL
  =========================================================== */
  .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ===========================================================
     RESPONSIVE
  =========================================================== */
  @media (max-width:1100px){
    .cat-rail{grid-template-columns:repeat(5,minmax(110px,1fr));}
    .products-grid{grid-template-columns:repeat(2,1fr);}
    .trust-grid{grid-template-columns:repeat(2,1fr);}
    .testi-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:860px){
    nav.primary-links{display:none;}
    .menu-toggle{display:flex;}
    .header-actions{gap:8px;}
    .header-icon-btn{padding:8px;}
    .header-icon-btn .btn-label{display:none;}
    .hero .wrap{grid-template-columns:1fr;padding-top:48px;padding-bottom:48px;}
    .hero-visual{order:-1;max-width:420px;margin:0 auto;}
    .about-grid{grid-template-columns:1fr;}
    .about-content > p{max-width:none;}
    .hero h1{font-size:32px;}
    .float-card{display:none;}
    .hero-stats{flex-wrap:wrap;gap:20px;}
    .newsletter{flex-direction:column;align-items:flex-start;text-align:right;padding:32px 26px;}
    .newsletter-form{width:100%;}
    .newsletter-field{width:100%;}
    .cat-rail{grid-template-columns:repeat(4,minmax(90px,1fr));}
    .advisory{padding:32px 26px;}
    .footer-top{gap:28px;padding-top:44px;padding-bottom:32px;}
    .page-hero{padding:38px 0;}
    .entry-content-wrap .entry-content{padding:28px 26px;}
    .archive-list article{padding:20px 22px;}
  }
  @media (max-width:640px){
    .wrap{padding:0 18px;}
    .topbar .wrap{font-size:12px;gap:10px 18px;}
    .topbar-hours{display:none;}
    .brand-text small{display:none;}
    .search-bar select{display:none;}
    .search-bar input{padding:12px 6px 12px 14px;font-size:13.5px;}
    .search-bar button{padding:12px 16px;}
    .search-bar button span{display:none;}
    .cat-rail{grid-template-columns:repeat(2,1fr);gap:10px;}
    .cat-card{padding:18px 8px 14px;}
    .cat-dial{width:52px;height:52px;}
    .cat-dial .icon{width:23px;height:23px;}
    .cat-card span{font-size:12.5px;}
    .cat-card small{font-size:10px;}
    .section{padding-top:52px;padding-bottom:52px;}
    .section-head h2{font-size:22px;}
    .products-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
    .product-body{padding:12px 12px 14px;gap:7px;}
    .product-body h3{font-size:13px;line-height:1.4;}
    .product-media .icon{width:44px;height:44px;}
    .product-tag{font-size:10px;padding:4px 9px;top:10px;right:10px;}
    .wishlist-btn{width:28px;height:28px;top:10px;left:10px;}
    .wishlist-btn .icon{width:14px;height:14px;}
    .stars .icon{width:12px;height:12px;}
    .stars span{font-size:10.5px;}
    .price{font-size:15px;}
    .price small{font-size:10.5px;}
    .price-note{font-size:10px;}
    .add-cart-btn{font-size:12px;padding:10px;gap:6px;}
    .add-cart-btn .icon{width:15px;height:15px;}
    .trust-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;text-align:right;}
    .advisory{flex-direction:column;align-items:flex-start;text-align:right;}
    .section-head{align-items:flex-start;}
    .hero h1{font-size:27px;line-height:1.4;}
    .hero-stats .sep{display:none;}
    .hero-ctas{flex-direction:column;align-items:stretch;gap:10px;}
    .hero-ctas .btn{justify-content:center;}
    .about-content h2{font-size:24px;}
    .page-hero .wrap h1{font-size:23px;}
    .advisory{padding:26px 20px;}
    .advisory-text strong{font-size:18px;}
    .newsletter{padding:26px 20px;}
  }
  @media (max-width:380px){
    .wrap{padding:0 14px;}
    .cat-rail{grid-template-columns:repeat(2,1fr);gap:8px;}
    .products-grid{gap:9px;}
    .hero h1{font-size:23px;}
    .section-head h2{font-size:19px;}
  }

/* ===========================================================
   INNER PAGE / SINGLE / ARCHIVE CONTENT (theme addition)
=========================================================== */
.page-hero{
  background:var(--ink-900);
  border-bottom:1px solid var(--ink-700);
  padding:52px 0;
}
.page-hero .wrap h1{
  font-size:30px;font-weight:800;color:var(--cream-50);letter-spacing:-.2px;
}
.page-hero .wrap .breadcrumb{
  margin-top:10px;font-size:13px;color:var(--steel-300);
}
.page-hero .wrap .breadcrumb a{color:var(--copper-400);}
.entry-content-wrap{
  background:var(--cream-50);
  padding:56px 0 72px;
}
.entry-content-wrap .entry-content{
  max-width:820px;
  margin:0 auto;
  background:var(--white);
  border:1px solid #ECE7DC;
  border-radius:var(--radius-lg);
  padding:36px 40px;
  font-size:15px;
  color:var(--ink-text);
  line-height:1.9;
}
.entry-content-wrap .entry-content img{max-width:100%;height:auto;border-radius:var(--radius-md);}
.entry-content-wrap .entry-content h1,
.entry-content-wrap .entry-content h2,
.entry-content-wrap .entry-content h3{color:var(--ink-text);font-weight:800;margin:24px 0 12px;}
.entry-content-wrap .entry-content p{margin-bottom:16px;}
.entry-content-wrap .entry-content a{color:var(--copper-600);text-decoration:underline;}
.archive-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:20px;}
.archive-list article{
  background:var(--white);
  border:1px solid #ECE7DC;
  border-radius:var(--radius-lg);
  padding:26px 30px;
}
.archive-list article h2{font-size:19px;font-weight:800;margin-bottom:8px;}
.archive-list article h2 a{color:var(--ink-text);}
.archive-list article .entry-meta{font-size:12.5px;color:var(--slate-text);margin-bottom:10px;}
.archive-list article p{font-size:14px;color:var(--slate-text);}
.pagination-nav{max-width:820px;margin:32px auto 0;display:flex;gap:10px;justify-content:center;}
.pagination-nav a, .pagination-nav span{
  padding:9px 16px;border-radius:999px;border:1px solid #E2DBCB;
  font-size:13px;font-weight:700;color:var(--ink-text);
}
.pagination-nav .current{background:var(--ink-900);color:var(--cream-50);border-color:var(--ink-900);}
.comment-list{max-width:820px;margin:28px auto 0;list-style:none;}
.search-no-results{max-width:820px;margin:0 auto;text-align:center;padding:40px 0;color:var(--slate-text);}
