/* The Sign Catalog - Top Shelf UI (v2)
   This file is a full drop-in replacement for assets/css/main.css
*/

/* -----------------------------
   Reset / Base
------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* Force light UA widgets on browsers that support dark-mode overrides */
html, body { background-color: var(--bg); color: var(--text); }
input, select, textarea { background: var(--surface); color: var(--text); border-color: var(--border); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }

/* -----------------------------
   Design Tokens
------------------------------ */
:root{
        color-scheme: light;
--bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --muted-2: #64748b;
    --border: rgba(15, 23, 42, 0.10);
    --border-2: rgba(15, 23, 42, 0.08);

    --primary: #0d4a96; /* matches site brand */
    --primary-2: #0b3b78;
    --accent: #f59e0b;

    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 18px;

    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.10);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.65);

    --container: 1180px;

    --ease: cubic-bezier(.2,.9,.2,1);

    /* Shared motion + premium shadow tokens used across feature stylesheets */
    --transition: .18s var(--ease);
    --shadow-premium: 0 22px 70px rgba(15, 23, 42, 0.18);
}


/* -----------------------------
   Firefox Mobile readability fixes
   - Some Firefox configurations apply aggressive auto-darkening / forced colors.
   - We keep the site readable by explicitly defining light surfaces and text
     in dark preference/forced-color modes.
-------------------------------- */

@media (prefers-color-scheme: dark){
  :root{ color-scheme: light; }
  html, body{ background: var(--bg); color: var(--text); }
  input, textarea, select{
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.20);
  }
}

@media (forced-colors: active){
  body{ forced-color-adjust: none; background: #ffffff; color: #0f172a; }
  a{ forced-color-adjust: none; color: #0a58ca; text-decoration: underline; }
  button, .button, input[type="submit"], input[type="button"], input[type="reset"]{
    forced-color-adjust: none;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
  }
  input, textarea, select{
    forced-color-adjust: none;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.40);
  }
}


/* -----------------------------
   Typography
------------------------------ */
body{
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    line-height: 1.55;
    font-size: 16px;
}

h1, h2, h3, h4{
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 0.65em;
}
h1{ font-size: clamp(2rem, 3vw, 3rem); }
h2{ font-size: clamp(1.45rem, 2.1vw, 2.2rem); }
h3{ font-size: 1.25rem; }
h4{ font-size: 1.05rem; }
p{ margin: 0 0 1em; color: var(--muted); }
ul, ol{ margin: 0 0 1em; padding-left: 1.15rem; color: var(--muted); }
li{ margin: 0.35em 0; }

small{ color: var(--muted-2); }

.container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
}

/* -----------------------------
   Buttons
------------------------------ */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
    cursor: pointer;
    user-select: none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active{ transform: translateY(0); box-shadow: none; }

.btn-primary{
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    color: #fff;
}
.btn-outline{
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn-ghost{
    background: transparent;
    border-color: transparent;
    color: var(--primary);
    padding-left: 10px;
    padding-right: 10px;
}
.btn-sm{ padding: 9px 12px; font-size: 0.92rem; }

/* -----------------------------
   Header
------------------------------ */
.site-header{
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--border-2);
}

.header-top{
    border-bottom: 1px solid var(--border-2);
}
.header-top-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
    padding: 10px 0;
}
.header-contact{
    display:flex;
    align-items:center;
    gap: 14px;
    flex-wrap: wrap;
}
.header-contact-item{
    display:inline-flex;
    gap: 8px;
    align-items:center;
    color: var(--muted);
    font-weight: 650;
}
.header-contact-item i{ color: var(--primary); }

.header-top-actions{
    display:flex;
    align-items:center;
    gap: 10px;
}

.header-main{
    padding: 14px 0;
}
.header-main-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 18px;
}
.site-logo img{
    width: 190px;
    height: auto;
}

.site-nav .nav-links{
    display:flex;
    gap: 14px;
    list-style:none;
    padding: 0;
    margin: 0;
    align-items:center;
}
.site-nav .nav-links a{
    display:inline-flex;
    padding: 10px 10px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 700;
    opacity: 0.92;
    transition: background .15s var(--ease), opacity .15s var(--ease);
}
.site-nav .nav-links a:hover{
    background: rgba(13, 74, 150, 0.08);
    opacity: 1;
}

.nav-toggle{
    display:none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-inset);
    cursor:pointer;
}
.nav-toggle-bars{
    display:block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 0 auto;
    position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:2px;
    background: var(--text);
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }


body.nav-open{
    overflow:hidden;
}
/* Mobile Drawer */
.mobile-nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    z-index: 2500;
}
.mobile-nav{
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: #fff;
    z-index: 2600;
    transform: translateX(100%);
    transition: transform .22s var(--ease);
    box-shadow: var(--shadow-card);
    border-left: 1px solid var(--border-2);
    display:flex;
    flex-direction:column;
}
.mobile-nav.is-open{ transform: translateX(0); }

.mobile-nav-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--border-2);
}
.mobile-nav-title{ font-weight: 800; color: var(--text); }
.mobile-nav-close{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor:pointer;
}
.mobile-nav-body{
    padding: 14px 16px 18px;
    overflow:auto;
}
.mobile-nav-link{
    display:block;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 750;
    color: var(--text);
}
.mobile-nav-link:hover{ background: var(--surface-2); }
.mobile-nav-divider{
    height: 1px;
    background: var(--border-2);
    margin: 14px 0;
}
.mobile-nav-cta{
    display:flex;
    flex-direction:column;
    gap: 10px;
    margin-top: 6px;
}

/* -----------------------------
   Layout Helpers
------------------------------ */
.section{
    padding: 76px 0;
}
.section-header{
    text-align: left;
    margin-bottom: 26px;
}
.section-header.is-centered{ text-align:center; }
.section-header p{
    max-width: 72ch;
    margin: 10px 0 0;
}
.section-header.is-centered p{ margin: 10px auto 0; }

.page-header{
    text-align:left;
    margin-bottom: 26px;
}
.page-header.is-centered{ text-align:center; }
.page-subtitle{
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 72ch;
    margin: 12px 0 0;
}
.page-header.is-centered .page-subtitle{ margin: 12px auto 0; }

/* Card */
.card{
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.card-pad{ padding: 22px; }

/* -----------------------------
   Legal pages
   (Privacy, Terms, Shipping)
------------------------------ */
.legal-page .page-header{
    margin-bottom: 18px;
}
.legal-page .entry-content{
    max-width: 78ch;
}
.legal-page .entry-content h2{
    margin-top: 28px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-2);
}
.legal-page .entry-content h3{
    margin-top: 20px;
}
.legal-page .entry-content ol,
.legal-page .entry-content ul{
    padding-left: 1.2rem;
}
.legal-page .entry-content li{ margin: 6px 0; }
.legal-page .entry-content a{ text-decoration: underline; }
.legal-page .entry-content a:hover{ text-decoration: none; }
.legal-page .entry-content p strong{ color: var(--text); }

/* -----------------------------
   Material Page Components
------------------------------ */
.material-page .intro-content{
    max-width: 78ch;
    margin: 0 auto;
    font-size: 1.03rem;
}

.material-hero-image{
    max-width: 860px;
    margin: 18px auto 0;
    border-radius: var(--radius-lg);
    overflow:hidden;
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow-soft);
    background: var(--surface-2);
}
.material-hero-image img{
    width: 100%;
    height: auto;
    display:block;
}

.guide-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.guide-card{
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.guide-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-card); }
.guide-card h3{ margin-bottom: 10px; }
.guide-card ul{ margin-bottom: 0; }

.application-card{
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.application-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-card); }
.application-card i{
    display:inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items:center;
    justify-content:center;
    background: rgba(13, 74, 150, 0.08);
    color: var(--primary);
    margin-bottom: 12px;
}
.application-card h4{ margin: 0 0 6px; }
.application-card p{ margin: 0; }

.cta-actions{
    display:flex;
    gap: 12px;
    justify-content:center;
    flex-wrap:wrap;
}

/* CTA section */
.section.is-cta{
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    color: #fff;
}
.section.is-cta p{ color: rgba(255,255,255,0.88); }

/* -----------------------------
   Forms
------------------------------ */
input[type="text"], input[type="email"], input[type="tel"], textarea, select{
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}
textarea{ min-height: 140px; resize: vertical; }
label{ font-weight: 700; color: var(--text); }

/* -----------------------------
   Footer
------------------------------ */
.site-footer{
    padding: 54px 0 22px;
    background: #0b1220;
    color: rgba(255,255,255,0.88);
}
.site-footer .footer-content{
    display:grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 26px;
}
.site-footer h3{
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}
.site-footer p{ color: rgba(255,255,255,0.78); }
.site-footer a{ color: rgba(255,255,255,0.86); }
.site-footer a:hover{ color: #fff; }

.footer-contact{
    display:flex;
    flex-direction:column;
    gap: 8px;
    margin-top: 12px;
}
.footer-contact i{ color: var(--accent); margin-right: 8px; }

.footer-column ul{
    list-style:none;
    margin: 0;
    padding: 0;
}
.footer-column li{ margin: 10px 0; }
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 26px;
    padding-top: 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
}
.footer-bottom a{
    display:inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
}

/* Footer legal links should sit inline with the copyright line */
.footer-legal-inline{ display:inline; margin-left: 10px; }
.footer-bottom .footer-legal-inline a{
    border: 0;
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
}
.footer-bottom .footer-legal-inline a:hover{ text-decoration: none; }
.footer-legal-sep{ display:inline; margin: 0 8px; opacity: 0.65; }

/* Footer shop button under email */
.footer-shop-btn{ margin-top: 8px; width: fit-content; }

.footer-legal{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 10px; }
.footer-legal a{ border: 0; padding: 0; border-radius: 0; text-decoration: underline; }
.footer-legal a:hover{ text-decoration: none; }

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 980px){
    .site-nav{ display:none; }
    .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
    .header-top-actions .btn{ display:none; } /* keep header cleaner on tablets */
    .guide-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer .footer-content{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px){
    .header-contact{ gap: 10px; }
    .site-logo img{ width: 160px; }
    .section{ padding: 56px 0; }
    .guide-grid{ grid-template-columns: 1fr; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }
}

/* Sticky mobile bottom bar for conversion */
/* Default: hidden on desktop/tablet. Only shown on mobile via media query below. */
.mobile-bottom-bar{ display:none; }
body::after{ content:none; }

@media (max-width: 820px){
    body::after{ content:""; display:block; height: 66px; }
    .mobile-bottom-bar{
        display:block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1800;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-2);
        padding: 10px 12px;
    }
    .mobile-bottom-bar .bar-inner{
        display:flex;
        gap: 10px;
    }
    .mobile-bottom-bar .btn{ flex: 1; }
}


/* -----------------------------
   Home Hero (premium spacing)
------------------------------ */
.hero{
    padding: 64px 0 52px;
}
.hero-inner{
    display:grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 22px;
    align-items: start;
}
.hero-content h1{ margin-bottom: 12px; }
.hero-content p{ font-size: 1.05rem; max-width: 70ch; }
.hero-actions{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 18px; }

.hero-aside{
    display:grid;
    gap: 12px;
}
.hero-stat{
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 14px 14px;
}
.hero-stat-number{
    display:block;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 1.35rem;
    color: var(--text);
}
.hero-stat-label{
    display:block;
    margin-top: 2px;
    color: var(--muted);
    font-weight: 650;
}

/* -----------------------------
   Home tiles (moved from inline)
------------------------------ */
.material-grid-2up{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
    margin-top:18px;
}

.material-tile{
    display:flex;
    flex-direction:column;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(15,23,42,0.10);
    box-shadow:0 10px 22px rgba(2,6,23,0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-height:320px;
}
.material-tile:hover{
    transform:translateY(-2px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(13, 74, 150, 0.22);
}

.material-tile-media{
    height:170px;
    position:relative;
    background:#0b1220;
    overflow:hidden;
}
.material-tile-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transform:scale(1.02);
}
.material-tile-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
        rgba(2,6,23,0.10) 0%,
        rgba(2,6,23,0.00) 45%,
        rgba(2,6,23,0.52) 100%);
    pointer-events:none;
}

.material-tile-body{
    padding:16px 16px 14px;
    display:flex;
    flex-direction:column;
    gap:8px;
    flex:1;
}
.material-tile-body h3{
    margin:0;
    color:#0b1220;
    font-size:1.08rem;
    letter-spacing:-0.01em;
}
.material-tile-body p{
    margin:0;
    color:#4b5563;
    font-size:0.95rem;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.material-tile-cta{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:800;
    padding-top: 10px;
}

@media (max-width: 980px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-aside{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
    .hero{ padding: 42px 0 38px; }
    .hero-aside{ grid-template-columns: 1fr; }
    .material-grid-2up{ grid-template-columns: 1fr; }
    .material-tile{ min-height: unset; }
}


/* -----------------------------
   Section variants + Home cards
------------------------------ */
.section-alt{
    background: var(--surface-2);
}
.section-cta{
    background: linear-gradient(180deg, rgba(13,74,150,0.06), rgba(245,158,11,0.06));
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.section-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; }

.applications-grid{
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.simple-app-card{
    display:block;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(2,6,23,0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.simple-app-card:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(13, 74, 150, 0.22);
}
.simple-app-card h3{ margin: 0 0 8px; font-size: 1.05rem; }
.simple-app-card p{ margin: 0; color: #4b5563; }

@media (max-width: 980px){
    .applications-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-cta-inner{ flex-direction: column; align-items:flex-start; }
}
@media (max-width: 620px){
    .applications-grid{ grid-template-columns: 1fr; }
}


/* WooCommerce: product trust modules (lightweight, no template overrides) */
.tsc-trust-modules{
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: rgba(0,0,0,.02);
}
.tsc-trust-title{
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  line-height: 1.2;
}
.tsc-trust-item{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 10px;
  margin-top: 10px;
}
.tsc-trust-item:first-of-type{
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.tsc-trust-summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tsc-trust-summary::-webkit-details-marker{ display:none; }
.tsc-trust-summary i{
  opacity: .85;
}
.tsc-trust-list{
  margin: 10px 0 0 18px;
}
.tsc-trust-list li{
  margin: 6px 0;
}
/* -----------------------------
   WooCommerce: archive grid + product cards
   Helps the catalog scale as products grow.
------------------------------ */
.woocommerce ul.products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product{
  list-style: none;
  margin: 0;
  padding: 14px 14px 16px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;

.woocommerce ul.products li.product a img{
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(0,0,0,.03);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  margin: 12px 0 6px 0;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #0b1220;
}
.woocommerce ul.products li.product .price{
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #0f172a;
}
.woocommerce ul.products li.product .price del{
  opacity: .6;
  font-weight: 700;
}
.woocommerce ul.products li.product .price ins{
  text-decoration: none;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button{
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Archive sorting + results */
.woocommerce .woocommerce-result-count{
  margin: 0 0 12px 0;
  opacity: .9;
}
.woocommerce .woocommerce-ordering{
  margin: 0 0 16px 0;
}
.woocommerce .woocommerce-ordering select{
  width: 100%;
  max-width: 340px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination{
  margin-top: 24px;
}
.woocommerce nav.woocommerce-pagination ul{
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li{
  border: 0;
  list-style: none;
  margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: #0b1220;
}
.woocommerce nav.woocommerce-pagination ul li span.current{
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  font-weight: 800;
}

/* -----------------------------
   WooCommerce: variations (sizes, options)
------------------------------ */
.woocommerce div.product form.cart{
  margin-top: 14px;
}
.woocommerce div.product form.cart .variations{
  margin-bottom: 12px;
}
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td{
  padding: 8px 0;
}
.woocommerce div.product form.cart .variations label{
  font-weight: 800;
  color: #0b1220;
}
.woocommerce div.product form.cart .variations select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
}
.woocommerce div.product form.cart .reset_variations{
  display: inline-block;
  margin-top: 8px;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Make the add to cart area clear and consistent */
.woocommerce div.product form.cart .single_add_to_cart_button{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
}

/* Notices and errors */
.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce .woocommerce-notices-wrapper .woocommerce-info{
  border-radius: 14px;
}

/* -----------------------------
   Link affordance, scoped (Woo + content cards)
------------------------------ */
.woocommerce a:not(.button):not(.btn){
  text-decoration: underline;
  text-underline-offset: 3px;
}
.woocommerce a:not(.button):not(.btn):hover{
  opacity: .9;
}
.card a:not(.btn):not(.button):not(.wp-block-button__link){
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card a:not(.btn):not(.button):not(.wp-block-button__link):hover{
  opacity: .9;
}

/* Keep product card links clean (title/image should not look underlined) */
.woocommerce ul.products li.product a{
  text-decoration: none;
}


/* === MATERIAL CATEGORY HEADER ALIGNMENT FIX ===
   Ensures H1 and subtitle align consistently on material category pages
   (Adhesive, Banners, Handheld, Magnet, Rigid).
*/
.material-category-header .page-header {
    text-align: left;
}

.material-category-header .page-header .page-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}
/* === END MATERIAL CATEGORY HEADER ALIGNMENT FIX === */
