/* ==========================================================================
   Al Munif Trading & Services — main.css
   Brand: navy #0B2447 / deep navy #071B38 / gold #C9A227
   Sections: 1 tokens · 2 reset · 3 layout · 4 buttons · 5 header · 6 footer
             7 hero · 8 categories · 9 products · 10 shop · 11 pdp
             12 cart/checkout · 13 forms · 14 content blocks · 15 responsive
   ========================================================================== */

/* 1 — TOKENS ------------------------------------------------------------- */
:root{

  --navy: #000B23;
  --navy-deep: #06182F;
  --navy-soft: #14213D;
  --gold: #E52329;
  --gold-light: #F04A4F;
  --ink: #303B4D;
  --muted: #7D8796;
  --line: #E2E6EC;
  --line-soft: #EEF1F5;
  --bg: #F5F7FA;
  --bg-card: #FFFFFF;
  --bg-tint: #F8FAFC;
  --ok: #12805B;
  --warn: #D97706;


  --font-head:'Archivo','Almarai',system-ui,sans-serif;
  --font-body:'Barlow','Almarai',system-ui,sans-serif;

  --radius-sm:8px;
  --radius:12px;
  --radius-lg:14px;

  --shadow-sm:0 6px 16px rgba(11,36,71,.07);
  --shadow:0 14px 30px rgba(11,36,71,.10);
  --shadow-lg:0 20px 44px rgba(11,36,71,.13);

  --header-h:72px;
  --container:1320px;
}
/* ================================
   BULK / TALK TO US MODAL
================================ */

.bulk-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.bulk-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bulk-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 27, 56, .72);
    backdrop-filter: blur(5px);
}

.bulk-modal__dialog {
    position: relative;
    z-index: 2;

    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    background: #fff;
    border-radius: 18px;
    padding: 34px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .22);

    transform: translateY(20px) scale(.98);
    transition: transform .25s ease;
}

.bulk-modal.is-open .bulk-modal__dialog {
    transform: translateY(0) scale(1);
}

.bulk-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;
    background: #f2f4f7;

    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.bulk-modal__close:hover {
    background: #e8ebef;
}

.bulk-modal__header {
    padding-right: 45px;
    margin-bottom: 25px;
}

.bulk-modal__kicker {
    display: inline-block;
    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;

    color: #d6a916;
}

.bulk-modal__header h2 {
    margin: 0;
    font-size: 28px;
    color: #08274f;
}

.bulk-modal__header p {
    margin: 9px 0 0;
    line-height: 1.6;
    color: #687386;
}

.bulk-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bulk-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bulk-field--full {
    grid-column: 1 / -1;
}

.bulk-field > span {
    font-size: 13px;
    font-weight: 700;
    color: #15243a;
}

.bulk-field input,
.bulk-field textarea,
.bulk-field select {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #d8dee8;
    border-radius: 9px;

    padding: 12px 13px;

    font: inherit;
    color: #17263b;
    background: #fff;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.bulk-field input:focus,
.bulk-field textarea:focus,
.bulk-field select:focus {
    border-color: #d6a916;
    box-shadow: 0 0 0 3px rgba(214, 169, 22, .12);
}

.bulk-field textarea {
    min-height: 115px;
    resize: vertical;
}

.bulk-form__submit {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 20px;
    padding: 14px 20px;

    border: 0;
    border-radius: 9px;

    background: #08274f;
    color: #fff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}

.bulk-form__submit:hover {
    opacity: .93;
}

.bulk-form__success {
    margin-top: 14px;
    padding: 12px 15px;

    border-radius: 8px;

    background: #eef8f1;
    color: #27643a;

    font-size: 14px;
    font-weight: 600;
}

body.bulk-modal-open {
    overflow: hidden;
}


/* MOBILE */
@media (max-width: 640px) {
	.logo img{
	height: 51px;	
	}
	.wa__btn_popup{
		display:none !important;
	}
    .bulk-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .bulk-modal__dialog {
        width: 100%;
        max-height: 92vh;

        border-radius: 18px 18px 0 0;
        padding: 26px 20px;
    }

    .bulk-form__grid {
        grid-template-columns: 1fr;
    }

    .bulk-field--full {
        grid-column: auto;
    }

    .bulk-modal__header h2 {
        font-size: 24px;
    }

}
/* 2 — RESET -------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font:400 15px/1.6 var(--font-body);
  text-wrap:pretty;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
h1,h2,h3,h4{margin:0;font-family:var(--font-head);color:var(--navy);letter-spacing:-.02em;line-height:1.18}
h1{font-size:clamp(23px,3.2vw,36px);font-weight:700}
h2{font-size:clamp(22px,2.6vw,28px);font-weight:700}
h3{font-size:17px;font-weight:700}
h4{font-size:14px;font-weight:700}
p{margin:0 0 12px}
a{color:var(--navy);text-decoration:none;transition:color .18s}
a:hover{color:var(--gold)}
button{font-family:inherit}
ul{margin:0;padding:0;list-style:none}
.ic{flex:none;display:block}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* 3 — LAYOUT ------------------------------------------------------------- */
.container{max-width:var(--container);margin:0 auto;padding-inline:6px}
.section{padding-block:34px 0}
.section--tint{background:var(--bg-card);border-block:1px solid var(--line);margin-top:44px;padding-block:40px}
.hero-wrap{padding-top:20px}
.section-head{display:flex;flex-wrap:wrap;align-items:baseline;gap:12px;margin-bottom:18px}
.section-head h2{margin:0}
.section-head .sub{font:500 14px/1.5 var(--font-body);color:var(--muted)}
.section-head .link{margin-inline-start:auto;display:inline-flex;align-items:center;gap:8px;
  font:700 13px/1 var(--font-body);letter-spacing:.08em;text-transform:uppercase;color:var(--navy)}
.section-head .link:hover{color:var(--gold)}
.section-head .link .ic{color:var(--gold)}
.divider{height:1px;background:var(--line);margin-block:26px}
.card{background:var(--bg-card);border:1px solid var(--line);border-radius:var(--radius-lg)}
.lift{transition:box-shadow .22s,transform .22s,border-color .18s}
.lift:hover{box-shadow:var(--shadow);border-color:var(--gold)}

/* 4 — BUTTONS ------------------------------------------------------------ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  border:0;border-radius:var(--radius-sm);cursor:pointer;white-space:nowrap;
  padding:14px 22px;font:800 12.5px/1 var(--font-body);letter-spacing:.02em;
  transition:background .18s,color .18s,border-color .18s;
}
.btn--gold{background:var(--gold);color:white}
.btn--gold:hover{background:var(--gold-light);color:white}
.btn--navy{background:var(--navy);color:#fff}
.btn--navy:hover{background:var(--navy-soft);color:#fff}
.btn--outline{background:none;color:var(--navy);border:1.5px solid var(--line)}
.btn--outline:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn--onnavy{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.35)}
.btn--onnavy:hover{background:rgba(255,255,255,.16);color:#fff}
.btn--sm{padding:11px 16px;font-size:11.5px}
.btn--block{width:100%}
.btn .ic{transition:transform .2s}
.btn:hover .ic{transform:translateX(3px)}
[dir="rtl"] .btn:hover .ic{transform:translateX(-3px)}

/* 5 — HEADER ------------------------------------------------------------- */
.site-header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;gap:14px;padding-block:12px}
.logo{    
	flex: none;
 
    line-height: 0;}
.logo img{  
	height: 72px;
    width: auto;
	border-radius: var(--radius-sm);
    object-fit: initial;}
.main-nav{display:flex;align-items:center;gap:2px;flex:none}
.nav-link{position:relative;padding:13px 14px;font:600 14px/1 var(--font-body);color:#5A6478}
.nav-link:hover{color:var(--navy)}
.nav-link.is-active{color:var(--navy);font-weight:700;box-shadow:inset 0 -3px 0 var(--gold)}
.header-actions{display:flex;align-items:center;gap:10px;margin-inline-start:auto;flex:none}
.lang-toggle{background:none;border:1.5px solid #D8DEE7;color:#5A6478;border-radius:var(--radius-sm);
  padding:12px 14px;font:700 12.5px/1 var(--font-body);cursor:pointer;transition:all .18s}
.lang-toggle:hover{border-color:var(--navy);color:var(--navy)}
.btn-quote{display:inline-flex;align-items:center;gap:8px;background:none;border:1.5px solid #D8DEE7;
  color:var(--navy);border-radius:var(--radius-sm);padding:12px 16px;
  font:700 12.5px/1 var(--font-body);transition:border-color .18s,color .18s}
.btn-quote:hover{border-color:var(--navy);color:var(--navy)}
.cart-btn{display:inline-flex;align-items:center;gap:9px;background:var(--navy);color:#fff;border:0;
  border-radius:var(--radius-sm);padding:12px 16px;font:700 12.5px/1 var(--font-body);
  cursor:pointer;transition:background .18s}
.cart-btn:hover{background:var(--navy-soft);color:#fff}
.cart-count{background:var(--gold);color:var(--navy-deep);border-radius:999px;min-width:20px;height:20px;
  display:grid;place-items:center;padding:0 6px;font:800 11.5px/1 var(--font-body)}
.cart-count.is-bump{animation:amBump .42s cubic-bezier(.3,1.4,.5,1)}
.burger{display:none;background:var(--bg);border:2px solid var(--navy);;border-radius:var(--radius-sm);
  padding:12px;line-height:0;color:var(--navy);cursor:pointer}
.burger span{display:block;width:16px;height:2px;background:currentColor;border-radius:2px}
.burger span + span{margin-top:4px}
.cart-count {color:white !important}
/* category strip (desktop) */
.cat-bar{background:var(--navy)}
.cat-bar-inner{display:flex;flex-wrap:wrap;align-items:center;gap:4px 2px;padding-block:6px}
.cat-bar a{flex:none;white-space:nowrap;border-radius:6px;padding:11px 13px;
  font:600 12px/1 var(--font-body);letter-spacing:.08em;text-transform:uppercase;color:#d3dce9;
  transition:background .18s,color .18s}
.cat-bar a:hover{background:rgba(255,255,255,.09);color:#fff}
.cat-bar a.is-active{background:rgba(201,162,39,.22);color:var(--gold)}
.btn-add span{
	color:white;
}
.page-template-home .product-card svg.ic path,.page-template-home .product-card svg.ic circle{
	color:white;
}
.cat-bar .cat-bar-quote{flex:none;white-space:nowrap;background:var(--gold);color:white;
  border-radius:6px;padding:10px 16px;margin-inline-start:8px;
  font:800 12.5px/1 var(--font-body);letter-spacing:.06em;text-transform:uppercase;transition:background .18s}
.cat-bar .cat-bar-quote:hover{background:var(--gold-light);color:var(--navy-deep)}

/* mobile panel — expands inside the header, as in the design */
.mobile-menu{display:none;border-top:1px solid var(--line);padding:14px 20px 18px}
.mobile-menu.is-open{display:block;animation:amFade .2s ease}
.mobile-menu .m-link{display:block;padding:14px;border:0;border-inline-start:3px solid transparent;
  font:600 14.5px/1 var(--font-body);color:#5A6478}
.mobile-menu .m-link.is-active{background:var(--bg);border-inline-start-color:var(--gold);color:var(--navy);font-weight:700}
.mobile-menu .m-label{display:block;margin-top:16px;padding-inline:14px;
  font:700 11px/1 var(--font-body);letter-spacing:.16em;text-transform:uppercase;color:#98A2B3}
.mobile-menu .m-cat{display:block;padding:12px 14px;font:500 14.5px/1 var(--font-body);color:#5A6478}
.mobile-menu .m-quote{display:block;margin-top:14px;text-align:center;background:var(--gold);
  color:var(--navy-deep);border-radius:var(--radius-sm);padding:15px;font:800 13.5px/1 var(--font-body)}
.mobile-menu .m-lang{display:block;margin-top:8px;width:100%;text-align:center;background:none;
  border:1.5px solid #D8DEE7;color:var(--navy);border-radius:var(--radius-sm);padding:14px;
  font:700 13.5px/1 var(--font-body);cursor:pointer}

/* 6 — FOOTER ------------------------------------------------------------- */
.site-footer{margin-top:38px;background:#000b23;color:#C7D3E4;padding-block:52px 24px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:36px}
.site-footer h4{margin:0 0 14px;font:800 11.5px/1 var(--font-body);letter-spacing:.16em;text-transform:uppercase;color:var(--gold)}
.site-footer img.footer-logo{height: 82px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;}
.site-footer p{font:400 13.5px/1.75 var(--font-body);color:#9FB2CC;max-width:290px}
.footer-list li{margin-bottom:10px}
.footer-list a,.footer-list span{display:flex;align-items:center;gap:10px;font:400 14px/1.5 var(--font-body);color:#C7D3E4}
.footer-list .ic{color:var(--gold)}
.footer-bottom{margin-top:34px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);

  display:flex;flex-wrap:wrap;gap:8px 20px;justify-content:space-between;
  font:400 12.5px/1.6 var(--font-body);color:white}
.acc-toggle{display:none}

.bottom-nav{display:none;position:fixed;inset-inline:0;bottom:0;z-index:60;background:#fff;
  border-top:1px solid var(--line);box-shadow:0 -6px 20px rgba(11,36,71,.12);
  grid-template-columns:repeat(4,1fr)}
.bottom-nav a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  min-height:58px;padding:10px 4px;color:var(--muted);font:700 10.5px/1 var(--font-body)}
.bottom-nav a.is-active{color:var(--navy);box-shadow:inset 0 2px 0 var(--gold)}
.bottom-nav .badge{position:absolute;inset-block-start:-7px;inset-inline-end:-11px;min-width:17px;height:17px;
  display:grid;place-items:center;padding:0 4px;border-radius:999px;background:var(--gold);
  color:white;font:800 10px/1 var(--font-body)}
.bottom-nav .with-badge{position:relative;line-height:0}

/* 7 — HERO --------------------------------------------------------------- */
.hero{position:relative;border-radius:var(--radius-lg);overflow:hidden;background:var(--navy-deep);margin-top:16px}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0;transform:scale(1);transition:opacity 1.5s ease-in-out,transform 8s ease-out;pointer-events:none}
.hero-slide.is-active{opacity:1;transform:scale(1.06)}
.hero-scrim{position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(100deg,rgba(7,27,56,.95) 0%,rgba(7,27,56,.84) 52%,rgba(11,36,71,.55) 100%)}
.hero-inner{position:relative;padding:26px 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px;align-items:center}
.hero-kicker{display:inline-block;background:var(--gold);color:white;border-radius:4px;
  padding:5px 11px;margin-bottom:14px;font:800 10.5px/1 var(--font-body);letter-spacing:.14em;text-transform:uppercase}
.hero h1{color:#fff;margin-bottom:10px}
.hero-lead{margin:0;max-width:420px;font:400 14.5px/1.6 var(--font-body);color:#B8C6DB}
.hero-cta{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}

/* navy hero card (contact page) */
.hero-card{background:var(--navy);border-radius:var(--radius-lg);padding:26px 24px;margin-top:20px}
.hero-card .hero-kicker{margin-bottom:12px}
.hero-card h1{color:#fff;margin-bottom:8px}
.hero-card p{margin:0;max-width:520px;font:400 14.5px/1.6 var(--font-body);color:#B8C6DB}

/* labelled contact rows */
.contact-rows{display:flex;flex-direction:column;gap:10px;margin-top:18px}
.contact-row{display:flex;align-items:center;gap:12px;background:var(--bg-tint);
  border:1px solid var(--line-soft);border-radius:10px;padding:12px 14px}
.contact-row .ic-tile{display:grid;place-items:center;width:34px;height:34px;border-radius:9px;
  background:var(--navy);color:var(--gold);flex:none}
.contact-row .meta{display:flex;flex-direction:column;gap:3px;min-width:0}
.contact-row .k{font:700 9.5px/1 var(--font-body);letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.contact-row .v{font:600 14px/1.3 var(--font-body);color:var(--navy);word-break:break-word}

/* info trio (delivery / payment / bulk) */
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}
.info-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:22px 24px}
.info-card .ic-wrap{display:inline-grid;place-items:center;width:44px;height:44px;border-radius:11px;
  background:#F1F4F8;color:var(--navy);margin-bottom:14px}
.info-card h3{margin:0 0 8px;font-size:17px}
.info-card p{margin:0;font:400 14.5px/1.75 var(--font-body);color:#5A6478}
.info-card--navy{background:var(--navy);border-color:var(--navy)}
.info-card--navy .ic-wrap{background:rgba(201,162,39,.16);color:var(--gold)}
.info-card--navy h3{color:#fff}
.info-card--navy p{color:#B8C6DB;margin-bottom:16px}

.page-hero{position:relative;overflow:hidden;background:var(--navy-deep);color:#fff}
.page-hero .bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.34}
.page-hero .inner{position:relative;padding-block:44px 40px}
.page-hero h1{color:#fff;margin-bottom:10px}
.page-hero p{max-width:520px;color:#B8C6DB;font-size:15px;margin:0}

/* 8 — CATEGORY TILES ---------------------------------------------------- */
.cat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.cat-tile{display:flex;flex-direction:column;padding:10px;border:1px solid #E7EBF1;border-radius:var(--radius-lg);
  background:#F2F5F9;text-align:start;cursor:pointer;transition:box-shadow .22s,transform .22s}
.cat-tile:nth-child(2){background:#FBF6E9}
.cat-tile:nth-child(3){background:#F1F6F3}
.cat-tile:nth-child(4){background:#F6F2F6}
.cat-tile:hover{box-shadow:var(--shadow-lg)}
.cat-tile .thumb{border-radius:11px;overflow:hidden;line-height:0}
.cat-tile .thumb img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .45s cubic-bezier(.22,.61,.36,1)}
.cat-tile:hover .thumb img{transform:scale(1.06)}
.cat-tile .label{display:flex;align-items:center;gap:9px;padding:14px 4px 4px}
.cat-tile .label .ic{color:var(--gold)}
.cat-tile .label span{font:700 14.5px/1.3 var(--font-head);color:var(--navy);letter-spacing:-.01em}
.wa__btn_popup {
    bottom: 7px !important;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    right: 22px !important;
    z-index: 999999999;
}
/* 9 — PRODUCT CARDS ----------------------------------------------------- */
.product-grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	row-gap: 16px !important;
    gap: 7px;}
.product-card{display:flex;flex-direction:column;overflow:hidden;background:#fff;
  border:1px solid var(--line);border-radius:12px;transition:box-shadow .22s,border-color .18s}
.product-card:hover{border-color:var(--gold);box-shadow:0 18px 40px rgba(11,36,71,.11)}
.product-media{position:relative;display:block;line-height:0;background:var(--bg-tint)}
.product-media img{width:100%;aspect-ratio:3/2;object-fit:cover;transition:transform .45s cubic-bezier(.22,.61,.36,1)}
.product-card:hover .product-media img{transform:scale(1.06)}
.product-badge{position:absolute;inset-block-start:7px;inset-inline-start:7px;display:inline-flex;align-items:center;gap:5px;
  background:var(--navy);;border-radius:4px;padding:4px 6px;
  font:800 8.5px/1 var(--font-body);letter-spacing:.08em;text-transform:uppercase;color:white}
.wish-btn{position:absolute;inset-block-start:7px;inset-inline-end:7px;display:grid;place-items:center;
  width:30px;height:30px;border-radius:50%;border:0;cursor:pointer;
  background:rgba(255,255,255,.94);color:#5A6478;transition:background .18s,color .18s}
.wish-btn.is-on{background:var(--gold);color:var(--navy-deep)}
.product-body{display:flex;flex-direction:column;flex:1;padding:9px 10px 10px}
.product-title{margin:0;font:700 13.5px/1.28 var(--font-head);color:var(--navy);letter-spacing:-.012em;
  height:35px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.product-meta{display:flex;flex-wrap:wrap;align-items:center;gap:5px;margin-top:4px;
  font:500 10.5px/1.3 var(--font-body);color:var(--muted)}
.dot{width:6px;height:6px;border-radius:50%;background:var(--ok);flex:none}
.dot--low{background:var(--warn)}
.stock{font-weight:600;color:var(--ok)}
.stock--low{color:var(--warn)}
.product-price{margin-top:auto;padding-top:7px;font:700 17px/1 var(--font-head);color:var(--navy)}
.product-actions{display:flex;flex-direction:column;align-items:stretch;gap:6px;margin-top:9px}
.qty{display:flex;align-items:center;justify-content:space-between;height:38px;padding:0 2px;
  border:1px solid #D8DEE7;border-radius:var(--radius-sm)}
.qty button{width:32px;height:100%;display:grid;place-items:center;background:none;border:0;
  color:var(--navy);cursor:pointer;border-radius:6px}
.qty button:hover{background:var(--bg-tint)}
.qty .val{flex:1;text-align:center;font:700 13px/1 var(--font-body);color:var(--navy)}
.btn-add{height:38px;padding:0 8px;font-size:11.5px}
.view-link{display:none;align-items:center;justify-content:center;gap:7px;margin-top:7px;
  background:none;border:0;padding:2px;cursor:pointer;color:var(--navy);
  font:700 12.5px/1 var(--font-body);letter-spacing:.04em}
.view-link .ic{color:var(--gold)}
.view-link:hover{color:var(--gold)}

/* 10 — SHOP -------------------------------------------------------------- */
.promo{position:relative;border-radius:var(--radius-lg);overflow:hidden;margin-top:14px;background:var(--navy-deep)}
.promo .bg{position:absolute;inset:0;background-size:cover;background-position:center}
.promo .scrim{position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,27,56,.94) 0%,rgba(7,27,56,.8) 55%,rgba(11,36,71,.52) 100%)}
.promo .inner{position:relative;padding:18px;display:flex;flex-wrap:wrap;align-items:center;gap:12px 20px;min-height:112px}
.promo .copy{flex:1 1 240px;min-width:0}
.promo .kicker{display:block;margin-bottom:9px;font:800 10.5px/1 var(--font-body);letter-spacing:.18em;text-transform:uppercase;color:var(--gold-light)}
.promo h1{color:#fff;font-size:clamp(20px,2.6vw,28px);margin-bottom:6px}
.promo p{margin:0;font:400 13.5px/1.5 var(--font-body);color:#B8C6DB}

.cat-rail{display:flex;gap:14px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none;-webkit-overflow-scrolling:touch;    padding-top: 12px;}
.cat-rail::-webkit-scrollbar{display:none}
.cat-rail::before,.cat-rail::after{content:"";flex:0 0 0;margin:auto}
.cat-rail-item{flex:none;min-width:72px;display:flex;flex-direction:column;align-items:center;gap:9px;
  background:none;border:0;padding:0;cursor:pointer}
.cat-rail-item .ring{display:block;width:64px;height:64px;padding:3px;border-radius:50%;background:#fff;
  border:1.5px solid var(--line);transition:border-color .2s,box-shadow .2s}
.cat-rail-item .ring img{width:100%;height:100%;border-radius:50%;object-fit:cover;
  filter:saturate(1.12) contrast(1.06);transition:transform .45s cubic-bezier(.22,.61,.36,1)}
.cat-rail-item:hover .ring img{transform:scale(1.07)}
.cat-rail-item .chip{display:block;padding:6px 11px;border-radius:7px;background:#fff;border:1px solid var(--line);
  color:var(--navy-deep);white-space:nowrap;font:600 11px/1.2 var(--font-body);transition:all .18s}
.cat-rail-item.is-active .ring{border-color:var(--gold);box-shadow:0 6px 16px rgba(201,162,39,.28)}
.cat-rail-item.is-active .chip{background:var(--gold);border-color:var(--gold);color:white;font-weight:800}

.toolbar{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;
  padding-block:12px;border-bottom:1px solid var(--line);margin-top:6px}
.toolbar .count{font:600 13.5px/1.3 var(--font-body);color:var(--navy)}
.select{border:1px solid #D8DEE7;border-radius:var(--radius-sm);padding:10px 12px;background:#fff;
  color:var(--navy);font:600 12.5px/1 var(--font-body);outline:none;cursor:pointer}
.empty{text-align:center;padding:52px 20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg)}
.empty .ic-wrap{display:inline-grid;place-items:center;width:52px;height:52px;border-radius:15px;
  background:var(--bg-tint);color:var(--muted);margin-bottom:14px}

/* 11 — PRODUCT DETAIL ---------------------------------------------------- */
.pdp{display:grid;gap:22px;margin-top:20px}
.pdp-gallery .main{border-radius:var(--radius-lg);overflow:hidden;background:#fff;border:1px solid var(--line)}
.pdp-gallery .main img{width:100%;aspect-ratio:4/3;object-fit:cover}
.pdp-thumbs{display:flex;gap:10px;margin-top:10px}
.pdp-thumbs button{flex:none;width:74px;border-radius:10px;overflow:hidden;background:#fff;cursor:pointer;
  border:1.5px solid var(--line);padding:0;line-height:0;transition:border-color .18s}
.pdp-thumbs button.is-active{border-color:var(--gold)}
.pdp-thumbs img{width:100%;aspect-ratio:1;object-fit:cover}
.pdp-info .eyebrow{display:inline-flex;align-items:center;gap:7px;margin-bottom:12px;
  font:800 10.5px/1 var(--font-body);letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}
.pdp-price{font:700 30px/1 var(--font-head);color:var(--navy);margin:14px 0 6px}
.pdp-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.pdp-actions .qty{width:120px;height:46px}
.pdp-actions .btn{flex:1 1 180px;height:46px}
.spec-list{margin-top:22px;border-top:1px solid var(--line-soft)}
.spec-list li{display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px solid var(--line-soft);font-size:14px}
.spec-list dt,.spec-list .k{color:var(--muted)}
.spec-list .v{color:var(--navy);font-weight:600}

/* 12 — CART / CHECKOUT --------------------------------------------------- */
.cart-layout{display:grid;gap:18px;margin-top:20px}
.cart-line{display:grid;grid-template-columns:78px 1fr;gap:14px;padding:16px 0;border-bottom:1px solid var(--line-soft)}
.cart-line img{width:78px;height:78px;border-radius:10px;object-fit:cover}
.cart-line .name{font:700 15px/1.3 var(--font-head);color:var(--navy)}
.cart-line .unit{font:500 12.5px/1.4 var(--font-body);color:var(--muted);margin-top:3px}
.cart-line .row{display:flex;align-items:center;gap:12px;margin-top:10px;flex-wrap:wrap}
.cart-line .qty{width:112px;height:38px}
.cart-line .line-total{margin-inline-start:auto;font:700 16px/1 var(--font-head);color:var(--navy)}
.remove-btn{background:none;border:0;padding:0;cursor:pointer;color:var(--muted);
  font:600 12.5px/1 var(--font-body);text-decoration:underline}
.remove-btn:hover{color:#B33A3A}
.summary{align-self:start;padding:22px}
.summary-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;font-size:14px}
.summary-row.total{margin-top:8px;padding-top:14px;border-top:1px solid var(--line);
  font:700 19px/1 var(--font-head);color:var(--navy)}
.steps{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.step{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;
  background:#fff;border:1px solid var(--line);font:700 12px/1 var(--font-body);color:var(--muted)}
.step.is-active{background:var(--navy);border-color:var(--navy);color:#fff}
.step .n{display:grid;place-items:center;width:18px;height:18px;border-radius:50%;
  background:var(--gold);color:var(--navy-deep);font-size:10px}

/* 13 — FORMS ------------------------------------------------------------- */
.form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.field{display:flex;flex-direction:column;gap:7px}
.field--full{grid-column:1/-1}
.label{font:600 12.5px/1 var(--font-body);color:#5A6478}
.input,.textarea,select.input{width:100%;border:1px solid #D8DEE7;border-radius:var(--radius-sm);
  padding:13px 14px;background:#fff;color:var(--navy);font:400 14.5px/1.4 var(--font-body);
  outline:none;transition:border-color .18s,box-shadow .18s}
.input:focus,.textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,39,.16)}
.textarea{min-height:120px;resize:vertical}
.hint{font:400 12.5px/1.5 var(--font-body);color:var(--muted)}
.alert{display:flex;align-items:flex-start;gap:11px;padding:16px 18px;border-radius:var(--radius);
  background:#F0F7F3;border:1px solid #CFE5DA;color:#12603F;font-size:14px}
.alert .ic{color:var(--ok)}

/* 14 — CONTENT BLOCKS --------------------------------------------------- */
.why-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.why-card{display:flex;flex-direction:column;gap:9px;padding:20px 18px;background:var(--bg-tint);
  border:1px solid var(--line);border-radius:var(--radius-lg);transition:box-shadow .22s,border-color .18s}
.why-card:hover{border-color:var(--gold);box-shadow:var(--shadow-sm)}
.why-card .ic-wrap{display:grid;place-items:center;width:42px;height:42px;border-radius:11px;
  background:var(--navy);color:var(--gold)}
.why-card strong{font:700 15px/1.28 var(--font-head);color:var(--navy)}
.why-card span{font:400 13px/1.5 var(--font-body);color:white}

.cta-band{background:var(--navy);border-radius:var(--radius-lg);padding:26px;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;align-items:center}
.cta-item{display:flex;align-items:flex-start;gap:12px}
.cta-item .ic-wrap{display:grid;place-items:center;width:40px;height:40px;border-radius:11px;
  background:rgba(255,255,255,.09);color:var(--gold);flex:none}
.cta-item strong{display:block;font:700 14.5px/1.25 var(--font-head);color:#fff;margin-bottom:4px}
.cta-item span{font:400 13px/1.5 var(--font-body);color:#A9BBD4}

.split{display:grid;gap:16px}
.tile-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}
.tile{display:flex;align-items:center;gap:13px;padding:16px;background:var(--bg-tint);
  border:1px solid var(--line-soft);border-radius:11px;transition:box-shadow .22s,border-color .18s}
.tile:hover{border-color:var(--gold);box-shadow:var(--shadow-sm)}
.tile .ic-wrap{display:grid;place-items:center;width:40px;height:40px;border-radius:10px;background:#fff;color:var(--navy);flex:none}
.tile span{font:600 14px/1.4 var(--font-body);color:var(--navy-soft)}
.iso-list li{display:flex;gap:12px;align-items:baseline;padding:12px 0;border-bottom:1px solid var(--line-soft)}
.iso-list .code{font:700 13px/1.3 var(--font-head);color:var(--navy);flex:none}
.iso-list .name{font:400 13.5px/1.4 var(--font-body);color:var(--muted)}

/* toast */
.toast{position:fixed;inset-inline:0;bottom:78px;z-index:70;display:flex;justify-content:center;pointer-events:none}
.toast-inner{display:inline-flex;align-items:center;gap:10px;background:var(--navy);color:#fff;
  border-radius:999px;padding:12px 20px;font:700 13px/1 var(--font-body);box-shadow:var(--shadow-lg);
  opacity:0;transform:translateY(10px);transition:opacity .22s,transform .22s}
.toast.is-on .toast-inner{opacity:1;transform:translateY(0)}
.toast .ic{color:var(--gold)}

@keyframes amFade{from{opacity:0}to{opacity:1}}
@keyframes amBump{0%{transform:scale(1)}45%{transform:scale(1.4)}100%{transform:scale(1)}}

/* 15 — RESPONSIVE ------------------------------------------------------- */
@media (max-width:939px){
  .main-nav,.header-actions .lang-toggle,.header-actions .btn-quote,.cat-bar{display:none}
  .burger{display:block}
  .cart-btn .c-label{display:none}
  .cart-btn{padding:12px 13px;
	display:none;
	}
  .bottom-nav{display:grid}
  body{padding-bottom:66px}
  .site-footer{padding-block:30px 22px}
  .footer-grid{display:block}
  .footer-col{border-top:1px solid rgba(255,255,255,.12)}
  .footer-col--brand{border-top:0}
  .site-footer h4{margin:0}
  .acc-toggle{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;
    background:none;border:0;padding:16px 2px;cursor:pointer;color:#fff;text-align:start}
  .acc-toggle .ic{color:var(--gold);transition:transform .22s}
  .acc-toggle[aria-expanded="true"] .ic{transform:rotate(180deg)}
  .footer-col .footer-list{display:none;padding-bottom:16px}
  .footer-col.is-open .footer-list{display:block;animation:amFade .2s ease}
  .hero-cta{justify-content:stretch}
  .hero-cta .btn{flex:1}
}
@media (min-width:700px){
  .product-grid,.cat-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
  .why-grid{gap:16px}
  .split{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
  .cart-layout{grid-template-columns:1.6fr .9fr;gap:26px}
}
@media (min-width:940px){
  .section{padding-block:44px 0}
  .product-card .product-media img{aspect-ratio:4/3}
  .product-title{font-size:16px;height:41px}
  .product-meta{font-size:12px}
  .product-price{font-size:22px;padding-top:8px}
  .product-body{padding:14px 16px 15px}
  .product-actions{flex-direction:row;align-items:stretch;gap:9px;margin-top:10px}
  .product-actions .qty{flex:0 0 38%;height:42px}
  .btn-add{flex:1;height:42px;font-size:13px}
  .view-link{display:flex}
  .pdp{grid-template-columns:1.05fr .95fr;gap:34px}
  .promo .inner{padding:24px 22px}
  .hero-inner{padding:30px 28px}
}
@media (min-width:1000px){
  .product-grid,.cat-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}

/* print */
@media print{
  .site-header,.bottom-nav,.mobile-menu,.toast,.site-footer{display:none!important}
  body{background:#fff;padding:0}
}
/* =========================
   CATEGORY SECTION
========================= */

.category-section {
  margin-top: 22px;
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.category-head h2 {
  margin: 0;
  color: var(--navy, #000B23);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.category-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red, #E52329);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}


/* =========================
   GRID
========================= */

.category-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}


/* =========================
   CARD
========================= */

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 14px 10px 16px;

  background: #fff;
  border: 1px solid #E3E7ED;
  border-radius: 24px;

  text-decoration: none;
  text-align: center;

  box-shadow: 0 5px 16px rgba(0, 11, 35, 0.06);

  transition: .2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 11, 35, 0.11);
}


/* =========================
   CIRCLE IMAGE
========================= */

.category-photo {
  position: relative;

  width: 170px;
  height: 170px;

  max-width: 100%;

  margin: 0 auto 14px;

  border-radius: 50%;

  overflow: visible;

  background: #F1F4F8;
}

.category-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 50%;
}


/* =========================
   SMALL ARROW
========================= */

.category-arrow {
    position: absolute;
    right: 0;
    bottom: 12px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;

    font-size: 0;

    box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
}

.category-arrow::before {
    content: "";

    width: 6px;
    height: 6px;

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;

    transform: rotate(45deg) translate(-1px, 1px);
}

.category-arrow--navy {
    background: var(--navy, #000B23);
}

.category-arrow--red {
    background: var(--red, #E52329);
}

/* =========================
   ICON
========================= */

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 28px;

  margin-bottom: 5px;
}

.category-icon--navy {
  color: var(--navy, #000B23);
}

.category-icon--red {
  color: var(--red, #E52329);
}


/* =========================
   NAME
========================= */

.category-name {
  color: var(--navy, #000B23);

  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .category-photo {
    width: 130px;
    height: 130px;
  }

  .category-grid-new {
    gap: 10px;
  }

}


/* =========================
   MOBILE
   KEEP 4 CARDS IN ONE ROW
========================= */

@media (max-width: 600px) {

  .category-head {
    margin-bottom: 12px;
  }

  .category-head h2 {
    font-size: 20px;
  }

  .category-view-all {
    font-size: 13px;
  }


  .category-grid-new {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }


  .category-card {
    padding: 7px 4px 10px;

    border-radius: 17px;
  }


  .category-photo {
    width: 70px;
    height: 70px;

    max-width: 100%;

    margin-bottom: 9px;
  }


  .category-arrow {
    width: 22px;
    height: 22px;

    right: -2px;
    bottom: 4px;

    font-size: 15px;
  }


  .category-icon {
    height: 22px;
    margin-bottom: 3px;
  }

  .category-icon svg {
    width: 20px;
    height: 20px;
  }


  .category-name {
    font-size: 13px;
    line-height: 1.08;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

  .category-grid-new {
    gap: 4px;
  }

  .category-photo {
    width: 62px;
    height: 62px;
  }

  .category-name {
    font-size: 9px;
  }

  .category-arrow {
    width: 20px;
    height: 20px;
  }
}
/* ==============================
   FIX HEADER LOGO
============================== */

.site-header .logo {
    width: 180px;
    height: 72px;

    flex: 0 0 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.site-header .logo img {
    width: 100% !important;
    height: 100% !important;

    max-width: 180px !important;
    max-height: 72px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .site-header .logo {
        width: 145px;
        height: 58px;
        flex-basis: 145px;
    }

    .site-header .logo img {
        max-width: 145px !important;
        max-height: 58px !important;
    }
}
/* ==============================
   WOOCOMMERCE CART / CHECKOUT
============================== */

.woocommerce-cart #secondary,
.woocommerce-checkout #secondary,
.woocommerce-account #secondary {
    display: none !important;
}

.woocommerce-cart #primary,
.woocommerce-checkout #primary,
.woocommerce-account #primary {
    width: 100% !important;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    float: none !important;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
    width: 100%;
    max-width: 100%;
}
.category-grid-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
/* =====================================
   CATEGORY RAIL
   ===================================== */

.cat-rail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}


/* Category item */
.cat-rail-item {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    cursor: pointer;
}


/* Circular image */
.cat-rail-item .ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fff;
    border: 2px solid #e2e6ec;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.cat-rail-item .ring img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}


/* Label pill */
.cat-rail-item .chip {
    min-height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6px 12px;

    border: 1px solid #dfe4eb;
    border-radius: 9px;

    background: #fff;
    color: #000b23;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


/* ACTIVE CATEGORY */
.cat-rail-item.is-active .ring {
    border-color: #ef252b;
    box-shadow: 0 0 0 2px rgba(239, 37, 43, .08);
}


.cat-rail-item.is-active .chip {
    background: #ef252b;
    border-color: #ef252b;
    color: #fff;
}


/* Hover desktop */
@media (hover: hover) {

    .cat-rail-item:hover .ring {
        transform: translateY(-2px);
        border-color: #ef252b;
    }

}



/* =====================================
   MOBILE HORIZONTAL SCROLLER
   ===================================== */

@media (max-width: 768px) {

    .cat-rail {
        display: flex;
        flex-wrap: nowrap;

        width: 100%;

        gap: 10px;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 22px 14px 26px;

        scroll-behavior: smooth;
        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        /* user can clearly scroll horizontally */
        scrollbar-width: thin;
        scrollbar-color: #14213D #e8ebf0;
    }


    /* Chrome / Edge / Safari scrollbar */
    .cat-rail::-webkit-scrollbar {
        height: 4px;
    }

    .cat-rail::-webkit-scrollbar-track {
        background: #e8ebf0;
        border-radius: 20px;
    }

    .cat-rail::-webkit-scrollbar-thumb {
        background: #ef252b;
        border-radius: 20px;
    }


    .cat-rail-item {
        flex: 0 0 auto;

        width: 100px;

        scroll-snap-align: start;
    }


    .cat-rail-item .ring {
        width: 66px;
        height: 66px;
    }


    .cat-rail-item .chip {
        width: 100%;

        min-height: 34px;

        padding: 6px 8px;

        font-size: 11px;

        white-space: normal;
    }

}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained,button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained{
    background: #000B23;	
}
/* =========================================================
   MUNIF MARKET — FINAL SINGLE PRODUCT
   Desktop + Tablet + Mobile
   Uses existing :root variables
   ========================================================= */


/* =========================================================
   PAGE
   ========================================================= */

body.single-product {
    background: var(--bg);
}

/* Remove WP sidebar/widgets */
body.single-product #secondary,
body.single-product .widget-area {
    display: none !important;
}

body.single-product #primary,
body.single-product .content-area,
body.single-product main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}


/* =========================================================
   MAIN PRODUCT STRUCTURE
   ========================================================= */

body.single-product div.product {
    width: 100%;
    max-width: 1380px;

    margin: 0 auto !important;
    padding: 42px 30px 70px !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, .95fr);

    column-gap: 46px;
    row-gap: 48px;

    align-items: start;
}


/* Remove WooCommerce default floats */
body.single-product div.product div.images,
body.single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

body.single-product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
}

body.single-product .woocommerce-product-gallery__wrapper {
    width: 100% !important;
    margin: 0 !important;
}

body.single-product .woocommerce-product-gallery__image {
    width: 100% !important;

    margin: 0 !important;
}

body.single-product
.woocommerce-product-gallery__image > a {
    display: block !important;

    width: 100% !important;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: var(--bg-card);
}

body.single-product
.woocommerce-product-gallery__image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* =========================================================
   GALLERY THUMBNAILS
   ========================================================= */

body.single-product .flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap !important;

    gap: 10px;

    margin: 12px 0 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.single-product .flex-control-thumbs li {
    float: none !important;

    width: 68px !important;
    height: 68px !important;

    margin: 0 !important;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: var(--bg-card);
}

body.single-product .flex-control-thumbs li img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

    opacity: 1 !important;

    cursor: pointer;
}

body.single-product
.flex-control-thumbs li img.flex-active {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}


/* =========================================================
   PRODUCT SUMMARY
   ========================================================= */

body.single-product .summary.entry-summary {
    width: 100% !important;

    margin: 0 !important;
    padding: 14px 0 0 !important;
}


/* TITLE — intentionally NOT huge */
body.single-product .product_title {
    margin: 0 0 10px !important;

    color: var(--navy) !important;

    font-size: 34px !important;
    line-height: 1.15 !important;

    font-weight: 700 !important;

    letter-spacing: -0.02em !important;
}


/* Optional Woo short description */
body.single-product
.woocommerce-product-details__short-description {
    max-width: 600px;

    margin: 0 0 14px !important;

    color: var(--ink);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   PRICE
   ========================================================= */

body.single-product .summary .price {
    margin: 0 0 16px !important;

    color: var(--navy) !important;

    font-size: 22px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;
}

body.single-product .summary .price *,
body.single-product .summary .price .amount,
body.single-product .summary .price bdi {
    color: inherit !important;
}


/* =========================================================
   STOCK
   ========================================================= */

body.single-product .summary .stock {
    display: flex !important;
    align-items: center !important;

    gap: 6px;

    margin: -7px 0 16px !important;

    color: var(--ok) !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}

body.single-product .summary .stock::before {
    content: "";

    display: block;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--ok);
}


/* =========================================================
   QUANTITY + ADD TO CART
   ========================================================= */

body.single-product form.cart {
    display: grid !important;

    grid-template-columns:
        100px
        minmax(0, 1fr) !important;

    align-items: stretch !important;

    gap: 10px !important;

    width: 100% !important;
    max-width: 600px !important;

    margin: 0 0 24px !important;
    padding: 0 !important;
}


/* Quantity container */
body.single-product form.cart .quantity {
    display: block !important;

    float: none !important;

    width: 100px !important;
    min-width: 100px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Quantity input */
body.single-product form.cart .qty {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    height: 50px !important;

    margin: 0 !important;
    padding: 0 10px !important;

    border: 1px solid var(--line) !important;
    border-radius: 10px !important;

    background: var(--bg-card) !important;
    color: var(--navy) !important;

    text-align: center !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    outline: none !important;
}

body.single-product form.cart .qty:focus {
    border-color: var(--navy-soft) !important;
}


/* Add to cart */
body.single-product
form.cart .single_add_to_cart_button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    float: none !important;

    width: 100% !important;
    min-width: 0 !important;

    height: 50px !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 20px !important;

    border: 0 !important;
    border-radius: 10px !important;

    background: var(--gold) !important;
    color: #fff !important;

    font-size: 13px !important;
    line-height: 1 !important;

    font-weight: 700 !important;

    white-space: nowrap !important;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

body.single-product
form.cart .single_add_to_cart_button:hover {
    background: var(--gold-light) !important;

    transform: translateY(-1px);
}


/* =========================================================
   PRODUCT META / CATEGORY
   ========================================================= */

body.single-product .product_meta {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border-top: 1px solid var(--line) !important;

    font-size: 13px !important;
}

body.single-product .product_meta > span {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px;

    width: 100%;

    padding: 15px 0 !important;

    border-bottom: 1px solid var(--line-soft);

    color: var(--muted) !important;

    font-size: 13px !important;
}

body.single-product .product_meta > span a {
    color: var(--navy) !important;

    font-weight: 700 !important;

    text-align: right;

    text-decoration: none !important;
}

body.single-product .product_meta > span a:hover {
    color: var(--gold) !important;
}


/* Hide SKU / tags */
body.single-product .product_meta .sku_wrapper,
body.single-product .product_meta .tagged_as {
    display: none !important;
}


/* =========================================================
   REMOVE REVIEWS
   ========================================================= */

body.single-product .woocommerce-tabs,
body.single-product #reviews,
body.single-product #review_form_wrapper,
body.single-product .reviews_tab {
    display: none !important;
}


/* =========================================================
   RELATED PRODUCTS
   ========================================================= */

body.single-product .related.products {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 16px 0 0 !important;
}

body.single-product
.related.products > h2 {
    margin: 0 0 22px !important;

    color: var(--navy) !important;

    font-size: 26px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;
}


/* Related grid */
body.single-product
.related.products ul.products {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 20px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.single-product
.related.products ul.products::before,
body.single-product
.related.products ul.products::after {
    display: none !important;
}


/* =========================================================
   RELATED CARD
   ========================================================= */

body.single-product
.related.products ul.products li.product {
    float: none !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 11px 11px 14px !important;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 14px;

    background: var(--bg-card);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

body.single-product
.related.products ul.products li.product:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0, 11, 35, .08);
}


/* Related image */
body.single-product
.related.products li.product img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    aspect-ratio: 1 / 1;

    margin: 0 0 12px !important;

    border-radius: 10px;

    object-fit: cover !important;
}


/* Related title */
body.single-product
.related.products
.woocommerce-loop-product__title {
    min-height: 0 !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: var(--navy) !important;

    font-size: 15px !important;
    line-height: 1.35 !important;

    font-weight: 700 !important;
}


/* Related price */
body.single-product
.related.products .price {
    display: block !important;

    margin: 0 0 12px !important;

    color: var(--gold) !important;

    font-size: 14px !important;

    font-weight: 700 !important;
}


/* =========================================================
   RELATED — ADD TO CART
   ========================================================= */

body.single-product
.related.products
a.button.add_to_cart_button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 40px !important;

    margin: 0 5px 0 0 !important;
    padding: 9px 14px !important;

    border: 0 !important;
    border-radius: 8px !important;

    background: var(--navy) !important;
    color: #fff !important;

    font-size: 12px !important;
    line-height: 1 !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    white-space: nowrap;
}


/* After AJAX added */
body.single-product
.related.products
a.add_to_cart_button.added {
    background: var(--navy) !important;
    color: #fff !important;
}


/* Keep WooCommerce ✓ */
body.single-product
.related.products
a.add_to_cart_button.added::after {
    margin-left: 6px !important;

    color: #fff !important;
}


/* VIEW CART BUTTON */
body.single-product
.related.products
a.added_to_cart.wc-forward {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 40px !important;

    margin: 0 !important;
    padding: 9px 14px !important;

    border: 1px solid var(--navy) !important;
    border-radius: 8px !important;

    background: var(--bg-card) !important;
    color: var(--navy) !important;

    font-size: 12px !important;
    line-height: 1 !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease;
}

body.single-product
.related.products
a.added_to_cart.wc-forward:hover {
    background: var(--navy) !important;
    color: #fff !important;
}


/* Woo clear */
body.single-product div.product > .clear {
    display: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    body.single-product div.product {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, .9fr) !important;

        column-gap: 28px;

        padding:
            32px 22px
            60px !important;
    }

    body.single-product .product_title {
        font-size: 30px !important;
    }

    body.single-product
    .related.products ul.products {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }
}


/* =========================================================
   MOBILE
   This is the final mobile structure
   ========================================================= */

@media (max-width: 767px) {

    /* Page */
    body.single-product div.product {
        display: block !important;

        width: 100% !important;

        margin: 0 auto !important;

        padding:
            18px 15px
            45px !important;
    }


    /* IMAGE */
    body.single-product
    .woocommerce-product-gallery {
        width: 100% !important;

        margin: 0 0 18px !important;
    }

    body.single-product
    .woocommerce-product-gallery__image > a {
        aspect-ratio: 4 / 3 !important;

        border-radius: 13px !important;
    }

    body.single-product
    .flex-control-thumbs {
        gap: 8px !important;

        margin-top: 9px !important;
    }

    body.single-product
    .flex-control-thumbs li {
        width: 58px !important;
        height: 58px !important;

        border-radius: 8px;
    }


    /* SUMMARY */
    body.single-product
    .summary.entry-summary {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* TITLE */
    body.single-product .product_title {
        margin: 0 0 8px !important;

        font-size: 25px !important;
        line-height: 1.18 !important;

        font-weight: 700 !important;
    }


    /* PRICE */
    body.single-product
    .summary .price {
        margin: 0 0 16px !important;

        font-size: 20px !important;
        line-height: 1.2 !important;
    }


    /* CART ROW:
       Quantity | Add to cart
    */
    body.single-product form.cart {
        display: grid !important;

        grid-template-columns:
            82px
            minmax(0, 1fr) !important;

        gap: 9px !important;

        align-items: stretch !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 0 22px !important;
    }


    body.single-product
    form.cart .quantity {
        width: 82px !important;
        min-width: 82px !important;

        margin: 0 !important;
    }


    body.single-product
    form.cart .qty {
        width: 82px !important;

        height: 48px !important;

        padding: 0 6px !important;

        border-radius: 9px !important;

        font-size: 14px !important;
    }


    body.single-product
    form.cart
    .single_add_to_cart_button {
        width: 100% !important;

        height: 48px !important;
        min-height: 48px !important;

        margin: 0 !important;

        border-radius: 9px !important;

        font-size: 13px !important;

        white-space: nowrap !important;
    }


    /* CATEGORY */
    body.single-product
    .product_meta {
        width: 100% !important;
    }

    body.single-product
    .product_meta > span {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: space-between !important;

        gap: 14px !important;

        padding: 14px 0 !important;

        font-size: 13px !important;
    }


    /* RELATED */
    body.single-product
    .related.products {
        width: 100% !important;

        margin-top: 38px !important;
        padding-top: 0 !important;
    }

    body.single-product
    .related.products > h2 {
        margin-bottom: 17px !important;

        font-size: 23px !important;
    }

    body.single-product
    .related.products ul.products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 12px !important;
    }

    body.single-product
    .related.products
    ul.products li.product {
        padding: 9px 9px 12px !important;

        border-radius: 12px;
    }

    body.single-product
    .related.products
    .woocommerce-loop-product__title {
        font-size: 13px !important;
    }

    body.single-product
    .related.products .price {
        font-size: 13px !important;
    }

    body.single-product
    .related.products
    a.button.add_to_cart_button,
    body.single-product
    .related.products
    a.added_to_cart.wc-forward {
        min-height: 38px !important;

        padding: 8px 10px !important;

        font-size: 11px !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    /*
     Keep the MAIN product actions side-by-side.
     Do NOT stack quantity above Add to Cart.
    */

    body.single-product form.cart {
        grid-template-columns:
            78px
            minmax(0, 1fr) !important;
    }

    body.single-product
    form.cart .quantity,
    body.single-product
    form.cart .qty {
        width: 78px !important;
        min-width: 78px !important;
    }


    /* Related products:
       one clean card per row on small phones
    */
    body.single-product
    .related.products ul.products {
        grid-template-columns: 1fr !important;
    }

    body.single-product
    .related.products
    .woocommerce-loop-product__title {
        font-size: 15px !important;
    }

    body.single-product
    .related.products .price {
        font-size: 14px !important;
    }

    body.single-product
    .related.products
    a.button.add_to_cart_button,
    body.single-product
    .related.products
    a.added_to_cart.wc-forward {
        min-height: 40px !important;

        padding: 9px 13px !important;

        font-size: 12px !important;
    }
}
/* =========================================================
   FINAL MOBILE CART ROW FIX
   Quantity + Add to cart MUST stay side by side
   ========================================================= */

@media only screen and (max-width: 767px) {

    body.single-product div.product form.cart {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;

        align-items: stretch !important;
        justify-content: flex-start !important;

        gap: 10px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 22px !important;
        padding: 0 !important;

        float: none !important;
        clear: both !important;
    }


    /* QUANTITY */
    body.single-product div.product form.cart .quantity {
        display: block !important;

        flex: 0 0 82px !important;

        width: 82px !important;
        min-width: 82px !important;
        max-width: 82px !important;

        margin: 0 !important;
        padding: 0 !important;

        float: none !important;
    }


    body.single-product div.product form.cart .quantity .qty {
        display: block !important;

        width: 82px !important;
        min-width: 82px !important;
        max-width: 82px !important;

        height: 48px !important;

        margin: 0 !important;
        padding: 0 8px !important;

        border: 1px solid var(--line) !important;
        border-radius: 9px !important;

        background: var(--bg-card) !important;
        color: var(--navy) !important;

        text-align: center !important;

        font-size: 14px !important;
        font-weight: 700 !important;

        box-sizing: border-box !important;
    }


    /* ADD TO CART */
    body.single-product div.product form.cart
    button.single_add_to_cart_button,
    body.single-product div.product form.cart
    .single_add_to_cart_button {
        display: flex !important;

        flex: 1 1 auto !important;

        align-items: center !important;
        justify-content: center !important;

        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 48px !important;
        min-height: 48px !important;

        margin: 0 !important;
        padding: 0 18px !important;

        float: none !important;
        clear: none !important;

        border: 0 !important;
        border-radius: 9px !important;

        background: var(--gold) !important;
        color: #fff !important;

        font-size: 13px !important;
        line-height: 1 !important;
        font-weight: 700 !important;

        white-space: nowrap !important;

        box-sizing: border-box !important;
    }


    body.single-product div.product form.cart
    button.single_add_to_cart_button:hover {
        background: var(--gold-light) !important;
    }
}
/* =========================================================
   RELATED PRODUCTS — FULL WIDTH ACTION BUTTONS
   ========================================================= */

@media (max-width: 767px) {

    /* Make card actions use a 2-column grid */
    body.single-product
    .related.products ul.products li.product {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        column-gap: 8px !important;
        row-gap: 0 !important;
    }


    /* Product image/title/price link always takes full card width */
    body.single-product
    .related.products li.product
    > a.woocommerce-LoopProduct-link {
        grid-column: 1 / -1 !important;

        display: block !important;

        width: 100% !important;
    }


    /* BEFORE adding:
       Add to cart takes entire width
    */
    body.single-product
    .related.products
    a.button.add_to_cart_button {
        grid-column: 1 / -1 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: none !important;

        min-height: 44px !important;

        margin: 0 !important;
        padding: 10px 12px !important;

        border-radius: 8px !important;

        box-sizing: border-box !important;
    }


    /* AFTER adding:
       Add to cart becomes left 50%
    */
    body.single-product
    .related.products
    a.button.add_to_cart_button.added {
        grid-column: 1 / 2 !important;

        width: 100% !important;

        margin: 0 !important;
    }


    /* View cart becomes right 50% */
    body.single-product
    .related.products
    a.added_to_cart.wc-forward {
        grid-column: 2 / 3 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: none !important;

        min-height: 44px !important;

        margin: 0 !important;
        padding: 10px 8px !important;

        border: 1px solid var(--navy) !important;
        border-radius: 8px !important;

        background: var(--bg-card) !important;
        color: var(--navy) !important;

        font-size: 12px !important;
        line-height: 1 !important;
        font-weight: 700 !important;

        text-decoration: none !important;

        box-sizing: border-box !important;
    }


    body.single-product
    .related.products
    a.added_to_cart.wc-forward:hover {
        background: var(--navy) !important;
        color: #fff !important;
    }
}
/* =========================================================
   WOOCOMMERCE SUCCESS NOTICE
   Product added to cart
   ========================================================= */

.woocommerce-notices-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

.woocommerce-message {
    position: relative;

    display: flex !important;
    align-items: center;
    gap: 14px;

    width: 100%;

    margin: 20px 0 0 !important;
    padding: 14px 16px 14px 18px !important;

    border: 1px solid rgba(18, 128, 91, .20) !important;
    border-left: 4px solid var(--ok) !important;
    border-radius: 12px !important;

    background: var(--bg-card) !important;
    color: var(--navy) !important;

    box-shadow: 0 8px 24px rgba(0, 11, 35, .05);

    font-size: 14px !important;
    line-height: 1.45;
    font-weight: 600;

    list-style: none !important;
}


/* Remove WooCommerce default icon */
.woocommerce-message::before {
    content: "✓" !important;

    position: static !important;
    transform: none !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    margin: 0 !important;

    border-radius: 50%;

    background: var(--ok) !important;
    color: #fff !important;

    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}


/* Remove WooCommerce decorative line */
.woocommerce-message::after {
    display: none !important;
}


/* VIEW CART BUTTON */
.woocommerce-message .button.wc-forward {
    order: 3;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin: 0 0 0 auto !important;
    padding: 10px 18px !important;

    border: 0 !important;
    border-radius: 8px !important;

    background: var(--navy) !important;
    color: #fff !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    text-decoration: none !important;
    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.woocommerce-message .button.wc-forward:hover {
    background: var(--gold) !important;
    color: #fff !important;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .woocommerce-notices-wrapper {
        padding: 0 15px;
    }

    .woocommerce-message {
        display: grid !important;

        grid-template-columns: 32px minmax(0, 1fr);

        gap: 10px 12px;

        margin-top: 14px !important;
        padding: 13px !important;

        font-size: 13px !important;
    }

    .woocommerce-message::before {
        grid-column: 1;
        grid-row: 1;

        width: 32px;
        height: 32px;
    }

    .woocommerce-message .button.wc-forward {
        grid-column: 1 / -1;

        width: 100% !important;

        margin: 3px 0 0 !important;

        min-height: 42px;
    }
}