/**
 * Labelworld Design System — Custom CSS Utilities
 *
 * Wordt geladen na de Hyvä styles.css en overschrijft/vergroot
 * de Tailwind utilities voor Labelworld-specifieke kleuren en stijlen.
 */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Design Tokens ─────────────────────────────────────── */
:root {
    --lw-orange:        #ff7000;
    --lw-orange-dark:   #e06000;
    --lw-orange-light:  #ff8a33;
    --lw-orange-tint:   #fff3e8;
    --lw-orange-rgb:    255, 112, 0;

    --lw-navy:          #1a2353;
    --lw-navy-dark:     #111740;
    --lw-navy-light:    #2e3c7a;
    --lw-navy-tint:     #eef0f8;
    --lw-navy-rgb:      26, 35, 83;
    --lw-navy-dark-rgb: 17, 23, 64;
    --lw-navy-light-rgb: 46, 60, 122;

    --lw-gray-50:       #f5f6fa;
    --lw-gray-100:      #eaecf3;
    --lw-gray-200:      #d1d5e0;
    --lw-gray-300:      #b0b6c8;
    --lw-gray-400:      #8a92aa;
    --lw-gray-500:      #636b85;
    --lw-gray-600:      #4a5168;
    --lw-gray-700:      #333a52;

    --lw-success:       #22994a;
    --lw-success-tint:  #e8f7ee;
    --lw-error:         #dc2626;
    --lw-error-tint:    #fef2f2;

    /* Override Hyvä primary → orange, secondary → navy */
    --color-primary:         var(--lw-orange);
    --color-primary-lighter: var(--lw-orange-light);
    --color-primary-darker:  var(--lw-orange-dark);
    --color-on-primary:      #ffffff;

    --color-secondary:         var(--lw-navy);
    --color-secondary-lighter: var(--lw-navy-light);
    --color-secondary-darker:  var(--lw-navy-dark);
    --color-on-secondary:      #ffffff;
}

/* ── Base Typography ───────────────────────────────────────── */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--lw-navy);
}

.font-display,
h1, h2, h3 {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

/* ── Max-width container ───────────────────────────────────── */
.max-w-content { max-width: 1200px; }

/* ── Orange utilities ──────────────────────────────────────── */
.bg-orange             { background-color: var(--lw-orange); }
.bg-orange-dark        { background-color: var(--lw-orange-dark); }
.bg-orange-light       { background-color: var(--lw-orange-light); }
.bg-orange-tint        { background-color: var(--lw-orange-tint); }
.text-orange           { color: var(--lw-orange); }
.text-orange-dark      { color: var(--lw-orange-dark); }
.border-orange         { border-color: var(--lw-orange); }
.border-2-orange       { border: 2px solid var(--lw-orange); }

.hover\:bg-orange:hover       { background-color: var(--lw-orange); }
.hover\:bg-orange-dark:hover  { background-color: var(--lw-orange-dark); }
.hover\:text-orange:hover     { color: var(--lw-orange); }
.hover\:border-orange:hover   { border-color: var(--lw-orange); }

/* ── Navy utilities ────────────────────────────────────────── */
.bg-navy               { background-color: var(--lw-navy); }
.bg-navy-dark          { background-color: var(--lw-navy-dark); }
.bg-navy-light         { background-color: var(--lw-navy-light); }
.bg-navy-tint          { background-color: var(--lw-navy-tint); }
.text-navy             { color: var(--lw-navy); }
.text-navy-dark        { color: var(--lw-navy-dark); }
.border-navy           { border-color: var(--lw-navy); }

.hover\:bg-navy:hover        { background-color: var(--lw-navy); }
.hover\:bg-navy-light:hover  { background-color: var(--lw-navy-light); }
.hover\:text-navy:hover      { color: var(--lw-navy); }
.hover\:border-navy:hover    { border-color: var(--lw-navy); }

/* ── Gray-brand utilities ──────────────────────────────────── */
.bg-gray-brand-50     { background-color: var(--lw-gray-50); }
.bg-gray-brand-100    { background-color: var(--lw-gray-100); }
.bg-gray-brand-200    { background-color: var(--lw-gray-200); }
.text-gray-brand-300  { color: var(--lw-gray-300); }
.text-gray-brand-400  { color: var(--lw-gray-400); }
.text-gray-brand-500  { color: var(--lw-gray-500); }
.text-gray-brand-600  { color: var(--lw-gray-600); }
.text-gray-brand-700  { color: var(--lw-gray-700); }
.border-gray-brand-100 { border-color: var(--lw-gray-100); }
.border-gray-brand-200 { border-color: var(--lw-gray-200); }
.border-gray-brand-300 { border-color: var(--lw-gray-300); }
.placeholder-gray-brand-400::placeholder { color: var(--lw-gray-400); }
.hover\:bg-gray-brand-50:hover { background-color: var(--lw-gray-50); }

/* ── Success / Error utilities ─────────────────────────────── */
.text-success    { color: var(--lw-success); }
.bg-success-tint { background-color: var(--lw-success-tint); }
.text-error      { color: var(--lw-error); }
.bg-error        { background-color: var(--lw-error); }
.bg-error-tint   { background-color: var(--lw-error-tint); }
.border-error    { border-color: var(--lw-error); }

/* ── Shadow utilities ──────────────────────────────────────── */
.shadow-card       { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.shadow-card-hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.hover\:shadow-card-hover:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ── Header ────────────────────────────────────────────────── */

/* Topbar link kleuren */
.lw-topbar a { color: var(--lw-gray-300); }
.lw-topbar a:hover { color: #fff; }

/* Navigatiebalk: alleen desktop-menu tonen vanaf lg, zodat mobile menu verborgen blijft. */
@media (min-width: 1024px) {
    #header nav .navigation {
        display: flex;
        align-items: stretch;
        width: 100%;
    }
}

/* Desktop nav: zorg dat de nav de volledige height vult */
#header nav .navigation .level-0 {
    margin-bottom: -2px; /* border-b-2 loopt gelijk met de nav border-b-2 */
}

/* Desktop nav menu-item link stijlen */
#header .navigation .level-0 > span > a.level-0 {
    color: var(--lw-navy);
    font-size: 0.875rem;
    font-weight: 600;
}
#header .navigation .level-0:hover > span > a.level-0 {
    color: var(--lw-orange);
}

/* Verwijder de Hyvä default container padding uit de nav */
#header nav .navigation > nav {
    padding: 0;
    width: 100%;
}

@keyframes lwCatLift {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 rgba(var(--lw-navy-rgb), 0);
    }
    35%, 65% {
        transform: translateY(-7px) scale(1.018);
        box-shadow: 0 8px 14px rgba(var(--lw-navy-rgb), 0.16);
    }
}

.lw-has-megamenu {
    position: static;
}

.lw-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 30;
    width: 100vw;
    transform: translateX(-50%);
    background: #fff;
    border-top: 1px solid var(--lw-gray-100);
    border-bottom: 1px solid var(--lw-gray-100);
    box-shadow: 0 22px 45px rgba(var(--lw-navy-rgb), 0.14);
}

.lw-megamenu-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    display: grid;
    grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 2.6fr);
    gap: 1.25rem;
}

.lw-megamenu-feature {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.35rem;
    background: var(--lw-navy);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.lw-megamenu-feature:hover {
    color: #fff;
    background: var(--lw-navy-dark);
}

.lw-megamenu-kicker {
    color: var(--lw-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lw-megamenu-feature strong {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.lw-megamenu-feature span:not(.lw-megamenu-kicker):not(.lw-megamenu-feature-link) {
    color: var(--lw-gray-300);
    font-size: 0.9rem;
    line-height: 1.45;
}

.lw-megamenu-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.lw-megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.lw-megamenu-card {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    min-height: 7.25rem;
    padding: 0.75rem;
    background: #f7f8fb;
    border: 1px solid var(--lw-gray-100);
    border-radius: 6px;
    color: var(--lw-navy);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.lw-megamenu-card:hover {
    color: var(--lw-navy);
    background: #fff;
    border-color: var(--lw-orange);
    box-shadow: 0 12px 24px rgba(var(--lw-navy-rgb), 0.11);
    transform: translateY(-1px);
}

.lw-megamenu-card-body {
    min-width: 0;
}

.lw-megamenu-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: var(--lw-navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.05;
}

.lw-megamenu-card-title svg {
    flex: 0 0 auto;
    color: var(--lw-orange);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.lw-megamenu-card:hover .lw-megamenu-card-title svg {
    opacity: 1;
    transform: translateX(0);
}

.lw-megamenu-card-subtitle {
    display: block;
    margin-top: 0.28rem;
    color: var(--lw-gray-400);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.lw-cat-visual {
    position: relative;
    display: block;
    width: 5.2rem;
    height: 5.8rem;
    overflow: hidden;
    background: var(--lw-navy-tint);
    border-radius: 5px;
}

.lw-cat-sheet {
    position: absolute;
    left: 1.28rem;
    top: 0.55rem;
    width: 2.7rem;
    height: 3.85rem;
    padding: 0.35rem 0.3rem;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 2px;
    box-shadow: 0 8px 14px rgba(var(--lw-navy-rgb), 0.09);
}

.lw-cat-sheet span {
    display: block;
    height: 0.15rem;
    margin-bottom: 0.25rem;
    background: #eef0f4;
    border-radius: 1px;
}

.lw-cat-sheet span:nth-child(1) { width: 82%; }
.lw-cat-sheet span:nth-child(2) { width: 62%; }
.lw-cat-sheet span:nth-child(3) { width: 74%; }
.lw-cat-sheet span:nth-child(4) { width: 56%; }
.lw-cat-sheet span:nth-child(5) { width: 70%; }

.lw-cat-lift {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.18rem;
    padding: 0.34rem;
    background: var(--lw-orange-tint);
    border: 1px solid color-mix(in srgb, var(--lw-orange) 28%, #fff);
    border-radius: 2px;
    animation: lwCatLift 3.2s ease-in-out infinite;
}

.lw-cat-lift span {
    display: block;
    height: 0.13rem;
    background: #c5c9d6;
    border-radius: 1px;
}

.lw-cat-lift span:first-child {
    width: 0.45rem;
    height: 0.45rem;
    margin-bottom: 0.06rem;
    background: var(--lw-orange);
    border-radius: 2px;
}

.lw-cat-lift span:nth-child(2) { width: 78%; }
.lw-cat-lift span:nth-child(3) { width: 56%; }

.lw-cat-visual-one .lw-cat-lift-a {
    left: 1.05rem;
    bottom: 0.82rem;
    width: 3.1rem;
    height: 1.45rem;
}

.lw-cat-visual-two .lw-cat-lift-a,
.lw-cat-visual-two .lw-cat-lift-b {
    bottom: 0.82rem;
    width: 1.45rem;
    height: 1.42rem;
}

.lw-cat-visual-two .lw-cat-lift-a { left: 1.05rem; }
.lw-cat-visual-two .lw-cat-lift-b {
    right: 1.05rem;
    animation-delay: 0.35s;
}

.lw-cat-visual-three .lw-cat-lift-a,
.lw-cat-visual-three .lw-cat-lift-b,
.lw-cat-visual-three .lw-cat-lift-c {
    left: 1.05rem;
    width: 3.1rem;
    height: 0.66rem;
    padding: 0.12rem 0.32rem;
}

.lw-cat-visual-three .lw-cat-lift-a { bottom: 2.15rem; }
.lw-cat-visual-three .lw-cat-lift-b {
    bottom: 1.38rem;
    animation-delay: 0.25s;
}
.lw-cat-visual-three .lw-cat-lift-c {
    bottom: 0.61rem;
    animation-delay: 0.5s;
}

.lw-cat-visual-three .lw-cat-lift span:first-child {
    display: none;
}

.lw-cat-visual-a6 .lw-cat-lift-a {
    left: 1.35rem;
    bottom: 0.57rem;
    width: 2.5rem;
    height: 2.78rem;
}

.lw-cat-visual-card .lw-cat-lift-a {
    left: 1.2rem;
    bottom: 1.16rem;
    width: 2.82rem;
    height: 1.7rem;
    background: #fff;
    border-color: #d1d5e0;
    border-radius: 4px;
}

.lw-cat-visual-badge .lw-cat-lift-a {
    left: 1.54rem;
    bottom: 0.88rem;
    width: 2.12rem;
    height: 2.45rem;
    background: #fff;
    border-color: #d1d5e0;
    border-radius: 6px;
}

.lw-cat-visual-badge .lw-cat-lift-a span:first-child {
    width: 0.7rem;
    height: 0.28rem;
    margin: 0 auto 0.22rem;
    background: var(--lw-orange);
    border-radius: 999px;
}

.lw-cat-visual-bol .lw-cat-lift-a {
    left: 1.05rem;
    bottom: 0.82rem;
    width: 3.1rem;
    height: 1.08rem;
}

.lw-cat-visual-one .lw-cat-lift-b,
.lw-cat-visual-one .lw-cat-lift-c,
.lw-cat-visual-a6 .lw-cat-lift-b,
.lw-cat-visual-a6 .lw-cat-lift-c,
.lw-cat-visual-card .lw-cat-lift-b,
.lw-cat-visual-card .lw-cat-lift-c,
.lw-cat-visual-badge .lw-cat-lift-b,
.lw-cat-visual-badge .lw-cat-lift-c,
.lw-cat-visual-bol .lw-cat-lift-b,
.lw-cat-visual-bol .lw-cat-lift-c {
    display: none;
}

/* ── Footer ────────────────────────────────────────────────── */

.lw-footer {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(var(--lw-orange-rgb), 0.12), transparent 34rem),
        radial-gradient(circle at 85% 20%, rgba(var(--lw-navy-light-rgb), 0.55), transparent 22rem),
        var(--lw-footer-bg, var(--lw-navy));
    color: #fff;
}
.lw-footer-usps {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(var(--lw-navy-dark-rgb), 0.72);
}
.lw-footer-usps ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lw-footer-usps li {
    display: flex;
    min-height: 5rem;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.lw-footer-usps li:last-child {
    border-right: 1px solid rgba(255,255,255,0.08);
}
.lw-footer-usps svg {
    flex: 0 0 auto;
    color: var(--lw-orange);
}
.lw-footer-usps span,
.lw-footer-usps strong {
    display: block;
}
.lw-footer-usps strong {
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.15;
}
.lw-footer-usps span {
    color: var(--lw-gray-300);
    font-size: 0.76rem;
    line-height: 1.35;
}
.lw-footer-main {
    display: grid;
    grid-template-columns: minmax(17rem, 1.35fr) minmax(10rem, 0.78fr) minmax(10rem, 0.78fr) minmax(18rem, 1.1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.lw-footer-brand,
.lw-footer-newsletter {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}
.lw-footer-brand {
    padding: 1.25rem;
}
.lw-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 11rem;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 0.62rem 0.72rem;
    border-radius: 8px;
    background: #fff;
}
.lw-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.lw-footer-brand p {
    margin: 0 0 1rem;
    color: var(--lw-gray-300);
    font-size: 0.875rem;
    line-height: 1.65;
}
.lw-footer-contact {
    display: grid;
    gap: 0.6rem;
}
.lw-footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.lw-footer-contact a:hover {
    border-color: rgba(var(--lw-orange-rgb), 0.5);
    background: rgba(var(--lw-orange-rgb), 0.1);
    color: #fff;
}
.lw-footer-contact span {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--lw-orange);
    color: #fff;
}
.lw-footer-contact strong {
    font-size: 0.86rem;
}
.lw-footer-links {
    padding: 0.35rem 0;
}
.lw-footer-links h3,
.lw-footer-newsletter h3 {
    margin: 0 0 1rem;
    color: #fff;
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}
.lw-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lw-footer-links a {
    display: inline-flex;
    align-items: center;
    color: var(--lw-gray-300);
    font-size: 0.875rem;
}
.lw-footer-links a::before {
    content: "";
    width: 0.34rem;
    height: 0.34rem;
    margin-right: 0.48rem;
    border-radius: 999px;
    background: rgba(var(--lw-orange-rgb), 0.7);
    transition: transform 0.15s ease, background 0.15s ease;
}
.lw-footer-links a:hover {
    color: #fff;
}
.lw-footer-links a:hover::before {
    background: var(--lw-orange);
    transform: scale(1.45);
}
.lw-footer-newsletter {
    padding: 1.25rem;
    background:
        linear-gradient(145deg, rgba(var(--lw-orange-rgb), 0.18), rgba(255,255,255,0.06)),
        rgba(255,255,255,0.06);
}
.lw-footer-pill {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(var(--lw-orange-rgb), 0.16);
    color: color-mix(in srgb, var(--lw-orange) 34%, #fff);
    font-size: 0.72rem;
    font-weight: 800;
}
.lw-footer-newsletter p {
    margin: 0 0 1rem;
    color: var(--lw-gray-300);
    font-size: 0.875rem;
    line-height: 1.55;
}
.lw-footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.lw-footer-newsletter-form input {
    min-width: 0;
    flex: 1;
    height: 2.75rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    background: rgba(255,255,255,0.95);
    color: var(--lw-navy);
    font-size: 0.875rem;
}
.lw-footer-newsletter-form button {
    height: 2.75rem;
    flex: 0 0 auto;
    padding: 0 1rem;
    border-radius: 6px;
    background: var(--lw-orange);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
}
.lw-footer-newsletter-form button:hover {
    background: var(--lw-orange-dark);
}
.lw-footer-newsletter small {
    display: block;
    margin-top: 0.65rem;
    color: var(--lw-gray-400);
    font-size: 0.72rem;
}
.checkout-onepage-success .page-main {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}
.checkout-onepage-success .columns,
.checkout-onepage-success .column.main {
    display: block;
    width: 100%;
}
.checkout-onepage-success .page-title-wrapper {
    text-align: center;
}
.checkout-onepage-success .page-title {
    margin-bottom: 1.25rem;
}
.checkout-onepage-success .checkout-success,
.checkout-onepage-success .checkout-success + div,
.checkout-onepage-success .checkout-registration,
.checkout-onepage-success .column.main > .py-4 {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.checkout-onepage-success .checkout-success {
    padding: 2rem;
    border: 1px solid var(--lw-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(18, 27, 61, 0.08);
}
.checkout-onepage-success .checkout-success p {
    margin: 0 0 0.75rem;
    color: var(--lw-muted);
    font-size: 1rem;
    line-height: 1.65;
}
.checkout-onepage-success .checkout-success .order-number {
    color: var(--lw-primary);
}
.checkout-onepage-success .checkout-success .btn,
.checkout-onepage-success .column.main > .py-4 .btn {
    justify-content: center;
}
.lw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--lw-gray-400);
}
.lw-footer-bottom a {
    color: var(--lw-gray-300);
}
.lw-footer-bottom a:hover {
    color: var(--lw-orange);
}

/* Forceer alle footer links naar de juiste kleur op navy achtergrond */
footer.bg-navy a {
    color: var(--lw-gray-400);
    text-decoration: none;
    transition: color 0.15s;
}
footer.bg-navy a:hover {
    color: var(--lw-orange);
    text-decoration: none;
}

/* Footer koppen wit */
footer.bg-navy h3 {
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Eventuele Magento footer child blocks */
footer.bg-navy .links ul { list-style: none; padding: 0; }
footer.bg-navy .links ul li { margin-bottom: 0.5rem; }
footer.bg-navy .links ul li a { color: var(--lw-gray-400); font-size: 0.75rem; }

/* ── Product page specifics ────────────────────────────────── */

/* Breadcrumb */
.lw-breadcrumb {
    font-size: 0.75rem;
    color: var(--lw-gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.lw-breadcrumb a:hover { color: var(--lw-orange); }
.lw-breadcrumb a { color: var(--lw-gray-400); }
.lw-breadcrumb .current { color: var(--lw-navy); font-weight: 500; }

/* Tabs op productpagina */
.lw-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--lw-orange);
}
.lw-tabs-nav button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lw-gray-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: color 0.15s;
}
.lw-tabs-nav button.active,
.lw-tabs-nav button[aria-selected="true"] {
    color: var(--lw-orange);
    border-bottom-color: var(--lw-orange);
}
.lw-tabs-nav button:hover { color: var(--lw-navy); }

/* Gallery thumbnails */
#gallery .js_thumbs_slide button {
    border-color: var(--lw-gray-200);
    border-radius: 4px;
}
#gallery .js_thumbs_slide button[class*="border-primary"] {
    border-color: var(--lw-orange) !important;
}

/* Product info title h1 override */
.page-title {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lw-navy);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

/* Stock status badges */
.lw-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}
.lw-stock-badge.in-stock {
    background-color: var(--lw-success-tint);
    color: var(--lw-success);
}
.lw-stock-badge.out-of-stock {
    background-color: var(--lw-error-tint);
    color: var(--lw-error);
}

/* Qty stepper */
.lw-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--lw-gray-200);
    border-radius: 4px;
    overflow: hidden;
}
.lw-qty-stepper button {
    padding: 0.625rem 0.75rem;
    color: var(--lw-gray-500);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
    background: white;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s;
}
.lw-qty-stepper button:hover { background-color: var(--lw-gray-50); }
.lw-qty-stepper input {
    width: 3.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lw-navy);
    border-left: 1px solid var(--lw-gray-200);
    border-right: 1px solid var(--lw-gray-200);
    border-top: none;
    border-bottom: none;
    padding: 0.625rem 0.25rem;
    outline: none;
    -moz-appearance: textfield;
}
.lw-qty-stepper input::-webkit-outer-spin-button,
.lw-qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* USP list */
.lw-usps {
    border-top: 1px solid var(--lw-gray-100);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.lw-usps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--lw-gray-600);
}

/* Staffelprijs tabel */
.lw-tier-table {
    width: 100%;
    border: 1px solid var(--lw-gray-100);
    border-radius: 4px;
    overflow: hidden;
    font-size: 0.875rem;
}
.lw-tier-table thead tr {
    background-color: var(--lw-navy-tint);
}
.lw-tier-table th {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lw-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lw-tier-table th:first-child { text-align: left; }
.lw-tier-table th:not(:first-child) { text-align: right; }
.lw-tier-table td {
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--lw-gray-100);
}
.lw-tier-table td:first-child { text-align: left; color: var(--lw-navy); }
.lw-tier-table td:not(:first-child) { text-align: right; }
.lw-tier-table .active-row { background-color: var(--lw-orange-tint); }
.lw-tier-table .save-pct { color: var(--lw-success); font-size: 0.75rem; font-weight: 500; }
.lw-tier-table .price-col { font-weight: 700; color: var(--lw-navy); }
.lw-tier-table .active-row .price-col { color: var(--lw-orange); }

/* Topbar */
.lw-topbar {
    background-color: var(--lw-navy);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    color: var(--lw-gray-300);
}

/* ── Gallery styling ───────────────────────────────────────── */
#gallery #gallery-main {
    background: #fff;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#gallery #gallery-main img {
    /* Laat afbeelding zijn eigen aspect ratio houden */
    object-fit: contain;
}

/* Thumbnail knoppen */
#gallery #thumbs .js_thumbs_slide button {
    border-radius: 4px;
    border: 1px solid var(--lw-gray-200);
    overflow: hidden;
    transition: border-color 0.15s;
}
#gallery #thumbs .js_thumbs_slide button:hover {
    border-color: var(--lw-navy);
}

/* ── Price box ─────────────────────────────────────────────── */
.price-box .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lw-orange);
    line-height: 1.1;
}

.price-box .old-price .price {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--lw-gray-400);
    text-decoration: line-through;
}

.price-box .final-price-excl-tax,
.price-box .price-excl-tax {
    font-size: 0.75rem;
    color: var(--lw-gray-500);
    margin-top: 0.125rem;
}

/* ── Magento product page layout tweaks ────────────────────── */
/* Verwijder de standaard Hyvä card stijl op product.info */
.product-info-main {
    /* Geen card wrapper nodig in Labelworld design */
}

/* btn-primary override — zorg dat de standaard btn afgerond is (4px) */
.btn {
    border-radius: 4px;
}

/* Winkelwagen-knop volledige breedte binnen zijn flex container */
#product-addtocart-button {
    flex: 1;
    min-width: 0;
}

/* ── Homepage ──────────────────────────────────────────────── */

/* Hero */
.lw-home-hero,
.lw-hero-bg {
    background:
        radial-gradient(circle at 78% 18%, rgba(var(--lw-orange-rgb), 0.2), transparent 24rem),
        linear-gradient(135deg, var(--lw-navy-dark) 0%, var(--lw-navy) 58%, var(--lw-navy-light) 100%);
}
.lw-home-hero {
    position: relative;
    overflow: hidden;
}
.lw-home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255,255,255,0.12);
}
.lw-home-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 4.35rem;
    padding-bottom: 4.15rem;
}
.lw-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.98fr);
    gap: 4.25rem;
    align-items: center;
}
.lw-hero-copy {
    max-width: 43rem;
}

.lw-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 100%;
    margin-bottom: 1.65rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
    text-decoration: none;
}
.lw-promo-pill:hover {
    color: #fff;
    border-color: rgba(var(--lw-orange-rgb), 0.75);
}
.lw-promo-pill span {
    color: var(--lw-gray-300);
}
.lw-promo-pill strong {
    color: var(--lw-orange);
    font-weight: 800;
}
.lw-home-title {
    margin: 0 0 1.45rem;
    color: #fff;
    font-size: clamp(3.4rem, 5.2vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
}
.lw-home-title span {
    display: block;
    margin-top: 0.25rem;
    color: var(--lw-orange);
}
.lw-home-hero-copy {
    max-width: 41rem;
    margin: 0 0 2rem;
    color: var(--lw-gray-300);
    font-size: 1.08rem;
    line-height: 1.65;
}
.lw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.3rem;
}
.lw-hero-actions .btn,
.lw-hero-actions .lw-btn-outline-white {
    min-height: 3.05rem;
}
.lw-hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 43rem;
}

.lw-hero-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lw-gray-300);
    font-size: 0.8125rem;
    min-height: 2.45rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
}
.lw-hero-proof span,
.lw-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--lw-success-tint);
    color: var(--lw-success);
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.lw-hero-product {
    position: relative;
    min-height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lw-hero-sheet {
    width: min(72vw, 21.5rem);
    aspect-ratio: 0.84;
    padding: 1.25rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
    transform: rotate(2deg);
}
.lw-hero-sheet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lw-hero-card {
    position: absolute;
    right: 1.25rem;
    bottom: 2.4rem;
    min-width: 9.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.lw-hero-card span,
.lw-hero-card small {
    display: block;
    color: var(--lw-gray-500);
    font-size: 0.75rem;
}
.lw-hero-card strong {
    display: block;
    color: var(--lw-orange);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.lw-usp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-home-usps {
    padding: 1rem 0;
    border-bottom: 1px solid var(--lw-gray-100);
    background: linear-gradient(180deg, #fff 0%, var(--lw-gray-50) 100%);
}
.lw-home-section {
    padding: 4rem 0;
}
.lw-home-section-muted {
    background:
        linear-gradient(180deg, var(--lw-gray-50) 0%, #fff 100%);
}

.lw-anniversary {
    background: #fff;
    padding: 2.5rem 0;
}
.lw-anniversary-inner,
.lw-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.25rem;
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 20%, rgba(var(--lw-orange-rgb), 0.24), transparent 18rem),
        linear-gradient(135deg, rgba(var(--lw-orange-rgb), 0.18), transparent 42%),
        var(--lw-navy);
    box-shadow: 0 18px 45px rgba(var(--lw-navy-rgb), 0.18);
}
.lw-category-tile {
    display: flex;
    min-height: 9.25rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fff 0%, #fff 56%, var(--lw-orange-tint) 100%);
    color: var(--lw-navy);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(var(--lw-navy-rgb), 0.06);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lw-category-tile:hover {
    color: var(--lw-navy);
    border-color: var(--lw-orange);
    box-shadow: 0 16px 34px rgba(var(--lw-navy-rgb), 0.12);
    transform: translateY(-2px);
}
.lw-category-tile span {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 800;
}
.lw-category-tile strong {
    color: var(--lw-orange);
    font-size: 0.875rem;
}

.lw-filter-chip {
    flex: 0 0 auto;
    padding: 0.625rem 0.875rem;
    border: 1px solid;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(var(--lw-navy-rgb), 0.04);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.lw-filter-chip:hover {
    box-shadow: 0 6px 16px rgba(var(--lw-navy-rgb), 0.1);
}
.lw-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

/* Genummerd stappenbol (Hoe werkt het?) */
.lw-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--lw-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Wit-outline knop op hero (navy achtergrond) */
.lw-btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
    line-height: 1.5;
}
.lw-btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}
.lw-hero-secondary-btn {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
}

/* Categorie filter-tabs */
.lw-cat-tab {
    padding: 0.75rem 1.125rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: -1px;
    display: inline-block;
    text-decoration: none;
}

/* Productkaart */
.lw-product-card {
    background: #fff;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(var(--lw-navy-rgb), 0.05);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lw-product-card:hover {
    border-color: rgba(var(--lw-orange-rgb), 0.48);
    box-shadow: 0 18px 38px rgba(var(--lw-navy-rgb), 0.13);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Productkaart afbeeldingsvlak */
.lw-product-img {
    height: 220px;
    background:
        linear-gradient(180deg, #f8f9fc 0%, var(--lw-gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--lw-gray-100);
    padding: 1.15rem;
}
.lw-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}
.lw-product-card:hover .lw-product-img img {
    transform: scale(1.03);
}

/* Productkaart badge (Bestseller / Nieuw / Sale) */
.lw-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    color: #fff;
    background: var(--lw-orange);
    box-shadow: 0 8px 18px rgba(var(--lw-orange-rgb), 0.22);
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Productkaart CTA knop */
.lw-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    background-color: var(--lw-orange);
    color: #fff;
    text-align: center;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.lw-product-card:hover .lw-card-btn,
.lw-card-btn:hover {
    background-color: var(--lw-orange-dark);
}

.lw-step-card {
    min-height: 13rem;
    padding: 1.5rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(var(--lw-navy-rgb), 0.06);
}
.lw-step-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--lw-orange);
    color: #fff;
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

/* ── Category / PLP ───────────────────────────────────────── */
.lw-category-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    margin: 0 0 1rem;
    padding: 1.5rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-category-help {
    width: 14rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--lw-orange-tint);
}
.lw-category-help strong,
.lw-category-help span {
    display: block;
}
.lw-category-help strong {
    color: var(--lw-orange-dark);
    font-weight: 800;
}
.lw-category-help span {
    margin-top: 0.25rem;
    color: var(--lw-gray-600);
    font-size: 0.8125rem;
    line-height: 1.4;
}
.lw-category-shortcuts {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
    padding-bottom: 0.25rem;
}
.lw-category-shortcuts a {
    flex: 0 0 auto;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--lw-gray-200);
    border-radius: 999px;
    color: var(--lw-navy);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
}
.lw-category-shortcuts a:hover {
    border-color: var(--lw-orange);
    color: var(--lw-orange);
}
.lw-plp {
    padding: 0 0 2.5rem;
}
.lw-plp-toolbar,
.lw-plp-bottom-toolbar {
    padding: 1rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-plp-bottom-toolbar {
    margin-top: 1.25rem;
}
.lw-plp-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.25rem 0 0;
}
.lw-list-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lw-list-card:hover {
    border-color: rgba(var(--lw-orange-rgb), 0.55);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
.lw-list-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 15rem;
    padding: 1rem;
    border-bottom: 1px solid var(--lw-gray-100);
    background: var(--lw-gray-50);
}
.lw-list-image img {
    max-height: 13rem;
    width: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}
.lw-list-card:hover .lw-list-image img {
    transform: scale(1.03);
}
.lw-list-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}
.lw-list-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}
.lw-list-usps li {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: var(--lw-gray-50);
    color: var(--lw-gray-600);
    font-size: 0.75rem;
    font-weight: 600;
}
.lw-list-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0.75rem 0 0;
}
.lw-list-specs div {
    min-width: 0;
    padding: 0.65rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-list-specs dt {
    margin-bottom: 0.18rem;
    color: var(--lw-orange);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}
.lw-list-specs dd {
    margin: 0;
    color: var(--lw-navy);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}
.lw-home-product-specs {
    display: grid;
    gap: 0.4rem;
}
.lw-home-product-specs div {
    min-width: 0;
}
.lw-home-product-specs dt {
    margin-bottom: 0.1rem;
    color: var(--lw-orange);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}
.lw-home-product-specs dd {
    margin: 0;
    color: var(--lw-navy);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
}
.lw-secondary-link {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border: 1px solid var(--lw-gray-200);
    border-radius: 4px;
    color: var(--lw-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}
.lw-secondary-link:hover {
    border-color: var(--lw-orange);
    color: var(--lw-orange);
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lw-category-seo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0 3rem;
    padding: 2rem;
    border-radius: 8px;
    background: var(--lw-gray-50);
}
.lw-category-seo p {
    margin-bottom: 0.75rem;
    color: var(--lw-gray-600);
    font-size: 0.9375rem;
}
.lw-faq-layout {
    display: grid;
    grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}
.lw-faq-sidebar {
    min-width: 0;
}
.lw-faq-nav-box {
    position: sticky;
    top: 6rem;
    padding: 1.25rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: var(--lw-gray-50);
}
.lw-faq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.lw-faq-nav a {
    display: block;
    padding: 0.65rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--lw-gray-600);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
}
.lw-faq-nav a:hover,
.lw-faq-nav a:focus {
    border-color: rgba(var(--lw-orange-rgb), 0.24);
    background: #fff;
    color: var(--lw-orange);
}
.lw-faq-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2rem;
}
.lw-faq-group {
    width: 100%;
    padding: 1.75rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.lw-faq-list details {
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-faq-list summary {
    cursor: pointer;
    padding: 1rem;
    color: var(--lw-navy);
    font-weight: 800;
}
.lw-faq-list details p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--lw-gray-600);
}

/* ── Contact page ─────────────────────────────────────────── */
.lw-contact-page {
    margin-bottom: 3rem;
}
.lw-contact-hero {
    max-width: 52rem;
    margin-bottom: 1.5rem;
}
.lw-contact-hero h1 {
    margin: 0 0 0.75rem;
    color: var(--lw-navy);
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
}
.lw-contact-hero p {
    max-width: 44rem;
    color: var(--lw-gray-600);
    font-size: 1rem;
    line-height: 1.7;
}
.lw-contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.lw-contact-options a {
    display: block;
    min-height: 5rem;
    padding: 1rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: var(--lw-gray-50);
    color: var(--lw-navy);
}
.lw-contact-options a:hover {
    border-color: var(--lw-orange);
    background: #fff;
}
.lw-contact-options strong,
.lw-contact-options span {
    display: block;
}
.lw-contact-options strong {
    margin-bottom: 0.2rem;
    color: var(--lw-navy);
    font-weight: 800;
}
.lw-contact-options span {
    color: var(--lw-gray-500);
    font-size: 0.875rem;
    line-height: 1.35;
}
.lw-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.9fr);
    gap: 2rem;
    align-items: start;
}
.lw-contact-form-panel,
.lw-contact-details-panel {
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(var(--lw-navy-rgb), 0.06);
}
.lw-contact-form-panel {
    padding: 1.5rem;
}
.lw-contact-details-panel {
    position: sticky;
    top: 6rem;
    padding: 1.5rem;
    background: var(--lw-gray-50);
}
.lw-contact-details .space-y-5 > div {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem;
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-contact-details .space-y-5 > div > span:first-child {
    margin-right: 0.15rem;
}
.lw-contact-note {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--lw-navy);
}
.lw-contact-note strong,
.lw-contact-note span {
    display: block;
}
.lw-contact-note strong {
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 0.95rem;
}
.lw-contact-note span {
    color: var(--lw-gray-300);
    font-size: 0.8125rem;
    line-height: 1.45;
}

/* ── Information pages: uitleg and FAQ ───────────────────── */
.lw-info-page {
    margin-bottom: 3rem;
}
.lw-info-hero {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background: var(--lw-gray-50);
}
.lw-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--lw-orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lw-info-hero h1,
.lw-info-panel h2,
.lw-info-split h2,
.lw-info-cta h2 {
    color: var(--lw-navy);
    font-family: var(--font-display, inherit);
    font-weight: 800;
    line-height: 1.1;
}
.lw-info-hero h1 {
    max-width: 52rem;
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
}
.lw-info-hero p,
.lw-info-panel p,
.lw-info-split p,
.lw-info-cta p {
    color: var(--lw-gray-600);
    line-height: 1.7;
}
.lw-info-hero > p {
    max-width: 48rem;
    font-size: 1.0625rem;
}
.lw-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.lw-info-grid {
    display: grid;
    gap: 1rem;
}
.lw-info-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 2rem;
}
.lw-info-steps article,
.lw-info-cards article,
.lw-info-split aside,
.lw-info-panel,
.lw-info-cta {
    border: 1px solid var(--lw-gray-100);
    border-radius: 8px;
    background: #fff;
}
.lw-info-steps article {
    padding: 1.25rem;
}
.lw-info-steps span {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: var(--lw-orange);
    color: #fff;
    font-weight: 800;
}
.lw-info-steps h2,
.lw-info-cards h3 {
    margin-bottom: 0.5rem;
    color: var(--lw-navy);
    font-size: 1.05rem;
    font-weight: 800;
}
.lw-info-split {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.7fr);
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: start;
}
.lw-info-split > div,
.lw-info-panel,
.lw-info-cta {
    padding: 1.5rem;
}
.lw-info-split aside {
    padding: 1.25rem;
    background: var(--lw-orange-tint);
}
.lw-info-split aside strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--lw-navy);
    font-size: 1rem;
}
.lw-info-split aside a {
    color: var(--lw-orange-dark);
    font-weight: 800;
}
.lw-info-panel {
    margin: 2rem 0;
    background: var(--lw-gray-50);
}
.lw-info-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem;
}
.lw-info-cards article {
    padding: 1rem;
}
.lw-check-list,
.lw-number-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--lw-gray-700);
}
.lw-check-list li,
.lw-number-list li {
    margin-bottom: 0.5rem;
}
.lw-info-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    background: var(--lw-navy);
}
.lw-info-cta h2,
.lw-info-cta p {
    color: #fff;
}
.lw-info-cta p {
    opacity: 0.82;
}

@media (max-width: 900px) {
    .lw-info-steps,
    .lw-info-split,
    .lw-info-cards {
        grid-template-columns: 1fr;
    }
    .lw-info-cta {
        display: block;
    }
}

/* ── Product detail conversion blocks ─────────────────────── */
.lw-pdp-promo {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(var(--lw-orange-rgb), 0.22);
    border-radius: 8px;
    background: var(--lw-orange-tint);
}
.lw-pdp-promo span,
.lw-pdp-promo strong {
    display: block;
}
.lw-pdp-promo span {
    color: var(--lw-orange-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}
.lw-pdp-promo strong {
    color: var(--lw-navy);
    font-size: 1rem;
}
.lw-pdp-promo p {
    max-width: 16rem;
    margin: 0;
    color: var(--lw-gray-600);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.cart .lw-cart-qty-input {
    width: auto;
    min-width: 6.25rem;
    max-width: min(14rem, 100%);
    transition: width 160ms ease;
    -moz-appearance: textfield;
}
.cart .lw-cart-qty-input::-webkit-outer-spin-button,
.cart .lw-cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 1023px) {
    .lw-footer-usps ul,
    .lw-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lw-home-hero-grid,
    .lw-product-grid {
        grid-template-columns: 1fr;
    }
    .lw-home-hero-inner {
        padding-top: 3.25rem;
        padding-bottom: 3rem;
    }
    .lw-home-title {
        font-size: clamp(3rem, 8vw, 4.8rem);
    }
    .lw-hero-proof-grid {
        grid-template-columns: 1fr;
    }
    .lw-hero-product {
        min-height: 18rem;
    }
    .lw-hero-sheet {
        width: min(58vw, 18rem);
    }
    .lw-hero-card {
        right: 1rem;
        bottom: 0;
    }
    .lw-anniversary-inner,
    .lw-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
    .lw-category-intro,
    .lw-category-seo {
        grid-template-columns: 1fr;
    }
    .lw-faq-layout,
    .lw-contact-grid,
    .lw-contact-options {
        grid-template-columns: 1fr;
    }
    .lw-faq-nav-box,
    .lw-contact-details-panel {
        position: static;
    }
    .lw-category-help {
        width: auto;
    }
}

@media (max-width: 639px) {
    .lw-footer-usps ul,
    .lw-footer-main,
    .lw-footer-newsletter-form {
        grid-template-columns: 1fr;
    }
    .lw-footer-usps ul,
    .lw-footer-main {
        display: grid;
    }
    .lw-footer-usps li,
    .lw-footer-usps li:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .lw-footer-newsletter-form {
        display: grid;
    }
    .lw-footer-newsletter-form button {
        width: 100%;
    }
    .lw-promo-pill {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 1.25rem;
        border-radius: 8px;
    }
    .lw-home-title {
        margin-bottom: 1.15rem;
        font-size: clamp(2.55rem, 12vw, 3.45rem);
        line-height: 1.02;
    }
    .lw-home-hero-copy {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.55;
    }
    .lw-hero-actions {
        display: grid;
        gap: 0.75rem;
        margin-bottom: 1.65rem;
    }
    .lw-hero-product {
        display: flex;
        min-height: 15rem;
        margin-top: 1rem;
    }
    .lw-hero-sheet {
        width: min(72vw, 15rem);
        padding: 0.85rem;
    }
    .lw-hero-card {
        right: 0;
        bottom: -0.5rem;
        min-width: 8.25rem;
        padding: 0.8rem;
    }
    .lw-hero-card strong {
        font-size: 1.45rem;
    }
    .lw-home-section {
        padding: 2.75rem 0;
    }
    .lw-home-hero-inner {
        padding-top: 2.45rem;
        padding-bottom: 2.65rem;
    }
    .lw-anniversary-inner,
    .lw-cta-band {
        padding: 1.25rem;
    }
    .lw-product-img {
        height: 170px;
    }
    .lw-category-intro,
    .lw-category-seo {
        padding: 1.25rem;
    }
    .lw-faq-group,
    .lw-contact-form-panel,
    .lw-contact-details-panel {
        padding: 1.25rem;
    }
    .lw-plp-toolbar,
    .lw-plp-bottom-toolbar {
        padding: 0.75rem;
    }
    .lw-pdp-promo {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .lw-plp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .lw-plp-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
