﻿
:root {
    --teal: #1a5c55;
    --teal-dark: #134740;
    --teal-light: #2a7a71;
    --teal-pale: #eaf3f2;
    --accent: #e8a020;
    --accent-light: #f5c060;
    --white: #ffffff;
    --off-white: #f8f8f6;
    --border: #dde5e4;
    --text: #1c2b2a;
    --muted: #5f7774;
    --radius: 8px;
    /* Logo / footer palette */
    --sage: #6b7f5e;
    --sage-dark: #4e5e44;
    --sage-mid: #8a9e7a;
    --sage-pale: #f2f4f0;
    --sage-border: #c8d4c0;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--off-white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

/* ─── NAV ─────────────────────────────── */
nav {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 100px;
    height: 36px;
    background: var(--teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: url('https://www.braiswickdirect.co.uk/images/logocn.jpg') center center / cover no-repeat;
}

.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: black;
    letter-spacing: -0.5px;
}

    .logo-text small {
        display: block;
        font-family: 'Lato'
}

    .logo-text small {
        display: block;
        font-family: 'Lato', sans-serif;
        font-size: 0.62rem;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.18s;
    }

        .nav-links a:hover {
            color: var(--teal);
        }

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 7px 18px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.18s, color 0.18s;
}

    .btn-ghost:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.btn-accent {
    background: var(--teal);
    border: none;
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.18s;
}

    .btn-accent:hover {
        background: var(--teal-light);
    }


/* ─── HERO / CAROUSEL SECTION ───────── */
.carousel-section {
    position: relative;
}
/* Login card pinned to the right, vertically centred over carousel */
.login-overlay {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 20;
    width: 100%;
    max-width: 380px;
    pointer-events: none;
}

.access-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 28px 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
    pointer-events: all;
}
    /* ─── ACCESS CARD ─────────────────────── */
    .access-card h3 {
        font-family: 'Merriweather', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 6px;
    }

    .access-card p {
        font-size: 0.82rem;
        color: var(--muted);
        margin-bottom: 20px;
    }

.field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 5px;
}

.field-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.18s;
    outline: none;
    margin-bottom: 14px;
}

    .field-input:focus {
        border-color: var(--teal);
    }

    .field-input::placeholder {
        color: #b0c0bf;
    }

.btn-full {
    width: 100%;
    padding: 12px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.18s;
    margin-top: 4px;
}

    .btn-full:hover {
        background: var(--teal-light);
    }

.access-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--muted);
    font-size: 0.78rem;
}

    .access-divider::before, .access-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.add-code-btn {
    width: 100%;
    padding: 10px;
    background: var(--teal-pale);
    color: var(--teal);
    border: 1.5px dashed #9dc0bc;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.18s;
}

    .add-code-btn:hover {
        background: #d5e9e7;
    }

/* ─── INFO BAR ────────────────────────── */
.info-bar {
    background: #fffbf3;
    border-top: 3px solid var(--accent);
    padding: 20px 5%;
}

.info-bar-inner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    max-width: 900px;
}

.info-bar-icon {
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.info-bar-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b07010;
    margin-bottom: 8px;
}

.info-bar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-bar li {
    font-size: 0.83rem;
    color: #5a4010;
    padding-left: 14px;
    position: relative;
    line-height: 1.45;
}

    .info-bar li::before {
        content: '–';
        position: absolute;
        left: 0;
        color: var(--accent);
    }

/* ─── SECTION WRAPPER ────────────────── */
.section {
    padding: 56px 5%;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.section-sub {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ─── PACKAGES ───────────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.pkg {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .pkg:hover {
        box-shadow: 0 6px 28px rgba(26,92,85,0.12);
        transform: translateY(-3px);
    }

    .pkg.best {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(26,92,85,0.1);
    }

.pkg-top {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    position: relative;
}

.pkg-t1 {
    background: linear-gradient(135deg, #e6f0ef, #cfe0de);
}

.pkg-t2 {
    background: linear-gradient(135deg, #d8e9e8, #c0d6d4);
}

.pkg-t3 {
    background: linear-gradient(135deg, #f0ece6, #e0d4c8);
}

.pkg-t4 {
    background: linear-gradient(135deg, #e8eef0, #ccdae0);
}

.pkg-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
}

.pkg-body {
    padding: 20px;
}

.pkg-name {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pkg-desc {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.pkg-list {
    list-style: none;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .pkg-list li {
        font-size: 0.8rem;
        color: #3a4a49;
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

.tick {
    color: var(--teal);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pkg-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pkg-price {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
}

    .pkg-price sup {
        font-size: 0.75rem;
        vertical-align: super;
    }

.btn-select {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.18s;
}

    .btn-select:hover {
        background: var(--teal-light);
    }

.pkg.best .btn-select {
    background: var(--accent);
}

    .pkg.best .btn-select:hover {
        background: var(--accent-light);
    }

/* ─── HOW IT WORKS ───────────────────── */
.how-section {
    background: var(--teal-dark);
    padding: 56px 5%;
}

    .how-section .section-label {
        color: rgba(255,255,255,0.5);
    }

    .how-section .section-title {
        color: var(--white);
    }

    .how-section .section-sub {
        color: rgba(255,255,255,0.5);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .steps::after {
        content: '';
        position: absolute;
        top: 28px;
        left: 12%;
        right: 12%;
        height: 1px;
        background: rgba(255,255,255,0.1);
        z-index: 0;
    }

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.step h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.step p {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    line-height: 1.5;
    font-weight: 300;
}

/* ─── DELIVERY ───────────────────────── */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.del {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    transition: box-shadow 0.2s;
}

    .del:hover {
        box-shadow: 0 4px 20px rgba(26,92,85,0.1);
    }

.del-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.del h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--teal);
}

.del p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── TRUST BAR ──────────────────────── */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--muted);
}

    .trust-item span:first-child {
        font-size: 1.1rem;
    }

    .trust-item strong {
        color: var(--text);
        font-weight: 700;
    }

/* ─── FOOTER ─────────────────────────── */
footer {
    background: var(--sage-pale);
    border-top: 3px solid var(--sage);
    padding: 44px 5% 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.footer-about p {
    font-size: 0.8rem;
    color: var(--sage-dark);
    line-height: 1.65;
    margin-top: 0;
}

.footer-contact {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--sage-dark);
    line-height: 1.8;
}

    .footer-contact a {
        color: var(--sage);
        text-decoration: none;
    }

        .footer-contact a:hover {
            color: var(--sage-dark);
        }

footer h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    footer ul a {
        color: var(--sage-dark);
        text-decoration: none;
        font-size: 0.82rem;
        transition: color 0.18s;
    }

        footer ul a:hover {
            color: var(--sage);
        }

.footer-bottom {
    border-top: 1px solid var(--sage-border);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--sage-mid);
    flex-wrap: wrap;
    gap: 10px;
}

.pay-icons {
    display: flex;
    gap: 8px;
}

.pay-icon {
    background: var(--white);
    border: 1px solid var(--sage-border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.7rem;
    color: var(--sage);
}

/* ─── CAROUSEL ───────────────────────── */
.carousel-wrap {
    position: relative;
    overflow: hidden;
    background: var(--teal-dark);
    user-select: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
    min-width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cs-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2px;
}

.cs-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    max-width: 500px;
}

    .cs-headline em {
        font-style: normal;
        color: var(--accent-light);
    }

.cs-body {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    font-weight: 300;
    max-width: 440px;
}

.cs-cta {
    display: inline-block;
    margin-top: 8px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.18s;
    width: fit-content;
}

    .cs-cta:hover {
        background: rgba(255,255,255,0.25);
    }

.cs-badge {
    position: absolute;
    top: 28px;
    right: 80px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    padding: 0;
    pointer-events: all;
}

    .carousel-btn:hover {
        background: rgba(255,255,255,0.28);
    }

    .carousel-btn.prev {
        left: 20px;
    }

    .carousel-btn.next {
        right: 20px;
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 10px;
    background: var(--teal-dark);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

    .dot.active {
        background: var(--accent);
        transform: scale(1.35);
    }

/* ─── ANIMATIONS ─────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text > * {
    animation: fadeUp 0.5s ease both;
}

    .hero-text > *:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-text > *:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hero-text > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hero-text > *:nth-child(4) {
        animation-delay: 0.4s;
    }

.access-card {
    animation: fadeUp 0.55s 0.25s ease both;
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .login-overlay {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 24px 5%;
    }

    .carousel-slide {
        min-height: 320px;
        padding: 40px 6%;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

        .steps::after {
            display: none;
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .carousel-slide {
        min-height: 280px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        gap: 20px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

/* ─── GOOGLE TRANSLATE ACTIVE BANNER ─── */
/* gt-pre-active is set by an inline <head> script reading the googtrans cookie,
   so the offset is applied before first paint and there is no nav flash on load.
   translated-ltr/rtl are added by GT itself and handled by MutationObserver JS;
   these rules are a CSS fallback for both cases. */
html.gt-pre-active nav,
html.translated-ltr nav,
html.translated-rtl nav,
body.translated-ltr nav,
body.translated-rtl nav {
    top: 40px !important;
}

html.gt-pre-active body,
html.translated-ltr body,
html.translated-rtl body,
body.translated-ltr,
body.translated-rtl {
    padding-top: 104px !important; /* 40px GT banner + 64px nav */
}

.goog-te-banner-frame {
    display: none !important;
}

/* ─── TEXT SIZE CONTROL IN NAV ──────── */
.nav-textsize {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.18s;
    padding: 0;
}

    .nav-textsize:hover,
    .nav-textsize:focus-within {
        border-color: var(--teal);
    }

.nav-textsize-btn {
    background: none;
    border: none;
    border-right: 1px solid var(--border);
    padding: 0 10px;
    height: 32px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: color 0.15s, background 0.15s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-textsize-btn:last-child {
        border-right: none;
    }

    .nav-textsize-btn[data-size="s"] { font-size: 0.62rem; }
    .nav-textsize-btn[data-size="m"] { font-size: 0.82rem; }
    .nav-textsize-btn[data-size="l"] { font-size: 1.05rem; }

    .nav-textsize-btn:hover {
        color: var(--teal);
        background: var(--teal-pale);
    }

    .nav-textsize-btn.active {
        background: var(--teal);
        color: var(--white);
        border-right-color: var(--teal);
    }

    .nav-textsize-btn.active + .nav-textsize-btn {
        border-left-color: transparent;
    }

/* ─── GOOGLE TRANSLATE IN NAV ────────── */
.nav-translate {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 5px 10px;
    transition: border-color 0.18s;
    cursor: pointer;
}

    .nav-translate:hover,
    .nav-translate:focus-within {
        border-color: var(--teal);
    }

.nav-translate-icon {
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Remove Google's own container styling */
.goog-te-gadget {
    display: flex !important;
    align-items: center !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

/* Hide "Powered by Google Translate" */
.goog-te-gadget > span {
    display: none !important;
}

/* Style the language select to match the nav */
.goog-te-combo {
    background: transparent !important;
    border: none !important;
    color: var(--text) !important;
    font-size: 0.82rem !important;
    font-family: 'Lato', sans-serif !important;
    cursor: pointer !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 120px;
    line-height: 1.4 !important;
}

    .goog-te-combo:focus {
        outline: none !important;
        box-shadow: none !important;
    }

@media (max-width: 860px) {
    .nav-translate {
        padding: 5px 8px;
    }

    .goog-te-combo {
        max-width: 80px;
    }
}

/* ─── HAMBURGER & MOBILE NAV DRAWER ─── */
.nav-hamburger {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    transition: border-color 0.18s, color 0.18s;
}

    .nav-hamburger:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.nav-mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    z-index: 99;
    padding: 0 5%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: none;
}

    .nav-mobile.open {
        display: block;
    }

    .nav-mobile ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-mobile ul li a {
        display: block;
        padding: 15px 0;
        color: var(--text);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: 1px solid var(--border);
        transition: color 0.18s, padding-left 0.18s;
    }

    .nav-mobile ul li:last-child a {
        border-bottom: none;
        padding-bottom: 18px;
    }

    .nav-mobile ul li a:hover {
        color: var(--teal);
        padding-left: 6px;
    }

    .nav-mobile-login {
        color: var(--teal) !important;
        font-weight: 700 !important;
    }

html.gt-pre-active .nav-mobile,
html.translated-ltr .nav-mobile,
html.translated-rtl .nav-mobile,
body.translated-ltr .nav-mobile,
body.translated-rtl .nav-mobile {
    top: 104px;
}

.nav-mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 18px;
    border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
    .nav-hamburger {
        display: block;
    }

    .nav-right .nav-translate,
    .nav-right .nav-textsize,
    .nav-desktop-only {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .logo img {
        height: 38px;
        max-width: 140px;
        object-fit: contain;
    }
}

@media (max-width: 420px) {
    .basket-label {
        display: none;
    }
}



/* ─── COOKIE CONSENT PANEL ───────────────── */
#cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#cookie-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

#cookie-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
    transform: translateY(110%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
#cookie-panel.active {
    transform: translateY(0);
    pointer-events: auto;
}

#cookie-panel-inner {
    background: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
}

#cookie-panel-head {
    background: var(--teal-dark);
    color: var(--white);
    padding: 18px 24px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
}
#cookie-panel-head > div { flex: 1; }
#cookie-panel-head h4 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--white);
}
#cookie-panel-head p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}

#cookie-panel-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
    margin-top: -2px;
}
#cookie-panel-close:hover { color: var(--white); }

#cookie-panel-body {
    overflow-y: auto;
    flex: 1;
}

/* Category rows */
.ck-cat { border-bottom: 1px solid var(--border); }
.ck-cat:last-child { border-bottom: none; }

.ck-cat-hd {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    font-family: inherit;
    transition: background 0.15s;
}
.ck-cat-hd:hover { background: var(--teal-pale); }

.ck-chevron {
    font-size: 0.65rem;
    color: var(--muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.ck-cat-hd[aria-expanded="true"] .ck-chevron { transform: rotate(180deg); }

.ck-cat-name { flex: 1; }

.ck-always-on {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--teal);
    background: var(--teal-pale);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2px 10px;
    white-space: nowrap;
}

/* Toggle switch */
.ck-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}
.ck-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.ck-track {
    width: 44px;
    height: 24px;
    background: var(--border);
    border-radius: 12px;
    position: relative;
    transition: background 0.2s;
}
.ck-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.ck-toggle input:checked + .ck-track { background: var(--teal); }
.ck-toggle input:checked + .ck-track::after { transform: translateX(20px); }
.ck-toggle--fixed { opacity: 0.75; cursor: default; }
.ck-toggle--fixed .ck-track { background: var(--teal); }

.ck-cat-body {
    padding: 0 24px 16px 44px;
    font-size: 0.865rem;
    color: var(--muted);
    line-height: 1.65;
}
.ck-cat-body p { margin: 0 0 0.85em; }
.ck-cat-body p:last-child { margin-bottom: 0; }
.ck-cat-body a { color: var(--teal); }

/* Footer */
#cookie-panel-footer {
    display: flex;
    gap: 10px;
    padding: 14px 24px 18px;
    border-top: 1px solid var(--border);
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-shrink: 0;
}

#ck-reject-btn {
    flex: 1;
    min-width: 150px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 9px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s, color 0.15s;
}
#ck-reject-btn:hover { border-color: var(--teal); color: var(--text); }

#ck-save-btn {
    flex: 1;
    min-width: 150px;
    background: none;
    border: 1px solid var(--teal);
    border-radius: 5px;
    padding: 9px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
#ck-save-btn:hover { background: var(--teal-pale); }

#ck-accept-btn {
    flex: 1;
    min-width: 120px;
    background: var(--accent);
    border: none;
    border-radius: 5px;
    padding: 9px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s;
}
#ck-accept-btn:hover { background: var(--accent-light); color: var(--text); }

/* ─── COOKIE POLICY MODAL ─────────────────── */
#cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
}

#cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#cookie-modal-inner {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 640px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

#cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 14px;
    border-bottom: 1px solid var(--border);
}

#cookie-modal-title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--teal-dark);
}

#cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 0 4px;
}
#cookie-modal-close:hover { color: var(--text); }

#cookie-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text);
}
#cookie-modal-body p { margin-bottom: 1em; }
#cookie-modal-body p:last-child { margin-bottom: 0; }
#cookie-modal-body a { color: var(--teal); word-break: break-all; }

#cookie-modal-footer {
    padding: 14px 24px 18px;
    border-top: 1px solid var(--border);
    text-align: right;
}

#cookie-modal-accept {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 9px 22px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s;
}
#cookie-modal-accept:hover { background: var(--accent-light); color: var(--text); }

@media (max-width: 520px) {
    #cookie-panel-head { padding: 14px 16px 12px; }
    .ck-cat-hd { padding: 12px 16px; }
    .ck-cat-body { padding: 0 16px 14px 36px; }
    #cookie-panel-footer {
        flex-direction: column;
        padding: 12px 16px 16px;
    }
    #ck-reject-btn, #ck-save-btn, #ck-accept-btn {
        flex: none;
        width: 100%;
        min-width: 0;
    }
}
