:root {
    /* Brondo Theme */
    --bg-color: #000000;
    --text-color: #ffffff;
    --military-green: #373e30;
    --military-green-light: #556b2f;
    --accent-color: var(--military-green-light);
    /* Use green as accent */
    --drawer-bg: #111;
    --modal-bg: #111;
    --border-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    /* Brutalist Monospace */
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    text-transform: uppercase;
    /* Force uppercase for that specific look */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Welcome Splash */
.welcome-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.welcome-splash.hidden-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    animation: splashFadeIn 1s ease-out;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
}

.splash-title sup {
    font-size: 0.38em;
    margin-left: 5px;
    position: relative;
    top: -0.9em;
}

.splash-socials {
    position: absolute;
    bottom: clamp(20px, 5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.splash-socials a {
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.splash-socials a:hover {
    color: #888;
    transform: scale(1.1);
}

.enter-site-btn {
    margin-top: 20px;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.enter-site-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.enter-site-btn:active {
    transform: scale(0.95);
}

.password-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.splash-password-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 18px;
    text-align: center;
    padding: 8px;
    width: 220px;
    outline: none;
    text-transform: uppercase;
}

.splash-password-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.splash-error {
    color: #ff3333;
    font-size: 12px;
    font-weight: 700;
    margin-top: -5px;
    letter-spacing: 1px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Header */
.site-header {
    padding: 14px 0;
    position: sticky;
    top: 0;
    background: var(--bg-color);
    /* sticky header */
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.site-header.scrolled {
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(90px, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 48px;
    padding: 0 clamp(12px, 2vw, 28px);
}

/* Header Logo */
.logo {
    justify-self: start;
}

.logo a {
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.85;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a sup {
    font-size: 0.38em;
    line-height: 0;
    margin-left: 3px;
    position: relative;
    top: -0.9em;
}

/* Menu Logo Button */
.menu-toggle.icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu-logo-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-white {
    opacity: 1;
    z-index: 2;
}

.logo-green {
    opacity: 0;
    z-index: 1;
}

.menu-toggle:hover .logo-white {
    opacity: 0;
}

.menu-toggle:hover .logo-green {
    opacity: 1;
    animation: simple-pulse 1s infinite alternate;
}

@keyframes simple-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }

    /* Slightly bigger pulse for button */
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 42px);
}

.main-nav a {
    font-weight: 900;
    font-size: clamp(13px, 1.15vw, 16px);
    letter-spacing: 0;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    line-height: 1;
    transition: color 0.2s, transform 0.1s;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover {
    color: #888;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a:active {
    transform: scale(0.95);
}

.header-actions button {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-checkout-btn {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 4px;
    margin-right: 20px;
    transition: color 0.2s, transform 0.1s;
}

.header-checkout-btn:hover {
    color: #888;
}

.header-checkout-btn:active {
    transform: scale(0.95);
}

.header-cart-icon {
    justify-self: end;
}

/* Product Section */
.products-section {
    padding: clamp(14px, 2.8vw, 34px) 0 0;
    scroll-margin-top: 150px;
}

.products-section-header {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: center;
    margin: 0 auto clamp(30px, 5vw, 58px);
    max-width: 900px;
    padding-bottom: 18px;
    text-align: center;
}

.products-section-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 48px) clamp(18px, 3vw, 36px);
    padding: 0 0 clamp(28px, 4vw, 40px);
    max-width: 1180px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
    /* group: card; removed as it is invalid standard CSS */
    position: relative;
    grid-column: span 2;
    min-width: 0;
}

.product-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.product-card {
    cursor: pointer;
    /* group: card; removed as it is invalid standard CSS */
    position: relative;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Instagram Showcase */
.instagram-showcase {
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: clamp(36px, 6vw, 86px) 0 clamp(46px, 7vw, 96px);
    width: 100%;
}

.instagram-heading {
    align-items: center;
    display: flex;
    gap: clamp(10px, 1.8vw, 20px);
    justify-content: center;
    margin-bottom: clamp(22px, 3vw, 38px);
    text-align: center;
}

.instagram-heading-chevron {
    color: #fff;
    height: clamp(18px, 2vw, 24px);
    width: clamp(18px, 2vw, 24px);
}

.instagram-heading-chevron path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.8;
}

.instagram-handle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    color: #fff;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    padding-bottom: 4px;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.instagram-handle:hover {
    border-color: #b7b7b7;
    color: #b7b7b7;
}

.instagram-carousel {
    position: relative;
    width: 100%;
}

.instagram-track {
    display: grid;
    gap: clamp(14px, 1.7vw, 28px);
    grid-auto-columns: minmax(240px, calc((100vw - 140px) / 4));
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 0 clamp(18px, 3vw, 52px);
    scroll-behavior: smooth;
    scroll-padding-inline: clamp(18px, 3vw, 52px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.instagram-track::-webkit-scrollbar {
    display: none;
}

.instagram-post {
    aspect-ratio: 3 / 4;
    background: #111;
    display: block;
    min-width: 0;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.instagram-post::before {
    background: rgba(0, 0, 0, 0.55);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.instagram-post::after {
    background-color: #fff;
    content: "";
    height: clamp(34px, 4vw, 48px);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.35s ease, transform 0.35s ease;
    width: clamp(34px, 4vw, 48px);
    z-index: 2;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919C8.416 2.175 8.796 2.163 12 2.163Zm0-2.163C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947C23.732 2.699 21.311.273 16.949.073 15.668.014 15.259 0 12 0Zm0 5.838A6.162 6.162 0 1 0 12 18.162 6.162 6.162 0 0 0 12 5.838ZM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919C8.416 2.175 8.796 2.163 12 2.163Zm0-2.163C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947C23.732 2.699 21.311.273 16.949.073 15.668.014 15.259 0 12 0Zm0 5.838A6.162 6.162 0 1 0 12 18.162 6.162 6.162 0 0 0 12 5.838ZM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.instagram-post img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    width: 100%;
}

.instagram-post:hover::before,
.instagram-post:focus-visible::before,
.instagram-post:hover::after,
.instagram-post:focus-visible::after {
    opacity: 1;
}

.instagram-post:hover::after,
.instagram-post:focus-visible::after {
    transform: translate(-50%, -50%) scale(1);
}

.instagram-post:hover img,
.instagram-post:focus-visible img {
    transform: scale(1.035);
}

.instagram-arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    height: clamp(42px, 4vw, 56px);
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    width: clamp(42px, 4vw, 56px);
    z-index: 2;
}

.instagram-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.instagram-arrow:disabled {
    cursor: default;
    opacity: 0.28;
    pointer-events: none;
}

.instagram-arrow svg {
    height: 62%;
    width: 62%;
}

.instagram-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2.25;
}

.instagram-arrow-left {
    left: clamp(8px, 1.4vw, 24px);
}

.instagram-arrow-right {
    right: clamp(8px, 1.4vw, 24px);
}

.sold-out-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-info {
    font-size: 13px;
    text-align: center;
}

.product-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-price {
    font-weight: 400;
    color: #cccccc;
}

.sale-price {
    color: var(--accent-color);
    margin-right: 8px;
}

.regular-price.crossed {
    text-decoration: line-through;
    color: #999;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(86vw, 780px);
    height: min(82vh, 560px);
    background: #000;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 56px #000;
    color: #D7FF2F;
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', Courier, monospace;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translate(-50%, -46%) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    visibility: hidden;
    z-index: 1100;
}

.cart-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}

.cart-header {
    align-items: center;
    border-bottom: 1px solid #D7FF2F;
    display: flex;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 clamp(18px, 2.5vw, 26px);
}

.cart-title {
    color: #D7FF2F;
    font-size: clamp(13px, 1.3vw, 17px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cart-header-right {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 24px);
}

#drawer-cart-items {
    color: #D7FF2F;
    font-size: clamp(12px, 1.15vw, 15px);
    font-weight: 900;
    text-transform: uppercase;
}

#close-cart {
    background: none;
    border: none;
    color: #D7FF2F;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 900;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

#close-cart:hover {
    color: #D7FF2F;
    transform: rotate(4deg);
}

/* Shipping Progress */
.shipping-progress {
    padding: 0 30px 20px;
    border-bottom: 1px solid #D7FF2F;
}

.progress-bar-container {
    height: 6px;
    background: #000;
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #D7FF2F;
    /* Green */
    width: 0%;
    transition: width 0.3s ease;
}

.shipping-text {
    font-size: 11px;
    font-weight: 700;
    color: #D7FF2F;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-text svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Promo Code */
.promo-section {
    padding: 15px 30px;
    border-bottom: 1px solid #D7FF2F;
}

.promo-btn {
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.promo-btn svg {
    width: 14px;
    height: 14px;
}

/* Cart Items */
.cart-items {
    flex: 1 1 auto;
    overflow: hidden;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 2.5vw, 26px);
}

.cart-item {
    align-items: center;
    display: grid;
    gap: clamp(12px, 1.8vw, 20px);
    grid-template-columns: 68px minmax(0, 1fr) auto;
    min-height: 72px;
    margin-bottom: 0;
    padding: 6px 0;
    position: relative;
}

.cart-item + .cart-item {
    border-top: 1px solid #D7FF2F;
}

.cart-item-media {
    align-items: center;
    display: flex;
    justify-content: center;
}

.cart-item-media img {
    aspect-ratio: 1 / 1;
    background: transparent;
    filter: none;
    max-height: 58px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 0;
}

.item-title {
    color: #D7FF2F;
    font-size: clamp(10px, 0.95vw, 13px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.item-variant {
    color: #F4F4EF;
    font-size: clamp(9px, 0.85vw, 11px);
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.item-price-row {
    color: #D7FF2F;
    justify-self: end;
    padding-top: 0;
    text-align: right;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current {
    font-weight: 700;
    color: #D7FF2F;
    font-size: clamp(11px, 1vw, 13px);
}

.price-original {
    text-decoration: line-through;
    color: #D7FF2F;
    font-size: 13px;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

/* Quantity and Delete */
.qty-selector {
    display: flex;
    align-items: center;
    background: transparent;
    color: #D7FF2F;
    gap: 0;
    font-size: clamp(10px, 0.95vw, 12px);
    font-weight: 700;
}

.qty-btn {
    background: none;
    border: none;
    color: #D7FF2F;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(15px, 1.45vw, 19px);
    font-weight: 900;
    height: 23px;
    line-height: 1;
    padding: 0 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.qty-btn:hover {
    color: #D7FF2F;
    transform: scale(1.08);
}

.qty-selector span {
    align-items: center;
    background: #D7FF2F;
    border: 1px solid #D7FF2F;
    color: #0F2A1D;
    display: inline-flex;
    height: 23px;
    justify-content: center;
    min-width: 31px;
}

.delete-btn {
    background: transparent;
    border: 0;
    color: #D7FF2F;
    cursor: pointer;
    font-family: inherit;
    font-size: 8px;
    font-weight: 900;
    padding: 0 0 0 4px;
    text-transform: uppercase;
}

/* Footer Section */
.cart-footer {
    padding: 0;
    border-top: none;
    background: #000;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.checkout-area {
    border-top: 1px solid #D7FF2F;
    padding: clamp(10px, 1.5vw, 16px) clamp(18px, 2.5vw, 26px) clamp(14px, 2vw, 20px);
}

.cart-subtotal-row {
    align-items: center;
    color: #D7FF2F;
    display: flex;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 900;
    justify-content: space-between;
    margin-bottom: 8px;
}

.terms-container {
    align-items: center;
    color: #D7FF2F;
    display: flex;
    gap: 8px;
    font-size: clamp(9px, 0.85vw, 11px);
    font-weight: 800;
    margin-bottom: 10px;
}

.terms-container input {
    -webkit-appearance: none;
    accent-color: #D7FF2F;
    appearance: none;
    background: #0F2A1D;
    border: 2px solid #D7FF2F;
    color: #D7FF2F;
    cursor: pointer;
    height: 15px;
    margin: 0;
    outline: 0;
    outline-color: #D7FF2F;
    position: relative;
    width: 15px;
}

.terms-container input:checked {
    background: #D7FF2F;
}

.terms-container input:checked::after {
    color: #0F2A1D;
    content: "✓";
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    left: 1px;
    line-height: 1;
    position: absolute;
    top: 0;
}

.terms-container a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
}

.terms-container a:hover {
    color: #D7FF2F;
}

.cart-action-row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

#checkout-btn {
    width: 100%;
    background: #D7FF2F;
    color: #0F2A1D;
    padding: 10px 14px;
    border: 2px solid #D7FF2F;
    font-family: inherit;
    font-size: clamp(10px, 0.95vw, 12px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

#checkout-btn:hover {
    background: #000;
    border-color: #D7FF2F;
    color: #D7FF2F;
}

#view-cart-btn {
    background: transparent;
    border: 2px solid #D7FF2F;
    color: #D7FF2F;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(10px, 0.95vw, 12px);
    font-weight: 900;
    padding: 10px 14px;
    text-transform: uppercase;
}

#view-cart-btn:hover {
    background: #D7FF2F;
    border-color: #D7FF2F;
    color: #0F2A1D;
}

/* Recommendations */
.recommendations {
    display: none;
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Arrows removed */

.rec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    background: #fff;
    margin-bottom: 20px;
}

.rec-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: #f9f9f9;
}

.rec-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rec-info h5 {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #666;
}

.rec-info h5 span {
    color: #000;
}

.rec-price {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.rec-add-btn {
    background: #000;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 2px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    background: #000;
}

.hero-image-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hero-image {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    transition: opacity 1s ease;
    width: 100%;
}

.hero-image.active {
    opacity: 1;
}

/* Animations */
@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.rec-pagination {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.page-line {
    flex: 1;
    height: 2px;
    background: #eee;
}

.page-line.active {
    background: #000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.product-modal {
    --product-accent: #D7FF2F;
    --product-danger: #ff2b12;
    background: #000;
    border: 0;
    box-shadow: none;
    color: var(--product-accent);
    display: block;
    font-family: 'Courier New', Courier, monospace;
    left: 50%;
    max-height: 88vh;
    max-width: 1180px;
    overflow-y: auto;
    padding: clamp(22px, 3vw, 42px);
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 1180px);
    z-index: 1100;
}

.modal-content {
    align-items: start;
    display: grid;
    gap: clamp(26px, 4vw, 54px);
    grid-template-columns: minmax(300px, 0.95fr) minmax(330px, 0.8fr);
}

.modal-image-col {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 34px);
    min-width: 0;
    padding: 0;
}

.modal-details-col {
    color: var(--product-accent);
    font-family: inherit;
    min-width: 0;
    padding: 0;
}

#close-modal {
    background: none;
    border: 1px solid transparent;
    color: var(--product-accent);
    cursor: pointer;
    font-family: inherit;
    font-size: 28px;
    line-height: 1;
    padding: 8px 12px;
    position: absolute;
    right: clamp(14px, 2vw, 28px);
    top: clamp(12px, 2vw, 22px);
    z-index: 10;
}

#close-modal:hover {
    border-color: currentColor;
}

#modal-img {
    filter: drop-shadow(0 0 14px rgba(215, 255, 47, 0.2));
    height: auto;
    max-height: min(52vh, 500px);
    max-width: 100%;
    object-fit: contain;
    width: min(100%, 560px);
}

.modal-details-col h2 {
    color: var(--product-accent);
    font-family: inherit;
    font-size: clamp(24px, 2.55vw, 36px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 0 0 clamp(18px, 2.7vw, 30px);
    max-width: 560px;
    text-transform: uppercase;
}

.modal-subtitle {
    color: rgba(215, 255, 47, 0.74);
    font-size: 11px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

.price-container {
    color: var(--product-accent);
    display: flex;
    font-family: inherit;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 400;
    gap: 16px;
    margin-bottom: clamp(20px, 3vw, 30px);
}

#modal-compare-price {
    color: rgba(215, 255, 47, 0.45);
}

.modal-option-block {
    margin-bottom: clamp(18px, 2.3vw, 28px);
}

.modal-option-label {
    color: var(--product-accent);
    font-family: inherit;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.modal-colour-swatch {
    align-items: center;
    background: #000;
    border: 2px solid var(--product-accent);
    cursor: pointer;
    display: inline-flex;
    height: clamp(74px, 6.2vw, 94px);
    justify-content: center;
    padding: 9px;
    width: clamp(74px, 6.2vw, 94px);
}

.modal-colour-swatch img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.selector-row {
    display: block;
}

.size-dropdown {
    display: none;
}

.modal-size-options {
    border: 1px solid rgba(215, 255, 47, 0.5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    max-width: 500px;
}

.modal-size-btn {
    align-items: center;
    background: #000;
    border: 0;
    border-right: 1px solid rgba(215, 255, 47, 0.5);
    color: var(--product-accent);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: clamp(14px, 1.35vw, 18px);
    font-weight: 700;
    height: clamp(56px, 5.8vw, 76px);
    justify-content: center;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-size-btn:last-child {
    border-right: 0;
}

.modal-size-btn:hover,
.modal-size-btn.active {
    background: var(--product-accent);
    color: #000;
}

.modal-size-btn:disabled {
    color: rgba(215, 255, 47, 0.24);
    cursor: not-allowed;
    text-decoration: line-through;
}

.action-buttons {
    display: flex;
    max-width: 500px;
    margin: 0 0 clamp(24px, 3vw, 38px);
    width: 100%;
}

#add-to-cart-btn {
    background: #0F2A1D;
    border: 2px solid #0F2A1D;
    color: var(--product-accent);
    cursor: pointer;
    flex: 1 1 auto;
    font-family: inherit;
    font-size: clamp(14px, 1.25vw, 17px);
    font-weight: 700;
    letter-spacing: 0;
    min-height: 60px;
    min-width: 0;
    padding: 18px 26px;
    text-transform: uppercase;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#add-to-cart-btn:hover {
    background: var(--product-accent);
    border-color: var(--product-accent);
    color: #0F2A1D;
}

#add-to-cart-btn:disabled {
    background: #0F2A1D;
    border-color: #0F2A1D;
    color: rgba(215, 255, 47, 0.55);
    cursor: not-allowed;
    opacity: 0.78;
}

.modal-description {
    color: var(--product-accent);
    font-family: inherit;
    font-size: clamp(13px, 1.12vw, 16px);
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 clamp(24px, 3.5vw, 52px);
    max-width: 540px;
    text-transform: uppercase;
}

.modal-description br {
    content: "";
    display: block;
    margin-top: 6px;
}

.modal-info-links {
    display: grid;
    gap: 8px;
    justify-items: start;
}

.modal-info-links a,
.size-guide-btn {
    background: transparent;
    border: 0;
    border-bottom: 2px solid currentColor;
    color: var(--product-accent);
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    padding: 0 0 3px;
    text-transform: uppercase;
}

.modal-info-links a:hover,
.size-guide-btn:hover {
    color: #fff;
}

.modal-thumbnails-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 1.3vw, 16px);
    justify-content: center;
    margin: 0 auto;
    max-width: 560px;
}

.thumbnail-btn {
    background: #000;
    border: 1px solid transparent;
    cursor: pointer;
    height: clamp(58px, 5.6vw, 82px);
    padding: 0;
    width: clamp(58px, 5.6vw, 82px);
}

.thumbnail-btn img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.thumbnail-btn.active {
    border-color: var(--product-accent);
}

.shipping-note {
    color: var(--product-accent);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    margin-top: 5px;
    text-transform: uppercase;
}

.stock-warning {
    color: var(--product-danger);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 8px;
    text-transform: uppercase;
}


/* Shipping Modal Base */
.modal-base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-base-content {
    background: #fff;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-base-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-family: inherit;
}

.footer-row {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    justify-content: center;
    min-height: 56px;
    padding: 0 clamp(16px, 4vw, 48px);
    text-align: center;
    width: 100%;
}

.footer-social-row {
    min-height: 68px;
}

.social-icons {
    align-items: center;
    display: flex;
    gap: clamp(24px, 3.2vw, 40px);
    justify-content: center;
}

.social-icons a {
    align-items: center;
    color: #fff;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    transition: color 0.25s ease, transform 0.25s ease;
    width: 28px;
}

.social-icons a:hover {
    color: #b7b7b7;
    transform: translateY(-2px);
}

.social-icons svg {
    display: block;
    height: 22px;
    width: 22px;
}

.footer-nav {
    display: flex;
    gap: clamp(18px, 3vw, 36px);
    flex-wrap: wrap;
    min-height: 62px;
}

.footer-nav a {
    color: #fff;
    font-size: clamp(11px, 0.95vw, 14px);
    font-weight: 900;
    line-height: 1;
    text-transform: none;
    transition: color 0.25s ease;
}

.footer-nav a:hover {
    color: #b7b7b7;
}

.footer-copyright {
    border-bottom: none;
    min-height: 44px;
}

.footer-copyright p {
    color: #fff;
    font-size: clamp(10px, 0.88vw, 13px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}

@media (max-width: 900px) {
    .footer-row {
        min-height: 52px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-social-row {
        min-height: 62px;
    }

    .footer-nav {
        gap: 14px 22px;
        min-height: 68px;
    }

    .footer-nav a {
        font-size: 11px;
    }

    .footer-copyright {
        min-height: 48px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}

/* Header Cart Icon */
.header-cart-icon {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.header-cart-icon:hover {
    transform: scale(1.05);
}

.header-cart-icon svg {
    /* Make icon slightly bolder */
    stroke-width: 2px;
}

/* Red Notification Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #ff3b30;
    /* Apple/Standard Red Notification */
    color: white;
    font-size: 10px;
    font-weight: 700;
    height: 18px;
    min-width: 18px;
    padding: 0 4px;
    border-radius: 9px;
    /* Capsule/Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1080px) and (min-width: 769px) {
    .header-inner {
        grid-template-columns: minmax(170px, 0.8fr) auto minmax(56px, 0.5fr);
        gap: 18px;
        padding: 0 16px;
    }

    .logo a {
        font-size: clamp(31px, 4vw, 38px);
        letter-spacing: -1.5px;
    }

    .main-nav ul {
        gap: clamp(16px, 2.4vw, 28px);
    }

    .main-nav a {
        font-size: clamp(12px, 1.25vw, 14px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 10px;
    }

    .desktop-only {
        display: none;
    }

    .product-modal {
        grid-template-columns: 1fr;
        padding: 0;
        height: 100vh;
        max-height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    .cart-drawer {
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
        width: 100%;
    }

    .cart-header {
        min-height: 48px;
        padding: 0 14px;
    }

    .cart-title {
        font-size: 14px;
    }

    #drawer-cart-items {
        font-size: 11px;
    }

    #close-cart {
        font-size: 26px;
    }

    .cart-items {
        padding: 9px 14px;
    }

    .cart-item {
        gap: 10px;
        grid-template-columns: 58px minmax(0, 1fr) auto;
        min-height: 68px;
        padding: 6px 0;
    }

    .cart-item-media img {
        max-height: 52px;
    }

    .cart-item-details {
        padding-top: 0;
    }

    .item-price-row {
        grid-column: auto;
        justify-self: end;
        padding-top: 0;
        text-align: right;
    }

    .item-title {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .item-variant {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .checkout-area {
        padding: 11px 14px 14px;
    }

    .cart-action-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

/* Size Guide Trigger Button */
.size-guide-btn {
    background: transparent;
    /* Subtle: Transparent */
    color: #fff;
    /* White text */
    border: 1px solid #fff;
    /* White border to define shape */
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 0;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.size-guide-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Subtle hover effect */
    border-color: #fff;
}



.size-guide-btn svg {
    width: 16px;
    /* Slightly smaller icon for button balance */
    height: 16px;
    fill: currentColor;
}

.product-modal .size-guide-btn {
    align-items: initial;
    background: transparent;
    border: 0;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    color: var(--product-accent);
    display: inline-block;
    font-family: inherit;
    font-size: clamp(15px, 1.45vw, 20px);
    font-weight: 700;
    gap: 0;
    padding: 0 0 3px;
}

.product-modal .size-guide-btn:hover {
    background: transparent;
    border-color: currentColor;
    color: #fff;
}

@media (max-width: 900px) {
    .modal-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #modal-img {
        max-height: 44vh;
        width: min(100%, 460px);
    }

    .modal-size-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .modal-size-btn:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 768px) {
    .product-modal {
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
        padding: 54px 18px 28px;
        width: 100%;
    }

    .modal-content {
        gap: 24px;
    }

    .modal-image-col {
        gap: 18px;
    }

    .modal-details-col h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .modal-thumbnails-grid {
        justify-content: flex-start;
    }

    #add-to-cart-btn {
        width: 100%;
    }
}

/* Size Guide Drawer */
.size-guide-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    /* Adjust based on needs */
    height: 100vh;
    background: #fff;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.size-guide-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.drawer-header h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

#close-size-guide {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    font-weight: 300;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

/* Unit Toggle */
.unit-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 4px;
    /* Slight rounding or square */
    padding: 4px;
    margin-bottom: 30px;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}

.toggle-btn.active {
    background: #000;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Size Table */
.size-image-container {
    margin-bottom: 20px;
    width: 100%;
}

#size-guide-img,
#size-guide-img-2 {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    /* Optional: smooth corners */
}

.size-table-container {
    margin-bottom: 30px;
}

#size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
    color: #000;
}

#size-table th {
    padding: 15px;
    font-weight: 900;
    border-bottom: 1px solid #eee;
}

#size-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

#size-table .row-label {
    text-align: left;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

#size-table .row-label span {
    font-weight: 400;
    opacity: 0.6;
}

/* Diagram Placeholder */
.diagram-placeholder {
    margin-bottom: 30px;
}

/* Note & Button */
.size-note {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.7;
}

.got-it-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
}

.got-it-btn:hover {
    background: #333;
}

/* Mobile Product Grid (2x2) */
@media (max-width: 768px) {
    .products-section {
        padding-top: 28px;
        scroll-margin-top: 132px;
    }

    .products-section-header {
        margin-bottom: 34px;
        padding-bottom: 14px;
    }

    .products-section-title {
        font-size: clamp(30px, 11vw, 46px);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 10px;
        padding: 20px 0;
    }

    .product-card,
    .product-card:nth-last-child(2):nth-child(3n + 1) {
        grid-column: auto;
    }

    .instagram-showcase {
        padding-top: 34px;
    }

    .instagram-heading {
        margin-bottom: 22px;
    }

    .instagram-track {
        grid-auto-columns: minmax(230px, 72vw);
        padding: 0 18px;
        scroll-padding-inline: 18px;
    }

    .instagram-arrow {
        height: 42px;
        width: 42px;
    }

    .product-info {
        font-size: 11px;
    }

    .product-price {
        font-size: 11px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    font-size: 13px;
    font-weight: 500;
    /* Regular weight */
    text-transform: uppercase;
    line-height: 1.15;
    flex: 1;
    /* Take up available space */
    padding-right: 20px;
    /* Space between text and buttons */
}

.cookie-text strong {
    font-weight: 900;
    /* Extra bold */
    display: block;
    margin-bottom: 5px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    /* Don't shrink buttons */
}

.cookie-buttons button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-buttons button#manage-cookies-btn,
.cookie-buttons button#deny-cookies-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-buttons button:hover {
    background: #ccc;
    color: #000;
}

.cookie-buttons button#manage-cookies-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background: #fff;
    color: #000;
    /* Ensure text is black */
    padding: 40px;
    width: 90%;
    max-width: 400px;
    border: 1px solid #000;
}

.cookie-modal-content h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.cookie-label-text {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}

.cookie-input-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50px;
}

.cookie-option input {
    margin-left: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

.cookie-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-modal-actions button {
    width: 100%;
    padding: 15px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

#save-preferences-btn {
    background: #000;
    color: #fff;
}

#save-preferences-btn:hover {
    background: #333;
}

#close-cookie-modal {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

#close-cookie-modal:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding-bottom: 30px;
        /* Safe area */
    }
}

/* RESPONSIVE HEADER - CENTER LOGO */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .site-header {
        padding: 8px 0;
    }

    .header-inner {
        position: relative;
        justify-content: center;
        display: flex;
        min-height: 62px;
        padding: 0 14px;
    }

    .header-inner .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: min(210px, calc(100vw - 150px));
        display: flex;
        justify-content: center;
    }

    .logo a {
        font-size: clamp(24px, 8vw, 33px);
        letter-spacing: -1.6px;
        white-space: nowrap;
    }

    .logo a sup {
        font-size: 0.36em;
        margin-left: 2px;
        top: -0.95em;
    }

    .menu-toggle {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }

    .menu-logo-container {
        width: 48px;
        height: 48px;
    }

    .header-actions {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }

.header-cart-icon svg {
        width: 29px;
        height: 29px;
    }
}

/* Legal / Policy Pages */
.policy-container,
.policy-content,
.policy-content p,
.policy-content li,
.policy-content ul,
.policy-content ol,
.policy-content strong,
.policy-content a,
.policy-content table,
.policy-content td {
    color: #D7FF2F !important;
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content th {
    color: #F4F4EF !important;
}

.policy-content h2 {
    border-bottom-color: #F4F4EF !important;
}

.policy-content a {
    text-decoration-color: #D7FF2F !important;
}

.policy-content table,
.policy-content th,
.policy-content td {
    border-color: #D7FF2F !important;
}

/* Terms Warning Modal */
.warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Slightly darker for emphasis */
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    /* High z-index */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.warning-modal.active {
    opacity: 1;
    visibility: visible;
}

.warning-content {
    background: #111;
    border: 1px solid #333;
    padding: 60px 40px;
    /* More padding */
    text-align: center;
    position: relative;
    max-width: 90%;
    width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.warning-modal.active .warning-content {
    transform: scale(1);
}

.warning-content h2 {
    color: #d32f2f;
    /* Red for warning */
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-content p {
    color: #fff;
    margin-bottom: 40px;
    font-size: 13px;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 600;
}

.warning-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 800;
    transition: color 0.2s;
}

.warning-link:hover {
    color: #999;
}

.warning-content button#acknowledge-terms-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.warning-content button#acknowledge-terms-btn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.close-warning-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-warning-btn:hover {
    color: #fff;
}
