/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
}

.admin-bar .site-header {
    top: 32px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--spacing-lg);
}

.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Logo Styles - Header */
.site-branding .custom-logo-link,
.site-branding .site-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-branding .custom-logo-link img,
.site-branding .custom-logo,
.site-branding .site-logo {
    max-height: 70px;
    width: auto;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    transition: opacity var(--transition-fast);
}

.site-branding .custom-logo-link:hover img,
.site-branding .site-logo-link:hover .site-logo {
    opacity: 0.85;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    color: var(--text-primary);
}

.menu-toggle-close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-close {
    display: inline-flex;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: var(--spacing-sm) 0;
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium, 500);
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--primary-green-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-search-toggle,
.header-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.header-search-toggle:hover,
.header-cart:hover {
    color: var(--primary-green-dark);
}

.menu-open {
    overflow: hidden;
}

.search-open {
    overflow: hidden;
}

.filters-open {
    overflow: hidden;
}

.header-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    color: var(--text-primary);
    background-color: var(--primary-green);
    border-radius: 50%;
}

.woocommerce-cart .header-cart .cart-count,
.woocommerce-checkout .header-cart .cart-count {
    display: none;
}

/* Search Overlay */
#search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

#search-overlay.active {
    display: flex;
}

#search-overlay .search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: var(--spacing-xl);
}

#search-overlay .search-overlay-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-md);
}

#search-overlay .search-overlay-copy {
    max-width: 460px;
}

#search-overlay .search-overlay-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

#search-overlay .search-overlay-title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.06;
    color: #ffffff;
}

#search-overlay .search-overlay-description {
    margin: 10px 0 0;
    max-width: 32rem;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

#search-overlay .search-form {
    display: flex;
    margin-top: var(--spacing-lg);
}

#search-overlay .search-input-shell {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

#search-overlay .search-input-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

#search-overlay .search-input-icon svg {
    width: 18px;
    height: 18px;
}

#search-overlay .search-input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--primary-bg);
    outline: none;
    transition: border-color var(--transition-fast);
}

#search-overlay .search-input:focus {
    border-color: var(--primary-green);
}

#search-overlay .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-green);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 700;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

#search-overlay .search-submit:hover {
    background: var(--primary-green-dark);
}

#search-overlay .search-close {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: var(--spacing-sm);
}

#search-overlay .search-results {
    margin-top: var(--spacing-md);
    background: var(--primary-bg);
    border-radius: var(--border-radius-md);
    max-height: 400px;
    overflow-y: auto;
}

#search-overlay .search-results:empty {
    display: none;
}

#search-overlay .search-discovery {
    display: none;
}

#search-overlay .search-discovery.is-hidden {
    display: none;
}

#search-overlay .search-feedback {
    padding: 18px;
}

#search-overlay .search-feedback__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#search-overlay .search-feedback__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

#search-overlay .search-feedback__text {
    margin: 10px 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

#search-overlay .search-result-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

#search-overlay .search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#search-overlay .search-result-kicker,
#search-overlay .search-result-meta,
#search-overlay .search-discovery-label,
#search-overlay .search-discovery-chips,
#search-overlay .search-term-chips,
#search-overlay .search-loading-list,
#search-overlay .search-loading-lines,
#search-overlay .search-loading-line,
#search-overlay .search-loading-thumb,
#search-overlay .search-result-thumb__placeholder {
    display: block;
}

#search-overlay .search-result-meta {
    display: flex;
}

#search-overlay .search-result-item {
    --search-result-delay: 0ms;
}

@keyframes searchOverlayShimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@keyframes searchResultEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#search-overlay .search-result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

#search-overlay .search-result-item:hover {
    background: var(--card-bg);
}

#search-overlay .search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

#search-overlay .search-result-info {
    flex: 1;
}

#search-overlay .search-result-title {
    font-weight: 600;
    margin-bottom: 4px;
}

#search-overlay .search-result-price {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    #search-overlay {
        display: flex;
        align-items: flex-end;
        justify-content: stretch;
        padding: 12px 0 0;
        background: rgba(6, 12, 10, 0.56);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 220ms ease, visibility 220ms ease, background 220ms ease;
    }

    #search-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(6, 12, 10, 0.72);
    }

    #search-overlay .search-overlay-inner {
        position: relative;
        width: 100%;
        max-width: none;
        margin-top: auto;
        padding: 20px 18px calc(18px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 17, 24, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -24px 60px rgba(2, 6, 23, 0.42), 0 -1px 0 rgba(255, 255, 255, 0.08) inset;
        transform: translateY(28px);
        opacity: 0.96;
        transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    }

    #search-overlay.active .search-overlay-inner {
        transform: translateY(0);
        opacity: 1;
    }

    #search-overlay .search-overlay-header {
        align-items: center;
        gap: 12px;
    }

    #search-overlay .search-overlay-eyebrow {
        margin-bottom: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.78);
    }

    #search-overlay .search-overlay-title {
        font-size: 1.8rem;
        letter-spacing: -0.03em;
    }

    #search-overlay .search-overlay-description {
        margin-top: 8px;
        font-size: 0.94rem;
        line-height: 1.55;
        color: rgba(226, 232, 240, 0.76);
    }

    #search-overlay .search-form {
        margin-top: 18px;
    }

    #search-overlay .search-input-shell {
        gap: 12px;
        min-height: 60px;
        padding: 8px 8px 8px 16px;
        border-radius: 20px;
        background: rgba(248, 250, 252, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.42);
        box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
        transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
    }

    #search-overlay .search-input-shell:focus-within {
        border-color: rgba(0, 230, 118, 0.42);
        box-shadow: 0 18px 36px rgba(2, 6, 23, 0.24), 0 0 0 4px rgba(0, 230, 118, 0.12);
        background: #ffffff;
    }

    #search-overlay .search-input-icon {
        color: rgba(15, 23, 42, 0.44);
    }

    #search-overlay .search-input {
        min-width: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 1rem;
        color: #0f172a;
    }

    #search-overlay .search-input::placeholder {
        color: rgba(15, 23, 42, 0.46);
    }

    #search-overlay .search-input:focus {
        border-color: transparent;
    }

    #search-overlay .search-submit {
        min-width: 96px;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 14px;
        background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
        box-shadow: 0 10px 22px rgba(0, 200, 83, 0.22);
        font-size: 0.95rem;
        letter-spacing: -0.01em;
    }

    #search-overlay .search-submit:active {
        transform: translateY(0);
    }

    #search-overlay .search-close {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.92);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    #search-overlay .search-close:hover,
    #search-overlay .search-close:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.16);
    }

    #search-overlay .search-results {
        margin-top: 14px;
        padding: 6px;
        max-height: min(50vh, 420px);
        border-radius: 20px;
        background: rgba(248, 250, 252, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.32);
        box-shadow: 0 18px 34px rgba(2, 6, 23, 0.16);
    }

    #search-overlay .search-discovery:not(.is-hidden) {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }

    #search-overlay .search-discovery-card {
        padding: 14px 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    #search-overlay .search-discovery-card--secondary {
        background: rgba(255, 255, 255, 0.06);
    }

    #search-overlay .search-discovery-label {
        margin-bottom: 12px;
        font-size: 0.74rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(226, 232, 240, 0.72);
    }

    #search-overlay .search-discovery-chips,
    #search-overlay .search-term-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    #search-overlay .search-suggestion-chip,
    #search-overlay .search-term-chip {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1;
        transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    #search-overlay .search-term-chip {
        cursor: pointer;
    }

    #search-overlay .search-suggestion-chip:hover,
    #search-overlay .search-suggestion-chip:focus-visible,
    #search-overlay .search-term-chip:hover,
    #search-overlay .search-term-chip:focus-visible {
        background: rgba(0, 230, 118, 0.14);
        border-color: rgba(0, 230, 118, 0.28);
        box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.26);
        outline: none;
    }

    #search-overlay .search-results[data-state="loading"],
    #search-overlay .search-results[data-state="empty"],
    #search-overlay .search-results[data-state="error"] {
        padding: 10px;
    }

    #search-overlay .search-feedback {
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
        color: #0f172a;
        animation: searchResultEnter 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    #search-overlay .search-feedback__eyebrow {
        color: rgba(15, 23, 42, 0.56);
    }

    #search-overlay .search-feedback__text {
        color: rgba(15, 23, 42, 0.72);
    }

    #search-overlay .search-feedback--error .search-feedback__eyebrow {
        color: rgba(185, 28, 28, 0.74);
    }

    #search-overlay .search-loading-list {
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }

    #search-overlay .search-loading-item {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        padding: 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.6);
    }

    #search-overlay .search-loading-thumb,
    #search-overlay .search-loading-line {
        background-image: linear-gradient(90deg, rgba(226, 232, 240, 0.72) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(226, 232, 240, 0.72) 100%);
        background-size: 200% 100%;
        animation: searchOverlayShimmer 1.2s linear infinite;
    }

    #search-overlay .search-loading-thumb {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    #search-overlay .search-loading-lines {
        display: grid;
        gap: 8px;
    }

    #search-overlay .search-loading-line {
        height: 10px;
        border-radius: 999px;
    }

    #search-overlay .search-loading-line--title {
        width: 72%;
    }

    #search-overlay .search-loading-line--meta {
        width: 42%;
    }

    #search-overlay .search-result-item {
        gap: 12px;
        padding: 12px;
        margin-bottom: 6px;
        border-bottom: none;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.42);
        animation: searchResultEnter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: var(--search-result-delay);
    }

    #search-overlay .search-result-item:last-child {
        margin-bottom: 0;
    }

    #search-overlay .search-result-item:hover {
        background: rgba(255, 255, 255, 0.88);
    }

    #search-overlay .search-result-thumb {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(226, 232, 240, 0.86) 0%, rgba(241, 245, 249, 0.98) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    #search-overlay .search-result-thumb img {
        border-radius: 18px;
    }

    #search-overlay .search-result-thumb--placeholder {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.9) 100%);
        color: rgba(255, 255, 255, 0.92);
    }

    #search-overlay .search-result-thumb__placeholder {
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    #search-overlay .search-result-info {
        min-width: 0;
    }

    #search-overlay .search-result-kicker {
        margin-bottom: 4px;
        font-size: 0.7rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, 0.48);
    }

    #search-overlay .search-result-title {
        margin-bottom: 8px;
        font-size: 0.98rem;
        line-height: 1.35;
        color: #0f172a;
    }

    #search-overlay .search-result-meta {
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }

    #search-overlay .search-result-price {
        font-size: 0.84rem;
        font-weight: 600;
        color: rgba(15, 23, 42, 0.68);
    }

}

@media (max-width: 480px) {
    #search-overlay .search-overlay-inner {
        padding: 18px 16px calc(16px + env(safe-area-inset-bottom));
        border-radius: 24px 24px 0 0;
    }

    #search-overlay .search-overlay-title {
        font-size: 1.55rem;
    }

    #search-overlay .search-overlay-description {
        font-size: 0.89rem;
    }

    #search-overlay .search-input-shell {
        min-height: 56px;
        padding-left: 14px;
    }

    #search-overlay .search-submit {
        min-width: 88px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    #search-overlay .search-discovery-card {
        padding: 13px 14px;
        border-radius: 18px;
    }

    #search-overlay .search-suggestion-chip,
    #search-overlay .search-term-chip {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.85rem;
    }

    #search-overlay .search-result-thumb {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    #search-overlay .search-result-thumb img {
        border-radius: 16px;
    }

    #search-overlay .search-result-item {
        padding: 11px;
        border-radius: 16px;
    }

    #search-overlay .search-result-title {
        font-size: 0.94rem;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {

    #search-overlay,
    #search-overlay .search-overlay-inner,
    #search-overlay .search-input-shell,
    #search-overlay .search-submit,
    #search-overlay .search-close,
    #search-overlay .search-result-item,
    #search-overlay .search-feedback,
    #search-overlay .search-loading-thumb,
    #search-overlay .search-loading-line {
        transition: none;
        animation: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    /* Full viewport height minus header */
    min-height: calc(100vh - var(--header-height, 80px));
    min-height: calc(100dvh - var(--header-height, 80px));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-section .container {
    max-width: 100%;
    padding: 0;
}

/* Account for WordPress admin bar when logged in */
.admin-bar .hero-section {
    min-height: calc(100vh - var(--header-height, 80px) - 32px);
    min-height: calc(100dvh - var(--header-height, 80px) - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .hero-section {
        min-height: calc(100vh - var(--header-height, 80px) - 46px);
        min-height: calc(100dvh - var(--header-height, 80px) - 46px);
    }
}



/* Hero Split Layout */
.hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height, 80px));
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-3xl);
    padding-left: max(var(--spacing-2xl), calc((100vw - 1200px) / 2 + var(--spacing-xl)));
    max-width: 50%;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Hero Background Image - Full Width */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Mobile Hero Background Image */
@media (max-width: 768px) {
    .hero-image-bg {
        background-image: var(--hero-bg-mobile, var(--hero-bg-desktop)) !important;
    }
}

/* ==========================================================================
   Hero Logo - Centered with Fade-in Animation
   ========================================================================== */
.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-logo {
    width: 420px;
    height: auto;
    max-width: 90vw;
    opacity: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: heroLogoFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* Fade-in animation */
@keyframes heroLogoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        animation: heroLogoFadeInReduced 0.5s ease-out 0.2s forwards;
    }

    @keyframes heroLogoFadeInReduced {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
}

/* Hero Search */
.hero-search {
    max-width: 550px;
    margin: 0 0 var(--spacing-xl);
}

.hero-search-form {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--primary-bg);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(163, 214, 0, 0.1);
    border: 1px solid var(--border-color);
}

.hero-search-wrapper {
    flex: 1;
    position: relative;
}

.hero-search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    font-size: var(--font-size-base);
    outline: none;
    background: transparent;
    color: var(--text-primary);
}

.hero-search-input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-green);
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
}

/* Hero Autocomplete Dropdown */
.hero-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-sm);
    max-height: 350px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    border: 1px solid var(--border-color);
}

.hero-autocomplete.active {
    display: block;
}

.hero-autocomplete-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: background var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
}

.hero-autocomplete-item:last-child {
    border-bottom: none;
}

.hero-autocomplete-item:hover {
    background: var(--secondary-bg);
}

.hero-autocomplete-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    background: var(--secondary-bg);
}

.hero-autocomplete-info {
    flex: 1;
    text-align: left;
}

.hero-autocomplete-title {
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
    color: var(--text-primary);
}

.hero-autocomplete-meta {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.hero-autocomplete-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: var(--font-size-sm);
}

.hero-autocomplete-loading,
.hero-autocomplete-empty {
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-cta .btn svg {
    flex-shrink: 0;
}

/* Large button variant */
.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
}

/* ==========================================================================
   Hero CTA Buttons Overlay
   ========================================================================== */
.hero-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10% 5%;
    pointer-events: none;
}

.hero-cta-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 32px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    box-shadow:
        0 8px 20px rgba(0, 230, 118, 0.25),
        0 0 30px rgba(0, 230, 118, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Animated gradient background effect */
.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 230, 118, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

/* Hover state */
.hero-cta-btn:hover {
    background: rgba(0, 230, 118, 0.95);
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 12px 30px rgba(0, 230, 118, 0.4),
        0 0 40px rgba(0, 230, 118, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Active/pressed state */
.hero-cta-btn:active {
    transform: translateY(-3px) scale(1.01);
}

/* Arrow animation */
.hero-cta-arrow {
    display: inline-block;
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-btn:hover .hero-cta-arrow {
    transform: translateX(6px);
}

/* Text styling */
.hero-cta-text {
    position: relative;
    z-index: 1;
}

/* Position specific buttons */
.hero-cta-offroad {
    /* Position below Ford (left side) */
    margin-right: auto;
}

.hero-cta-onroad {
    /* Position below Mercedes (right side) */
    margin-left: auto;
}

/* Pulsing glow effect on idle */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 8px 20px rgba(0, 230, 118, 0.25),
            0 0 30px rgba(0, 230, 118, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow:
            0 8px 20px rgba(0, 230, 118, 0.35),
            0 0 35px rgba(0, 230, 118, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.hero-cta-btn {
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-cta-btn:hover {
    animation: none;
}

@keyframes heroCtaMobileLightSweep {

    0%,
    72%,
    100% {
        transform: translateX(-185%) skewX(-22deg);
        opacity: 0;
    }

    6% {
        opacity: 0;
    }

    10% {
        opacity: 0.18;
    }

    16% {
        opacity: 0.42;
    }

    22% {
        transform: translateX(255%) skewX(-22deg);
        opacity: 0;
    }
}

@keyframes heroCtaMobileSparkle {

    0%,
    85%,
    100% {
        opacity: 0;
        transform: scale(0.55) rotate(0deg);
    }

    88% {
        opacity: 0.7;
        transform: scale(1) rotate(10deg);
    }

    90% {
        opacity: 0.32;
        transform: scale(1.18) rotate(-8deg);
    }

    93% {
        opacity: 0;
        transform: scale(0.72) rotate(14deg);
    }
}

@keyframes heroCtaDesktopGlow {

    0%,
    100% {
        border-color: rgba(0, 230, 118, 0.72);
        box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(0, 230, 118, 0.12),
            0 0 22px rgba(0, 230, 118, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 0 18px rgba(0, 230, 118, 0.06);
    }

    50% {
        border-color: rgba(0, 230, 118, 0.96);
        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.24),
            0 0 0 1px rgba(0, 230, 118, 0.2),
            0 0 32px rgba(0, 230, 118, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.24),
            inset 0 0 24px rgba(0, 230, 118, 0.1);
    }
}

@keyframes heroCtaDesktopLightSweep {

    0%,
    74%,
    100% {
        opacity: 0;
        transform: translateX(-220%) skewX(-24deg);
    }

    8% {
        opacity: 0;
    }

    14% {
        opacity: 0.18;
    }

    22% {
        opacity: 0.68;
    }

    30% {
        opacity: 0.1;
        transform: translateX(240%) skewX(-24deg);
    }
}

@keyframes heroCtaDesktopSparkle {

    0%,
    84%,
    100% {
        opacity: 0;
        transform: scale(0.58);
    }

    87% {
        opacity: 0.12;
        transform: scale(0.72);
    }

    90% {
        opacity: 0.52;
        transform: scale(1);
    }

    93% {
        opacity: 0.14;
        transform: scale(0.82);
    }
}

@media (min-width: 769px) {

    .front-page .hero-cta-btn {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 42%, rgba(0, 0, 0, 0.1) 100%),
            linear-gradient(180deg, rgba(16, 20, 17, 0.9) 0%, rgba(5, 8, 6, 0.82) 100%);
        backdrop-filter: blur(14px) saturate(145%);
        -webkit-backdrop-filter: blur(14px) saturate(145%);
        border-color: rgba(0, 230, 118, 0.72);
        box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(0, 230, 118, 0.12),
            0 0 22px rgba(0, 230, 118, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 0 18px rgba(0, 230, 118, 0.06);
        animation: heroCtaDesktopGlow 6.8s ease-in-out infinite;
        transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, filter 0.35s ease;
    }

    .front-page .hero-cta-btn::before {
        content: '';
        position: absolute;
        top: -36%;
        left: 0;
        width: 40%;
        height: 172%;
        background: linear-gradient(115deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.08) 34%,
                rgba(225, 255, 234, 0.64) 50%,
                rgba(255, 255, 255, 0.14) 64%,
                rgba(255, 255, 255, 0) 100%);
        opacity: 0;
        transform: translateX(-220%) skewX(-24deg);
        pointer-events: none;
        z-index: 0;
        mix-blend-mode: screen;
        animation: heroCtaDesktopLightSweep 11.5s ease-in-out infinite;
        transition: none;
    }

    .front-page .hero-cta-btn::after {
        content: '';
        position: absolute;
        top: 10px;
        right: 18px;
        width: 20px;
        height: 20px;
        border-radius: 999px;
        background: radial-gradient(circle,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(224, 255, 236, 0.74) 28%,
                rgba(255, 255, 255, 0.16) 56%,
                rgba(255, 255, 255, 0) 74%);
        box-shadow: 0 0 14px rgba(210, 255, 228, 0.28);
        opacity: 0;
        transform: scale(0.58);
        pointer-events: none;
        z-index: 0;
        animation: heroCtaDesktopSparkle 17s ease-in-out infinite;
    }

    .front-page .hero-cta-text {
        z-index: 2;
    }

    .front-page .hero-cta-offroad::before {
        animation-delay: 1.2s;
    }

    .front-page .hero-cta-onroad::before {
        animation-delay: 6.1s;
    }

    .front-page .hero-cta-offroad::after {
        top: 10px;
        right: 16px;
        animation-delay: 2.8s;
    }

    .front-page .hero-cta-onroad::after {
        top: 11px;
        left: 18px;
        right: auto;
        animation-delay: 9.4s;
    }

    .front-page .hero-cta-btn:hover,
    .front-page .hero-cta-btn:focus-visible {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.08) 100%),
            linear-gradient(180deg, rgba(20, 26, 21, 0.94) 0%, rgba(6, 9, 7, 0.88) 100%);
        border-color: var(--primary-green);
        color: #ffffff;
        transform: none;
        filter: brightness(1.03);
        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.24),
            0 0 0 1px rgba(0, 230, 118, 0.22),
            0 0 34px rgba(0, 230, 118, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.26),
            inset 0 0 28px rgba(0, 230, 118, 0.12);
        animation: none;
    }

    .front-page .hero-cta-btn:hover::before,
    .front-page .hero-cta-btn:focus-visible::before {
        left: 0;
        opacity: 0.82;
        animation-duration: 3.4s;
    }

    .front-page .hero-cta-btn:hover::after,
    .front-page .hero-cta-btn:focus-visible::after {
        opacity: 0.38;
    }

    .front-page .hero-cta-btn:active {
        transform: none;
        filter: none;
        border-color: var(--primary-green);
        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(0, 230, 118, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 0 18px rgba(0, 230, 118, 0.09);
    }
}

@media (prefers-reduced-motion: reduce) and (min-width: 769px) {

    .front-page .hero-cta-btn {
        animation: none;
    }

    .front-page .hero-cta-btn::before,
    .front-page .hero-cta-btn::after {
        animation: none;
        opacity: 0;
    }
}

/* ==========================================================================
   Hero Scroll Indicator
   ========================================================================== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    opacity: 0;
    animation: heroChevronFadeIn 1.2s ease-out 2s forwards;
    pointer-events: none;
}

.hero-scroll-indicator a {
    display: block;
    color: #000000;
    pointer-events: auto;
    animation: heroChevronBounce 2s ease-in-out infinite;
    transition: color var(--transition-base);
}

.hero-scroll-indicator a:hover {
    color: var(--primary-green);
}

.hero-scroll-indicator svg {
    width: 32px;
    height: 32px;
    display: block;
    animation: heroChevronPulse 3s ease-in-out 3s infinite;
}

@keyframes heroChevronFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes heroChevronBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes heroChevronPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-action {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Categories Section */
.categories-section {
    padding: var(--spacing-3xl) 0;
}

.categories-section-header {
    margin-bottom: var(--spacing-2xl);
}

.categories-section-header .section-title {
    margin-bottom: 0;
}

.categories-section-kicker,
.categories-section-intro {
    display: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.category-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    min-height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    isolation: isolate;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.12) 12%,
            rgba(0, 0, 0, 0.48) 62%,
            rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.22);
    border-color: rgba(163, 214, 0, 0.5);
}

.category-card:hover .category-image {
    transform: scale(1.04);
}

.category-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--secondary-bg);
    transition: transform 260ms ease;
    z-index: 0;
}

.category-info {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: min(92%, 560px);
    margin: 0 var(--spacing-md) var(--spacing-md);
    padding: var(--spacing-lg);
    color: #ffffff;
    display: grid;
    gap: 10px;
    background: rgba(14, 22, 18, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.category-count-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 7px 12px;
    line-height: 1;
    backdrop-filter: blur(4px);
}

.category-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    background: rgba(0, 0, 0, 0.22);
    margin-bottom: 2px;
}

.category-name {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.category-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 42ch;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.category-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.category-cta span {
    transition: transform 220ms ease;
}

.category-card:hover .category-cta span {
    transform: translateX(3px);
}

/* Responsive adjustments for categories */
@media (min-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: calc(var(--spacing-2xl) + 4px) 0 calc(var(--spacing-2xl) + 2px);
        background: linear-gradient(180deg, #ffffff 0%, #f7faf8 48%, #ffffff 100%);
        overflow: hidden;
    }

    .categories-section-header {
        margin-bottom: var(--spacing-lg);
    }

    .categories-section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0 0 0.55rem;
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary-green-dark);
    }

    .categories-section-kicker::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.14);
        flex-shrink: 0;
    }

    .categories-section .section-title {
        text-align: left;
        margin-bottom: 0;
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        letter-spacing: -0.04em;
        line-height: 0.98;
    }

    .categories-section-intro {
        display: block;
        max-width: 34ch;
        margin: 0.7rem 0 0;
        color: var(--text-muted);
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .categories-grid {
        gap: 14px;
    }

    .category-card {
        min-height: 292px;
        border-radius: 22px;
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
        background: #0f172a;
    }

    .category-card::before {
        background: linear-gradient(180deg,
                rgba(6, 10, 16, 0.08) 10%,
                rgba(6, 10, 16, 0.38) 48%,
                rgba(6, 10, 16, 0.82) 100%);
    }

    .category-card:active {
        transform: scale(0.992);
    }

    .category-info {
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 10px 10px;
        padding: 0.95rem 0.95rem 0.9rem;
        gap: 0.5rem;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(9, 15, 12, 0.18) 0%, rgba(9, 15, 12, 0.56) 100%);
        border-color: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    }

    .category-count-badge {
        top: 12px;
        left: 12px;
        right: auto;
        font-size: 0.7rem;
        padding: 0.48rem 0.72rem;
        color: #ffffff;
        background: rgba(8, 15, 12, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 10px 20px rgba(2, 6, 23, 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .category-card--featured {
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 230, 118, 0.12);
    }

    .category-card--featured .category-info {
        background: linear-gradient(180deg, rgba(8, 18, 12, 0.16) 0%, rgba(8, 18, 12, 0.62) 100%);
        border-color: rgba(176, 255, 214, 0.24);
    }

    .category-card--featured .category-count-badge {
        color: #06210f;
        background: linear-gradient(180deg, rgba(0, 230, 118, 0.96) 0%, rgba(124, 255, 182, 0.92) 100%);
        border-color: transparent;
        box-shadow: 0 12px 22px rgba(0, 200, 83, 0.22);
    }

    .category-name {
        font-size: clamp(1.45rem, 6.4vw, 1.95rem);
        letter-spacing: -0.03em;
    }

    .category-desc {
        max-width: 30ch;
        font-size: 0.9rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.84);
    }

    .category-cta {
        width: fit-content;
        margin-top: 0.15rem;
        padding-top: 0.7rem;
        gap: 0.45rem;
        font-size: 0.76rem;
        letter-spacing: 0.12em;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
}

/* Brands Section */
.brands-section {
    padding: var(--spacing-3xl) 0;
    background: var(--card-bg);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.brand-card {
    flex: 0 1 200px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: var(--primary-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism hover effect */
.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 230, 118, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 255, 248, 1) 100%);
    border-color: rgba(0, 230, 118, 0.3);
}

.brand-card:hover::before {
    opacity: 1;
}

/* Subtle glow effect on hover */
.brand-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(0, 230, 118, 0.1) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-card:hover::after {
    opacity: 1;
}

.brand-card:focus-visible {
    outline: none;
    border-color: rgba(0, 230, 118, 0.35);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.12);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: grayscale(0);
}

.brand-card--with-logo .brand-name {
    display: none;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

.brand-name {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-name {
    color: var(--primary-green-dark);
}

/* ==========================================================================
   Partnership Section
   ========================================================================== */
.partnership-section {
    padding: var(--spacing-3xl) 0;
    background:
        radial-gradient(circle at top right, rgba(0, 230, 118, 0.06) 0%, rgba(0, 230, 118, 0) 32%),
        linear-gradient(135deg, #f8f9fa 0%, #f0f4f3 100%);
    position: relative;
    overflow: hidden;
}

.partnership-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 250, 0.98) 100%);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.08),
        0 10px 24px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.partnership-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: clamp(1.75rem, 3vw, 2.5rem);
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.92) 0%, rgba(0, 230, 118, 0.18) 100%);
}

.partnership-wrapper::after {
    content: '';
    position: absolute;
    top: -18%;
    left: -8%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(0, 230, 118, 0.02) 40%, rgba(0, 230, 118, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.partnership-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Visual Column */
.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.partnership-image {
    max-width: 100%;
    height: auto;
    width: 350px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.partnership-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

/* Content Column */
.partnership-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.partnership-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md);
    line-height: 1.2;
    max-width: none;
    letter-spacing: -0.02em;
}

@media (min-width: 769px) {
    .partnership-title {
        font-size: clamp(2rem, 3.1vw, 2.65rem);
        line-height: 1.08;
        margin: 0 0 18px;
        letter-spacing: -0.03em;
    }
}

.partnership-subtitle {
    font-size: 1.125rem;
    color: #475467;
    margin: 0;
    line-height: 1.6;
    max-width: 62ch;
}

/* Benefits List */
.partnership-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.partnership-benefit {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 248, 0.98) 100%);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green-dark);
    flex-shrink: 0;
    margin-top: 2px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(0, 230, 118, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 230, 118, 0.18);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-content strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.benefit-content span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Partnership CTA */
.partnership-cta {
    margin-top: var(--spacing-sm);
}

.btn-partnership {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 16px 32px rgba(0, 200, 83, 0.18);
}

/* Company Info Section */
.company-info-section {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.company-info-card {
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary-green);
    border-radius: var(--border-radius-lg);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.06);
}

.company-info-kicker {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-green-dark);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.company-info-title {
    margin: 0 0 var(--spacing-md);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
}

.company-info-intro {
    margin: 0 0 var(--spacing-xl);
    color: var(--text-secondary);
    max-width: 72ch;
}

.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.company-info-block h3 {
    margin: 0 0 var(--spacing-sm);
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

.company-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--spacing-xs);
}

.company-info-list li {
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-info-list a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.company-info-list a:hover {
    color: var(--primary-green-dark);
}

.company-trust-strip {
    margin-top: var(--spacing-xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.company-trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 230, 118, 0.22);
    background: rgba(0, 230, 118, 0.08);
    color: var(--primary-green-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.3;
}

.company-trust-pill__icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .company-info-section {
        padding: clamp(4.75rem, 7vw, 6.5rem) 0;
        background:
            radial-gradient(circle at top left, rgba(0, 230, 118, 0.07) 0%, rgba(0, 230, 118, 0) 34%),
            linear-gradient(180deg, #f6faf7 0%, #ffffff 42%, #f5f8f6 100%);
    }

    .company-info-card {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        padding: clamp(2rem, 4vw, 3.25rem);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 250, 0.98) 100%);
        box-shadow:
            0 28px 60px rgba(15, 23, 42, 0.08),
            0 10px 24px rgba(15, 23, 42, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .company-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: clamp(2rem, 4vw, 3.25rem);
        width: 120px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 230, 118, 0.92) 0%, rgba(0, 230, 118, 0.18) 100%);
    }

    .company-info-card::after {
        content: '';
        position: absolute;
        top: -22%;
        right: -10%;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, rgba(0, 230, 118, 0.03) 38%, rgba(0, 230, 118, 0) 72%);
        pointer-events: none;
        z-index: 0;
    }

    .company-info-card > * {
        position: relative;
        z-index: 1;
    }

    .company-info-kicker {
        display: inline-flex;
        align-items: center;
        padding: 8px 14px;
        margin-bottom: 16px;
        border-radius: 999px;
        border: 1px solid rgba(0, 230, 118, 0.18);
        background: rgba(0, 230, 118, 0.08);
        color: var(--primary-green-dark);
        letter-spacing: 0.08em;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .company-info-title {
        max-width: 22ch;
        margin: 0 0 18px;
        font-size: clamp(2rem, 3.1vw, 2.65rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .company-info-intro {
        max-width: 68ch;
        margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
        font-size: 1.02rem;
        line-height: 1.8;
        color: #475467;
    }

    .company-info-grid {
        gap: clamp(1rem, 2vw, 1.5rem);
        align-items: stretch;
    }

    .company-info-block {
        position: relative;
        min-height: 100%;
        padding: clamp(1.35rem, 2.3vw, 1.75rem);
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 248, 0.98) 100%);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .company-info-block h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #0f172a;
    }

    .company-info-block h3::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(0, 230, 118, 0.92);
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.12);
        flex-shrink: 0;
    }

    .company-info-list {
        gap: 10px;
    }

    .company-info-list li {
        font-size: 0.97rem;
        line-height: 1.7;
        color: #475467;
    }

    .company-info-list strong {
        color: #0f172a;
    }

    .company-info-list a {
        color: #0f172a;
        text-decoration-color: rgba(0, 230, 118, 0.42);
        text-decoration-thickness: 1.5px;
        text-underline-offset: 4px;
    }

    .company-info-list a:hover {
        color: var(--primary-green-dark);
        text-decoration-color: rgba(0, 230, 118, 0.72);
    }

    .company-trust-strip {
        margin-top: clamp(1.5rem, 3vw, 2.25rem);
        padding-top: clamp(1.25rem, 2.4vw, 1.75rem);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 12px;
    }

    .company-trust-pill {
        min-width: 0;
        min-height: 56px;
        justify-content: center;
        text-align: center;
        padding: 14px 16px;
        border-radius: 18px;
        border-color: rgba(0, 230, 118, 0.14);
        background: linear-gradient(180deg, rgba(248, 255, 251, 0.98) 0%, rgba(243, 249, 246, 0.98) 100%);
        color: var(--primary-green-dark);
        font-size: 0.86rem;
        line-height: 1.4;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(15, 23, 42, 0.04);
    }

    .company-trust-pill__icon {
        width: 16px;
        height: 16px;
    }
}

/* Responsive Design - Tablet */
@media screen and (max-width: 968px) {
    .partnership-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .partnership-visual {
        order: -1;
    }

    .partnership-image {
        width: 300px;
    }

    .partnership-content {
        gap: var(--spacing-md);
    }

    .partnership-title {
        font-size: clamp(2rem, 3.1vw, 2.65rem);
        text-align: center;
        line-height: 1.08;
        max-width: none;
        margin: 0 0 18px;
        letter-spacing: -0.03em;
    }

    .partnership-subtitle {
        text-align: center;
        font-size: 1.0625rem;
        max-width: none;
    }

    .partnership-benefits {
        gap: var(--spacing-sm);
    }

    .partnership-cta {
        text-align: center;
        margin-top: var(--spacing-md);
    }

    .btn-partnership {
        min-width: 240px;
        padding: 15px 36px;
        font-size: 1.0625rem;
    }
}

/* Mobile Landscape and Small Tablets (≤768px) */
@media screen and (max-width: 768px) {
    .partnership-section {
        padding: var(--spacing-2xl) 0;
    }

    .partnership-wrapper {
        gap: var(--spacing-xl);
    }

    .partnership-image {
        width: 260px;
        border-radius: 10px;
    }

    .partnership-content {
        gap: var(--spacing-md);
    }

    .partnership-title {
        font-size: 1.625rem;
        margin-bottom: var(--spacing-xs);
    }

    .partnership-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        padding: 0 var(--spacing-sm);
    }

    .partnership-benefits {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
    }

    .partnership-benefit {
        gap: var(--spacing-sm);
    }

    .benefit-icon {
        width: 22px;
        height: 22px;
        margin-top: 3px;
    }

    .benefit-content strong {
        font-size: 0.9375rem;
        line-height: 1.4;
    }

    .benefit-content span {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .btn-partnership {
        width: 100%;
        max-width: 320px;
        padding: 14px 32px;
        font-size: 1rem;
        min-height: 48px;
        /* Touch-friendly height */
    }
}

/* Mobile Portrait (≤640px) */
@media screen and (max-width: 640px) {
    .partnership-section {
        padding: var(--spacing-xl) 0;
        background: linear-gradient(180deg, #f7faf8 0%, #eef4f1 100%);
    }

    .partnership-wrapper {
        position: relative;
        gap: var(--spacing-lg);
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 249, 0.94) 100%);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .partnership-wrapper::before {
        left: 18px;
        width: 72px;
    }

    .partnership-wrapper::after {
        width: 220px;
        height: 220px;
        top: -16%;
        left: -16%;
    }

    .partnership-visual::before {
        content: '';
        position: absolute;
        inset: 50% auto auto 50%;
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, rgba(0, 230, 118, 0) 72%);
        pointer-events: none;
        filter: blur(10px);
        opacity: 0.95;
    }

    .partnership-image {
        width: 220px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    }

    .partnership-content {
        gap: 12px;
        padding: 2px;
    }

    .partnership-title {
        font-size: clamp(1.375rem, 5.5vw, 1.75rem);
        line-height: 1.15;
        margin-bottom: 12px;
        text-align: left;
        letter-spacing: -0.02em;
    }

    .partnership-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0;
        text-align: left;
        color: #44515f;
    }

    .partnership-benefits {
        gap: 10px;
        padding: 0;
        margin-top: 6px;
    }

    .partnership-benefit {
        gap: 12px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
        margin-top: 1px;
        padding: 6px;
        border-radius: 999px;
        background: rgba(0, 230, 118, 0.14);
        box-shadow: inset 0 0 0 1px rgba(0, 230, 118, 0.18);
    }

    .benefit-content {
        gap: 2px;
    }

    .benefit-content strong {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .benefit-content span {
        font-size: 0.8125rem;
        line-height: 1.5;
        color: var(--text-muted);
    }

    .partnership-cta {
        margin-top: var(--spacing-sm);
        text-align: left;
    }

    .btn.btn-primary.btn-partnership {
        width: 100%;
        max-width: 100%;
        padding: 13px 28px;
        font-size: 0.9375rem;
        min-height: 50px;
        font-weight: 700;
        border-radius: 16px;
        box-shadow: 0 14px 30px rgba(0, 200, 83, 0.18);
    }
}

/* Extra Small Mobile (≤480px) */
@media screen and (max-width: 480px) {
    .partnership-section {
        padding: var(--spacing-lg) 0;
    }

    .partnership-wrapper {
        gap: var(--spacing-md);
        padding: 16px;
        border-radius: 22px;
    }

    .partnership-wrapper::before {
        left: 16px;
        width: 64px;
    }

    .partnership-image {
        width: 180px;
    }

    .partnership-title {
        margin-bottom: 10px;
    }

    .partnership-subtitle {
        font-size: 0.875rem;
    }

    .benefit-content strong {
        font-size: 0.8125rem;
    }

    .benefit-content span {
        font-size: 0.75rem;
    }

    .partnership-benefit {
        padding: 11px 12px;
        border-radius: 14px;
    }
}

/* Featured Section */
.featured-section {
    padding: var(--spacing-3xl) 0;
    background: var(--card-bg);
    overflow: hidden;
}

.featured-section-heading {
    max-width: 38rem;
}

.featured-section-kicker,
.featured-section-intro,
.featured-section-mobile-hint {
    display: none;
}

.featured-section--latest {
	position: relative;
	background: linear-gradient(180deg, #f4f8f5 0%, #edf4ef 44%, #ffffff 100%);
	isolation: isolate;
}

.featured-section--latest::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 14% 18%, rgba(0, 200, 83, 0.12) 0, rgba(0, 200, 83, 0) 28%),
		radial-gradient(circle at 86% 22%, rgba(124, 255, 182, 0.12) 0, rgba(124, 255, 182, 0) 26%);
	pointer-events: none;
	z-index: 0;
}

.featured-section--latest .container {
	position: relative;
	z-index: 1;
}

.featured-section--latest .featured-section-heading {
	max-width: 46rem;
}

@media (min-width: 769px) {
	.featured-section--latest {
		padding: calc(var(--spacing-3xl) + 12px) 0;
	}

	.featured-section--latest .featured-section-header {
		align-items: flex-end;
		gap: clamp(1rem, 2vw, 1.75rem);
		margin-bottom: clamp(1.5rem, 2.3vw, 2.2rem);
	}

	.featured-section--latest .featured-section-kicker {
		display: inline-flex;
		align-items: center;
		gap: 0.55rem;
		margin: 0 0 0.7rem;
		font-size: 0.78rem;
		font-weight: 700;
		line-height: 1.1;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--primary-green-dark);
	}

	.featured-section--latest .featured-section-kicker::before {
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 999px;
		background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
		box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.12);
	}

	.featured-section--latest .section-title {
			text-align: left;
		margin-bottom: 0;
		font-size: clamp(2rem, 2.9vw, 2.8rem);
		letter-spacing: -0.03em;
	}

	.featured-section--latest .featured-section-intro {
		display: block;
		max-width: 52ch;
		margin: 0.85rem 0 0;
		font-size: 1.02rem;
		line-height: 1.68;
		color: rgba(15, 23, 42, 0.72);
	}

	.featured-section--latest .carousel-nav {
		flex-shrink: 0;
		padding: 0.42rem;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.78);
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}

	.featured-section--latest .carousel-btn {
		width: 52px;
		height: 52px;
		background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
		border-color: rgba(15, 23, 42, 0.08);
		box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
	}

	.featured-section--latest .carousel-btn:hover:not(:disabled) {
		background: linear-gradient(180deg, #dff9e9 0%, #baf2d1 100%);
		border-color: rgba(0, 200, 83, 0.24);
		transform: translateY(-1px);
		color: var(--text-primary);
	}

	.featured-section--latest .products-carousel-wrapper {
		position: relative;
		margin: 0;
		padding: clamp(1.15rem, 2vw, 1.5rem);
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 32px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 250, 248, 0.96) 100%);
		box-shadow: 0 28px 72px rgba(15, 23, 42, 0.08);
	}

	.featured-section--latest .products-carousel-wrapper::before {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: inherit;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 38%);
		pointer-events: none;
	}

	.featured-section--latest .products-carousel {
		gap: clamp(1rem, 1.7vw, 1.4rem);
		padding: 0.35rem;
		margin: 0;
		scroll-padding-left: clamp(1.15rem, 2vw, 1.5rem);
	}

	.featured-section--latest .carousel-item {
		min-width: 272px;
	}

	.featured-section--latest .carousel-item>.product {
		position: relative;
		display: flex;
		flex-direction: column;
		height: 100%;
		overflow: hidden;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 24px;
		background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
	}

	.featured-section--latest .carousel-item>.product::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, var(--primary-green-dark) 0%, var(--primary-green) 55%, rgba(124, 255, 182, 0.95) 100%);
		opacity: 0.94;
		pointer-events: none;
		z-index: 2;
	}

	.featured-section--latest .carousel-item>.product:hover {
		transform: translateY(-8px);
		border-color: rgba(0, 200, 83, 0.26);
		box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
	}

	.featured-section--latest .carousel-item>.product>a.woocommerce-LoopProduct-link,
	.featured-section--latest .carousel-item>.product>a.woocommerce-loop-product__link {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		min-height: 0;
		color: inherit;
		text-decoration: none;
	}

	.featured-section--latest .carousel-item>.product .woocommerce-LoopProduct-link,
	.featured-section--latest .carousel-item>.product .woocommerce-loop-product__link {
		background: linear-gradient(180deg, #eef4f1 0%, #f8fbf9 100%);
	}

	.featured-section--latest .carousel-item>.product .woocommerce-LoopProduct-link img,
	.featured-section--latest .carousel-item>.product .woocommerce-loop-product__link img,
	.featured-section--latest .carousel-item>.product img {
		width: 100%;
		height: 230px;
		object-fit: cover;
		background: #eef4f1;
		transition: transform 320ms ease, filter 320ms ease;
	}

	.featured-section--latest .carousel-item>.product:hover .woocommerce-LoopProduct-link img,
	.featured-section--latest .carousel-item>.product:hover .woocommerce-loop-product__link img,
	.featured-section--latest .carousel-item>.product:hover img {
		transform: scale(1.04);
		filter: saturate(1.03);
	}

	.featured-section--latest .carousel-item>.product .product-brand {
		display: flex;
		align-items: center;
		gap: 0.48rem;
		padding: 1rem 1.1rem 0;
		font-size: 0.68rem;
		font-weight: 700;
		line-height: 1.15;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: rgba(15, 23, 42, 0.58);
	}

	.featured-section--latest .carousel-item>.product .product-brand::before {
		content: '';
		width: 6px;
		height: 6px;
		border-radius: 999px;
		background: var(--primary-green);
		box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.12);
		flex: 0 0 auto;
	}

	.featured-section--latest .carousel-item>.product .product-brand a {
		color: var(--primary-green-dark);
	}

.featured-section--latest .carousel-item>.product .woocommerce-loop-product__title,
.featured-section--latest .carousel-item>.product h2.woocommerce-loop-product__title {
	padding: 0.5rem 1.1rem 0 !important;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 4.35em;
	font-size: 1.02rem !important;
	font-weight: 650 !important;
	line-height: 1.45 !important;
	letter-spacing: -0.015em;
	color: var(--text-primary) !important;
	overflow-wrap: anywhere;
}

	.featured-section--latest .carousel-item>.product .price {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0.3rem 0.5rem;
		margin-top: auto;
		padding: 0.75rem 1.1rem 1rem;
		border-top: 1px solid rgba(15, 23, 42, 0.06);
		font-size: 1.1rem;
		font-weight: 700;
		color: var(--text-primary);
	}

	.featured-section--latest .carousel-item>.product .price del {
		color: rgba(15, 23, 42, 0.42);
		font-size: 0.82rem;
		font-weight: 500;
	}

	.featured-section--latest .carousel-item>.product .price ins {
		color: var(--primary-green-dark);
		text-decoration: none;
	}

	.featured-section--latest .carousel-item>.product .button,
	.featured-section--latest .carousel-item>.product .cb-add-to-cart-btn,
	.featured-section--latest .carousel-item>.product .add_to_cart_button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(100% - 2.2rem);
		margin: 0 1.1rem 1.1rem;
		min-height: 48px;
		padding: 0.9rem 1rem;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 16px;
		background: #111827;
		box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
		color: #ffffff;
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.featured-section--latest .carousel-item>.product .button:hover,
	.featured-section--latest .carousel-item>.product .cb-add-to-cart-btn:hover,
	.featured-section--latest .carousel-item>.product .add_to_cart_button:hover {
		background: linear-gradient(180deg, var(--primary-green) 0%, #61f29a 100%);
		border-color: rgba(0, 200, 83, 0.24);
		color: var(--text-primary);
	}

	.featured-section--latest .carousel-item>.product .added_to_cart {
		padding: 0 1.1rem 1.1rem;
	}

	.featured-section--latest .section-action {
		margin-top: 1.5rem;
	}

	.featured-section--latest .section-action .btn {
		min-width: 230px;
		border-radius: 999px;
		box-shadow: 0 18px 36px rgba(0, 200, 83, 0.18);
	}
}

/* Section Header with Carousel Nav */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.section-header .section-title {
    margin-bottom: 0;
}

.carousel-nav {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    margin: 0 -var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.products-carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) 0;
    margin: calc(-1 * var(--spacing-sm)) 0;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 calc(25% - var(--spacing-lg) * 3 / 4);
    min-width: 260px;
}

.carousel-item .product {
    margin: 0;
    height: 100%;
}

/* Carousel responsive */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - var(--spacing-lg) * 2 / 3);
    }
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }
}

@media (max-width: 576px) {
    .carousel-item {
        flex: 0 0 85%;
        min-width: 240px;
    }

    .carousel-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: calc(var(--spacing-2xl) + 6px) 0 calc(var(--spacing-2xl) + 4px);
        background: linear-gradient(180deg, #f7faf8 0%, #eef4f1 48%, #ffffff 100%);
    }

    .featured-section .section-header {
        align-items: flex-start;
        margin-bottom: 0.95rem;
    }

    .featured-section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0 0 0.55rem;
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary-green-dark);
    }

    .featured-section-kicker::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.12);
    }

    .featured-section .section-title {
        text-align: left;
        margin-bottom: 0;
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        letter-spacing: -0.02em;
    }

    .featured-section-intro {
        display: block;
        max-width: 34ch;
        margin: 0.65rem 0 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(15, 23, 42, 0.72);
    }

    .featured-section .carousel-nav {
        display: none;
    }

    .featured-section-mobile-hint {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin: 0 0 0.9rem;
        padding: 0.5rem 0.92rem;
        border: 1px solid rgba(0, 200, 83, 0.14);
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 249, 246, 0.96) 100%);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        color: #214d35;
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .featured-section-mobile-hint::before,
    .featured-section-mobile-hint::after {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.35rem;
        height: 1.35rem;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(228, 248, 236, 0.95) 0%, rgba(203, 242, 217, 0.95) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 6px 12px rgba(0, 200, 83, 0.12);
        color: var(--primary-green-dark);
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1;
        flex: 0 0 auto;
    }

    .featured-section-mobile-hint::before {
        content: '←';
    }

    .featured-section-mobile-hint::after {
        content: '→';
    }

    .featured-section .products-carousel-wrapper {
        margin: 0 calc(-1 * var(--container-padding));
        padding: 0 var(--container-padding);
    }

    .featured-section .products-carousel {
        gap: 0.95rem;
        padding: 0.35rem 0 0.95rem;
        margin: 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: var(--container-padding);
        -webkit-overflow-scrolling: touch;
    }

    .featured-section .carousel-item {
        display: flex;
        flex: 0 0 82%;
        min-width: 280px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .featured-section .carousel-item>.product {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin: 0;
        list-style: none;
        overflow: hidden;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfcfb 100%);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    }

    .featured-section .carousel-item>.product::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-green-dark) 0%, var(--primary-green) 50%, rgba(124, 255, 182, 0.9) 100%);
        opacity: 0.92;
        z-index: 2;
        pointer-events: none;
    }

    .featured-section .carousel-item>.product>a.woocommerce-LoopProduct-link,
    .featured-section .carousel-item>.product>a.woocommerce-loop-product__link {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        min-height: 0;
        color: inherit;
        text-decoration: none;
    }

    .featured-section .carousel-item>.product .woocommerce-LoopProduct-link,
    .featured-section .carousel-item>.product .woocommerce-loop-product__link {
        background: linear-gradient(180deg, #eef4f1 0%, #f7faf8 100%);
    }

    .featured-section .carousel-item>.product .woocommerce-LoopProduct-link img,
    .featured-section .carousel-item>.product .woocommerce-loop-product__link img,
    .featured-section .carousel-item>.product img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background: #f4f7f5;
    }

    .featured-section .carousel-item>.product .product-brand {
        padding: 0.95rem 1rem 0;
        font-size: 0.68rem;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, 0.56);
    }

    .featured-section .carousel-item>.product .product-brand a {
        color: var(--primary-green-dark);
    }

.featured-section .carousel-item>.product .woocommerce-loop-product__title,
.featured-section .carousel-item>.product h2.woocommerce-loop-product__title {
    padding: 0.45rem 1rem 0 !important;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.35em;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    color: var(--text-primary) !important;
    overflow-wrap: anywhere;
}

    .featured-section .carousel-item>.product .price {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.3rem 0.5rem;
        margin-top: auto;
        padding: 0.6rem 1rem 1rem;
        font-size: 1.08rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    .featured-section .carousel-item>.product .price del {
        color: rgba(15, 23, 42, 0.42);
        font-size: 0.82rem;
        font-weight: 500;
    }

    .featured-section .carousel-item>.product .price ins {
        color: var(--primary-green-dark);
        text-decoration: none;
    }

    .featured-section .carousel-item>.product .button,
    .featured-section .carousel-item>.product .cb-add-to-cart-btn,
    .featured-section .carousel-item>.product .add_to_cart_button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 2rem);
        margin: 0 1rem 1rem;
        min-height: 46px;
        padding: 0.85rem 1rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 14px;
        background: #111827;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        color: #ffffff;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .featured-section .carousel-item>.product .added_to_cart {
        display: none !important;
    }

    .featured-section .section-action {
        margin-top: 1.15rem;
    }

    .featured-section .section-action .btn {
        width: 100%;
        min-height: 50px;
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(0, 200, 83, 0.18);
    }
}

@media (max-width: 576px) {
    .featured-section .carousel-item {
        flex-basis: 84%;
        min-width: 250px;
    }

    .featured-section .carousel-item>.product .woocommerce-LoopProduct-link img,
    .featured-section .carousel-item>.product .woocommerce-loop-product__link img,
    .featured-section .carousel-item>.product img {
        height: 210px;
    }
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */
.our-story-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.our-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Image Column */
.our-story-image {
    position: relative;
}

.our-story-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.our-story-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.our-story-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.our-story-image:hover .our-story-image-wrapper img {
    transform: scale(1.03);
}

.our-story-founder-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-bg);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border-color);
}

.founder-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.founder-title {
    font-size: var(--font-size-xs);
    color: var(--primary-green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Content Column */
.our-story-content {
    padding: var(--spacing-lg) 0;
}

.our-story-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: 40px;
}

.our-story-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

.our-story-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

.our-story-text {
    margin-bottom: var(--spacing-xl);
}

/* Staggered paragraph animations */
.story-paragraph {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    animation: staggerFadeIn 0.6s ease forwards;
    animation-delay: calc(var(--delay) * 0.15s + 0.2s);
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CB Automobile Link Styling */
.cb-automobile-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cb-automobile-link:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.cb-automobile-link strong {
    font-weight: 700;
}

/* Quote with bounce animation */
.our-story-quote {
    position: relative;
    padding: var(--spacing-lg) var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08) 0%, rgba(0, 200, 83, 0.04) 100%);
    border-left: 4px solid var(--primary-green);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    opacity: 0;
    transform: translateY(30px);
    animation: bounceSlideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes bounceSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    60% {
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Large decorative quote mark */
.our-story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
}

.our-story-quote>p {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-lg) 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Quote footer with avatar and signature */
.quote-footer {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quote-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-signature {
    font-family: 'Brush Script MT', 'Segoe Script', 'Bradley Hand', cursive;
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.quote-role {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons Container */
.our-story-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: staggerFadeIn 0.6s ease forwards;
    animation-delay: 0.8s;
}

/* Base CTA Button styles */
.our-story-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.our-story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.our-story-cta:hover::before {
    left: 100%;
}

.our-story-cta svg {
    transition: transform 0.3s ease;
}

/* Primary CTA - Shop Our Parts */
.our-story-cta-primary {
    background: var(--primary-green);
    color: #000;
}

.our-story-cta-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    color: #000;
}

/* Secondary CTA - Visit CB Automobile */
.our-story-cta-secondary {
    background: var(--text-primary);
    color: var(--primary-bg);
    border: 2px solid var(--text-primary);
}

.our-story-cta-secondary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateX(5px);
}

.our-story-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .our-story-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .our-story-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .our-story-image {
        max-width: 400px;
        margin: 0 auto var(--spacing-lg);
    }

    .our-story-image-wrapper::before {
        display: none;
    }

    .our-story-content {
        text-align: center;
        padding: 0;
    }

    .our-story-label {
        padding-left: 0;
    }

    .our-story-label::before {
        display: none;
    }

    .our-story-quote {
        text-align: left;
    }

    .quote-footer {
        justify-content: flex-start;
    }

    .our-story-ctas {
        justify-content: center;
    }

    .our-story-cta {
        flex: 1;
        justify-content: center;
        min-width: 200px;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold, 600);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-primary);
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

/* Shimmer/shine effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-bg);
    border-color: var(--primary-green);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.35);
}

/* Icon animation on hover */
.btn-primary:hover svg {
    transform: translateX(3px);
    color: var(--primary-green-dark);
}

/* Active/pressed state */
.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.25);
    background: var(--primary-bg);
}

.btn-outline {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover svg {
    transform: translateX(3px);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Products Grid
   ========================================================================== */
.products-grid,
ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

ul.products {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Remove WooCommerce clearfix pseudo-elements that create empty grid cells */
ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

/* Override WooCommerce default float-based layout */
.products .product,
ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.products .product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary-green);
}

.products .product a.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.products .product .woocommerce-LoopProduct-link {
    position: relative;
    overflow: hidden;
}

.products .product img,
.products .product .woocommerce-LoopProduct-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.products .product:hover img {
    transform: scale(1.05);
}

/* Product Content Wrapper */
.products .product .product-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Product Brand */
.products .product .product-brand {
    padding: var(--spacing-md) var(--spacing-lg) 0;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.products .product .product-brand a {
    color: var(--primary-green-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.products .product .product-brand a:hover {
    color: var(--text-primary);
}

/* Product Title */
.products .product .woocommerce-loop-product__title,
.products .product h2.woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
    text-align: left;
    overflow-wrap: anywhere;
}

/* Product Price */
.products .product .price {
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-top: auto;
}

.products .product .price del {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: 400;
    margin-right: var(--spacing-xs);
}

.products .product .price ins {
    text-decoration: none;
    color: var(--primary-green-dark);
}

/* Add to Cart Button */
.products .product .button,
.products .product .cb-add-to-cart-btn,
.products .product .add_to_cart_button {
    display: block;
    width: calc(100% - var(--spacing-xl) - var(--spacing-md));
    margin: 0 var(--spacing-lg) var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--text-primary);
    color: var(--primary-bg);
    text-align: center;
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products .product .button:hover,
.products .product .cb-add-to-cart-btn:hover,
.products .product .add_to_cart_button:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-primary);
}

/* Added to cart state */
.products .product .added_to_cart {
    display: block;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-xs);
    color: var(--primary-green-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Shop Page Layout
   ========================================================================== */
.cb-shop-container {
    display: flex;
    gap: var(--spacing-lg);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--container-padding);
}

.cb-shop-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-md));
    max-height: calc(100vh - var(--header-height) - var(--spacing-2xl));
    overflow-y: auto;
    overflow-x: hidden;
    align-self: flex-start;
    padding-right: var(--spacing-xs);
}

/* Sidebar Scrollbar Styling */
.cb-shop-sidebar::-webkit-scrollbar {
    width: 4px;
}

.cb-shop-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.cb-shop-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.cb-shop-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-green);
}

.cb-shop-main {
    flex: 1;
    min-width: 0;
}

/* Shop Header */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.shop-title {
    font-size: 1.75rem;
    margin: 0;
}

.woocommerce-result-count {
    color: var(--text-muted);
    margin: 0;
}

.woocommerce-ordering {
    position: relative;
    display: inline-block;
}

.woocommerce-ordering::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--text-primary);
    border-bottom: 1.5px solid var(--text-primary);
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.7;
    pointer-events: none;
}

.woocommerce-ordering select {
    min-height: 46px;
    padding: 10px 44px 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.woocommerce-ordering select:hover {
    border-color: var(--text-primary);
    background: var(--card-bg);
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Sidebar Filters
   ========================================================================== */

.cb-filters {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Filter Header */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.filter-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* Clear All Button - Enhanced */
.filter-clear {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-clear::before {
    content: "✕";
    font-size: 10px;
}

.filter-clear:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
}

.filter-header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.filter-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--secondary-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-close:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
}

/* Filter Groups */
.filter-group {
    margin-bottom: 0;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group:first-of-type {
    padding-top: 0;
}

/* Filter Group Title/Header */
.filter-group-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-sm);
    margin: calc(-1 * var(--spacing-sm));
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: background var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.filter-group-title:hover {
    background: var(--secondary-bg);
    color: var(--text-primary);
}

.filter-group-title.collapsed {
    margin-bottom: 0;
}

/* Accordion Icon Enhancement */
.filter-group-title img,
.filter-group-title svg,
.filter-group-title .toggle-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.filter-group-title:hover img,
.filter-group-title:hover svg,
.filter-group-title:hover .toggle-icon {
    opacity: 1;
}

/* Filter Group Content - Scrollable */
.filter-group-content {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: var(--spacing-xs);
    margin-right: calc(-1 * var(--spacing-xs));
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Collapsed state */
.filter-group-content.collapsed {
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0;
}

/* Rotate arrow when collapsed */
.filter-group-title.collapsed img,
.filter-group-title.collapsed svg {
    transform: rotate(-90deg);
}

.filter-group-title img,
.filter-group-title svg {
    transition: transform 0.3s ease;
}

/* Custom Scrollbar for Filter Content */
.filter-group-content::-webkit-scrollbar {
    width: 6px;
}

.filter-group-content::-webkit-scrollbar-track {
    background: var(--secondary-bg);
    border-radius: 3px;
}

.filter-group-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.filter-group-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Filter Options */
.filter-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-sm);
    margin: 0 calc(-1 * var(--spacing-sm));
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: background var(--transition-fast);
}

.filter-option:hover {
    background: var(--secondary-bg);
}

/* Custom Checkbox & Radio Styling */
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    /* Hide default input */
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    background: var(--primary-bg);
    transition: all var(--transition-fast);
    position: relative;
}

.filter-option input[type="checkbox"] {
    border-radius: 4px;
}

.filter-option input[type="radio"] {
    border-radius: 50%;
}

/* Hover state */
.filter-option:hover input[type="checkbox"],
.filter-option:hover input[type="radio"] {
    border-color: var(--primary-green);
}

/* Checked state */
.filter-option input[type="checkbox"]:checked,
.filter-option input[type="radio"]:checked {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

/* Checkmark for checkbox */
.filter-option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--text-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Dot for radio */
.filter-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
}

/* Filter Label */
.filter-option label {
    flex: 1;
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    line-height: 1.3;
}

.filter-option:hover label {
    color: var(--text-primary);
}

/* Count Badge */
.filter-option .count {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    background: var(--secondary-bg);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

/* Active/Selected Filter Option */
.filter-option.active,
.filter-option:has(input:checked) {
    background: rgba(163, 214, 0, 0.1);
}

.filter-option.active label,
.filter-option:has(input:checked) label {
    color: var(--primary-green-dark);
    font-weight: 600;
}

.filter-option.active .count,
.filter-option:has(input:checked) .count {
    background: var(--primary-green);
    color: var(--text-primary);
}

/* Availability Toggle - Special Styling */
.filter-group:last-child .filter-option {
    padding: var(--spacing-md) var(--spacing-sm);
    background: var(--secondary-bg);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-xs);
}

/* ==========================================================================
   Price Range Slider
   ========================================================================== */

/* Don't apply the last-child availability styling to the price group */
.filter-group--price.filter-group:last-child .filter-group-content {
    overflow: visible;
    max-height: none;
}

.price-range-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--secondary-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.price-range-currency {
    color: var(--primary-green-dark);
    font-weight: 600;
}

.price-range-sep {
    flex: 1;
    text-align: center;
    color: var(--text-muted);
}

/* Track wrapper — both inputs stack inside this */
.price-range-track {
    position: relative;
    height: 6px;
    margin: 18px var(--spacing-xs);
}

/* The filled bar between the two thumbs */
.price-range-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: var(--primary-green);
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}

/* Both range inputs overlap the same track */
.price-range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    z-index: 2;
}

.price-range-input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.price-range-input::-moz-range-track {
    height: 6px;
    background: transparent;
}

/* Base track colour (the unfilled part) — only on min slider to avoid double-rendering */
.price-range-input--min::-webkit-slider-runnable-track {
    background: var(--border-color);
    border-radius: 3px;
}

.price-range-input--min::-moz-range-track {
    background: var(--border-color);
    border-radius: 3px;
}

/* Thumb styles */
.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 3px solid var(--primary-bg);
    box-shadow: 0 0 0 2px var(--primary-green), var(--shadow-sm);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 3;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.price-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 3px solid var(--primary-bg);
    box-shadow: 0 0 0 2px var(--primary-green), var(--shadow-sm);
    cursor: pointer;
    pointer-events: all;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.price-range-input::-webkit-slider-thumb:hover,
.price-range-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(163, 214, 0, 0.3), var(--shadow-md);
    transform: scale(1.15);
}

.price-range-input::-moz-range-thumb:hover,
.price-range-input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(163, 214, 0, 0.3), var(--shadow-md);
    transform: scale(1.15);
}

/* Remove focus outline — custom shadow ring handles it */
.price-range-input:focus {
    outline: none;
}


/* ==========================================================================
   Single Product
   ========================================================================== */
.single-product .product {
    display: grid;
    grid-template-columns: minmax(320px, 450px) minmax(0, 1fr);
    gap: var(--spacing-2xl);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--container-padding);
}

.woocommerce-product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-xl));
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 450px;
}

@media (min-width: 769px) {
    .woocommerce-product-gallery {
        top: var(--spacing-md);
        justify-content: flex-start !important;
    }
}

@media (min-width: 1280px) {
    .woocommerce-product-gallery {
        top: 0;
    }
}

.woocommerce-product-gallery__trigger {
    display: none !important;
}

.view-full-size-btn {
    margin-top: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.view-full-size-btn:hover {
    border-color: var(--primary-green);
    color: var(--text-primary);
    background: var(--primary-green-light);
}

.view-full-size-btn i {
    font-style: normal;
}

.woocommerce-product-gallery .flex-viewport {
    max-width: 450px;
    width: 100%;
}

.woocommerce-product-gallery__image {
    max-width: 450px;
    width: 100%;
}

.woocommerce-product-gallery__image a {
    display: block !important;
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper img {
    border-radius: var(--border-radius-md);
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Responsive product gallery */
@media (max-width: 768px) {

    .woocommerce-product-gallery .flex-viewport {
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
    }
}

.single-product div.product div.summary .product_title {
    font-size: clamp(2.1rem, 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.045em;
    margin-bottom: 0.75rem;
}

.single-product div.product div.summary .stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 36px;
    padding: 0.45rem 0.82rem;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(114, 181, 77, 0.2);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.15) 0%, rgba(114, 181, 77, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    color: var(--primary-green-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product div.product div.summary .stock-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.14);
    flex-shrink: 0;
}

.single-product div.product div.summary .stock-badge.out-of-stock {
    border-color: rgba(198, 40, 40, 0.16);
    background: linear-gradient(180deg, rgba(255, 235, 238, 0.95) 0%, rgba(255, 245, 245, 0.98) 100%);
    color: #c62828;
}

.single-product div.product div.summary .stock-badge.out-of-stock::before {
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}

.single-product div.product div.summary .price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.5rem 0.75rem;
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
    font-size: clamp(1.95rem, 2.3vw, 2.35rem);
    font-weight: 800;
    line-height: 1;
}

.single-product div.product div.summary .price del {
    color: rgba(15, 23, 42, 0.42);
    font-size: 1rem;
    font-weight: 600;
}

.single-product div.product div.summary .price ins {
    color: var(--primary-green-dark);
    text-decoration: none;
}

.vehicle-compatibility {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-lg) 0;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 20px rgba(15, 23, 42, 0.05);
}

.vehicle-compatibility::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(114, 181, 77, 0.24) 0%, rgba(114, 181, 77, 0.08) 55%, rgba(114, 181, 77, 0) 100%);
}

.vehicle-compatibility__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    margin-bottom: 14px;
}

.vehicle-compatibility__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.18) 0%, rgba(114, 181, 77, 0.1) 100%);
    color: var(--primary-green-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.vehicle-compatibility__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vehicle-compatibility__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vehicle-compatibility__eyebrow {
    color: var(--primary-green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vehicle-compatibility__title {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.vehicle-compatibility__description {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.5;
}

.vehicle-compatibility__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(114, 181, 77, 0.18);
    border-radius: 999px;
    background: rgba(114, 181, 77, 0.08);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.compatibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compatibility-list li {
    margin: 0;
}

.compatibility-list li a,
.compatibility-list__link,
.compatibility-tab-content__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.compatibility-list li a:hover,
.compatibility-list li a:focus-visible,
.compatibility-list__link:hover,
.compatibility-list__link:focus-visible,
.compatibility-tab-content__chip:hover,
.compatibility-tab-content__chip:focus-visible {
    border-color: rgba(114, 181, 77, 0.32);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 8px 16px rgba(15, 23, 42, 0.06);
    color: var(--primary-green-dark);
    transform: translateY(-1px);
}

.compatibility-list li a:focus-visible,
.compatibility-list__link:focus-visible,
.compatibility-tab-content__chip:focus-visible {
    outline: 2px solid rgba(114, 181, 77, 0.35);
    outline-offset: 2px;
}

/* Add to Cart Section */
.single-product .product .cart {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    position: relative;
}

.single-product .product .quantity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    grid-template-rows: 1fr 1fr;
    width: 88px;
    min-height: 54px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.single-product .product .quantity:focus-within {
    border-color: rgba(114, 181, 77, 0.42);
    box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.single-product div.product div.summary form.cart .quantity .qty {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    height: 100%;
    min-height: 54px;
    padding: 0 0.55rem;
    text-align: center;
    border: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
    box-shadow: none;
    appearance: textfield;
    -moz-appearance: textfield;
    transition: color var(--transition-fast);
}

.single-product div.product div.summary form.cart .quantity .qty:focus {
    outline: none;
}

.single-product div.product div.summary form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product div.product div.summary form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.66);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper:hover,
.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper:focus-visible {
    background: rgba(114, 181, 77, 0.12);
    color: var(--primary-green-dark);
    outline: none;
}

.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper--increase {
    grid-column: 2;
    grid-row: 1;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper--decrease {
    grid-column: 2;
    grid-row: 2;
}

.single-product div.product div.summary form.cart .quantity .cb-quantity-stepper span {
    font-size: 0.62rem;
    line-height: 1;
}

.cb-stock-limit-popup {
    position: absolute;
    left: 0;
    top: -12px;
    z-index: 4;
    width: min(100%, 360px);
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%) translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.cb-stock-limit-popup.is-visible {
    opacity: 1;
    transform: translateY(-100%) translateY(-14px);
}

body.single-product div.product div.summary form.cart .single_add_to_cart_button,
body.single-product div.product div.summary form.cart .single_add_to_cart_button.alt {
    flex: 1;
    min-height: 58px;
    height: 58px;
    padding: 0 var(--spacing-xl);
    border: 1px solid rgba(114, 181, 77, 0.28);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 14px 28px rgba(114, 181, 77, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast), background var(--transition-fast);
}

body.single-product div.product div.summary form.cart .single_add_to_cart_button:hover,
body.single-product div.product div.summary form.cart .single_add_to_cart_button.alt:hover,
body.single-product div.product div.summary form.cart .single_add_to_cart_button:focus-visible,
body.single-product div.product div.summary form.cart .single_add_to_cart_button.alt:focus-visible {
    border-color: rgba(114, 181, 77, 0.34);
    box-shadow: 0 18px 34px rgba(114, 181, 77, 0.24), 0 0 0 4px rgba(114, 181, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    color: #ffffff;
    transform: translateY(-1px);
    outline: none;
    filter: brightness(1.01);
}

body.single-product div.product div.summary form.cart .single_add_to_cart_button:active,
body.single-product div.product div.summary form.cart .single_add_to_cart_button.alt:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(114, 181, 77, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (min-width: 769px) {
    .single-product .product {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 430px) minmax(340px, 460px) minmax(0, 1fr);
        gap: clamp(34px, 3.5vw, 40px);
        align-items: start;
    }

    .single-product .product>.woocommerce-product-gallery,
    .single-product .product>div.images {
        grid-column: 2;
        align-self: start;
        justify-self: stretch;
    }

    .single-product .product>.summary,
    .single-product .product>div.summary {
        grid-column: 3;
        align-self: start;
        justify-self: stretch;
    }

    .single-product div.product div.images,
    .single-product div.product div.summary {
        float: none !important;
        clear: none !important;
        display: block !important;
        margin: 0;
    }

    .single-product div.product div.summary {
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
        position: relative;
        align-self: start;
        justify-self: stretch;
        padding: clamp(22px, 1.8vw, 24px) clamp(24px, 2vw, 28px) clamp(24px, 2.2vw, 28px);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.88);
        overflow: hidden;
    }

    .single-product div.product div.summary .product_title {
        margin-bottom: 0.6rem;
    }

    .single-product div.product div.summary .stock-badge {
        margin-bottom: 0.95rem;
    }

    .single-product div.product div.summary::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(114, 181, 77, 0.18), rgba(255, 255, 255, 0.88));
        pointer-events: none;
    }

    .single-product div.product div.summary .price {
        margin-top: 0.95rem;
        margin-bottom: 1.2rem;
        padding-top: 1rem;
    }

    .single-product div.product div.summary form.cart:not(.variations_form):not(.grouped_form) {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        align-items: stretch;
        gap: 14px;
        margin: 1.35rem 0 0;
        padding: 10px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .single-product div.product div.summary form.cart:not(.variations_form):not(.grouped_form) .quantity {
        grid-column: 1;
        display: flex;
    }

    .single-product div.product div.summary form.cart:not(.variations_form):not(.grouped_form) .quantity .qty {
        width: 100%;
        height: 58px;
    }

    .single-product div.product div.summary form.cart:not(.variations_form):not(.grouped_form) .single_add_to_cart_button,
    .single-product div.product div.summary form.cart:not(.variations_form):not(.grouped_form) .single_add_to_cart_button.alt {
        grid-column: 2;
        width: 100%;
    }
}

.cb-product-reassurance {
    margin-top: calc(var(--spacing-lg) - 2px);
}

.cb-product-reassurance__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-product-reassurance__item {
    min-width: 0;
}

.cb-product-reassurance__content,
.cb-product-reassurance__link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 20px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.cb-product-reassurance__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.18) 0%, rgba(114, 181, 77, 0.1) 100%);
    color: var(--primary-green-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cb-product-reassurance__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cb-product-reassurance__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.cb-product-reassurance__title {
    color: var(--text-primary);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.3;
}

.cb-product-reassurance__description {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.5;
}

.cb-product-reassurance__link:hover {
    border-color: rgba(114, 181, 77, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 14px 24px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

/* Product Meta (SKU, Category, Brand) */
.product_meta {
    margin-top: var(--spacing-xl);
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 24px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.product_meta::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(114, 181, 77, 0.18), rgba(255, 255, 255, 0.85));
    pointer-events: none;
}

.product_meta>span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-weight: 600;
    line-height: 1.55;
}

.product_meta .sku_wrapper,
.product_meta .posted_in,
.product_meta .tagged_as {
    font-weight: 600;
}

.product_meta .sku,
.product_meta a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.34rem 0.72rem;
    border: 1px solid rgba(114, 181, 77, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.14) 0%, rgba(114, 181, 77, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    max-width: 100%;
}

.product_meta .sku {
    overflow-wrap: anywhere;
}

.product_meta a:hover {
    color: var(--primary-green-dark);
    border-color: rgba(114, 181, 77, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 8px 18px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.product_meta a:focus-visible {
    outline: none;
    border-color: rgba(114, 181, 77, 0.36);
    box-shadow: 0 0 0 3px rgba(114, 181, 77, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

/* Product Tabs */
.woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: var(--spacing-2xl);
}

.woocommerce-tabs .tabs,
body.single-product div.product .woocommerce-tabs ul.tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    width: max-content;
    max-width: 100%;
    padding: 8px;
    margin: 0 0 var(--spacing-xl);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 24px rgba(15, 23, 42, 0.05);
}

.woocommerce-tabs .tabs::before,
body.single-product div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

body.single-product div.product .woocommerce-tabs ul.tabs::before,
body.single-product div.product .woocommerce-tabs ul.tabs::after {
    content: none !important;
    display: none !important;
}

.woocommerce-tabs .tabs li,
body.single-product div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-product div.product .woocommerce-tabs ul.tabs li,
body.single-product div.product .woocommerce-tabs ul.tabs li.active {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.woocommerce-tabs .tabs li::before,
.woocommerce-tabs .tabs li::after,
body.single-product div.product .woocommerce-tabs ul.tabs li::before,
body.single-product div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

body.single-product div.product .woocommerce-tabs ul.tabs li::before,
body.single-product div.product .woocommerce-tabs ul.tabs li::after {
    content: none !important;
    display: none !important;
}

.woocommerce-tabs .tabs li a,
body.single-product div.product .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.15rem;
    color: var(--text-secondary);
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover,
body.single-product div.product .woocommerce-tabs ul.tabs li.active a,
body.single-product div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--text-primary);
    border-color: rgba(114, 181, 77, 0.24);
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.14) 0%, rgba(114, 181, 77, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

body.single-product div.product .woocommerce-tabs ul.tabs li a[aria-selected="true"] {
    color: var(--text-primary) !important;
    border-color: rgba(114, 181, 77, 0.24) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(15, 23, 42, 0.06) !important;
    transform: translateY(-1px) !important;
}

.woocommerce-tabs .tabs li a:focus-visible,
body.single-product div.product .woocommerce-tabs ul.tabs li a:focus-visible {
    outline: none;
    border-color: rgba(114, 181, 77, 0.32);
    box-shadow: 0 0 0 3px rgba(114, 181, 77, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.woocommerce-tabs .panel,
body.single-product div.product .woocommerce-tabs .panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 14px 28px rgba(15, 23, 42, 0.06);
}

.woocommerce-tabs .panel::before,
body.single-product div.product .woocommerce-tabs .panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(114, 181, 77, 0.18), rgba(255, 255, 255, 0.85));
}

.woocommerce-tabs .panel > :first-child,
body.single-product div.product .woocommerce-tabs .panel > :first-child {
    margin-top: 0;
}

.woocommerce-tabs .panel > :last-child,
body.single-product div.product .woocommerce-tabs .panel > :last-child {
    margin-bottom: 0;
}

.woocommerce-tabs .panel > h2,
body.single-product div.product .woocommerce-tabs .panel > h2 {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    margin: 0 0 1rem;
    padding-inline-start: 0.125rem;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1.2;
}

.woocommerce-tabs .woocommerce-Tabs-panel--description > h2::before,
.woocommerce-tabs .woocommerce-Tabs-panel--additional_information > h2::before {
    display: block;
    margin-bottom: 0.08rem;
    color: var(--primary-green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.woocommerce-tabs .woocommerce-Tabs-panel--description > h2::before {
    content: 'Product overview';
}

.woocommerce-tabs .woocommerce-Tabs-panel--additional_information > h2::before {
    content: 'Technical details';
}

.woocommerce-tabs .panel :where(p, li, td, th) {
    line-height: 1.7;
}

.woocommerce-tabs .panel p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
}

.woocommerce-tabs .panel :where(ul, ol) {
    margin: 0.4rem 0 1rem;
    padding-left: 1.15rem;
    color: var(--text-secondary);
}

.woocommerce-tabs .panel li + li {
    margin-top: 0.45rem;
}

.woocommerce-tabs .panel :where(h3, h4) {
    margin: 1.35rem 0 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.woocommerce-tabs .panel a:not(.compatibility-tab-content__chip) {
    color: var(--primary-green-dark);
    font-weight: 600;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.woocommerce-tabs .woocommerce-product-attributes {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.woocommerce-tabs .woocommerce-product-attributes th,
.woocommerce-tabs .woocommerce-product-attributes td {
    padding: 14px 16px;
    vertical-align: top;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.woocommerce-tabs .woocommerce-product-attributes th {
    width: 32%;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px 0 0 16px;
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.12) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.woocommerce-tabs .woocommerce-product-attributes td {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0 16px 16px 0;
    color: var(--text-secondary);
}

.woocommerce-tabs .woocommerce-product-attributes td p {
    margin: 0;
}

.compatibility-tab-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.compatibility-tab-content__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.compatibility-tab-content__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.18) 0%, rgba(114, 181, 77, 0.1) 100%);
    color: var(--primary-green-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.compatibility-tab-content__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.compatibility-tab-content__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.compatibility-tab-content__eyebrow,
.compatibility-tab-section__eyebrow {
    color: var(--primary-green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compatibility-tab-content__title,
.compatibility-tab-section__title {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

.compatibility-tab-content__title {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}

.compatibility-tab-content__description {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.compatibility-tab-content__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.compatibility-tab-content__stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.75rem;
    border: 1px solid rgba(114, 181, 77, 0.18);
    border-radius: 999px;
    background: rgba(114, 181, 77, 0.08);
    color: var(--text-primary);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.compatibility-tab-content__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compatibility-tab-section {
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.compatibility-tab-section__head {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 12px;
}

.compatibility-tab-section__title {
    font-size: 1rem;
}

.compatibility-brands,
.compatibility-models-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tag,
.compatibility-models-list li {
    margin: 0;
    display: flex;
}

.compatibility-tab-content__chip {
    white-space: normal;
}
}

/* ==========================================================================
   Related Products
   ========================================================================== */
.related.products {
    grid-column: 1 / -1;
    /* Span all columns in parent grid */
    width: 100%;
    max-width: 100%;
    margin: var(--spacing-3xl) 0;
    padding: 0;
    display: block;
}

.related.products>h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    text-align: left;
}

/* Ensure related products grid matches main shop grid */
.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--spacing-xl) !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Override any WooCommerce inline width styles */
.related.products ul.products li.product {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    align-items: stretch;
}

.related.products ul.products li.product>a.woocommerce-LoopProduct-link,
.related.products ul.products li.product>a.woocommerce-loop-product__link {
    display: block;
    width: 100%;
    align-self: stretch;
}

@media (min-width: 1025px) {
    .single-product .product>.related.products {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .single-product .related.products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: clamp(20px, 2vw, 28px) !important;
    }

    .single-product .related.products ul.products li.product img,
    .single-product .related.products ul.products li.product .woocommerce-LoopProduct-link img {
        height: 240px !important;
        object-fit: cover;
    }

    .single-product .related.products ul.products li.product .product-brand {
        padding: 0.9rem 1rem 0;
        display: flex;
        align-items: center;
        gap: 0.42rem;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: rgba(15, 23, 42, 0.54);
    }

    .single-product .related.products ul.products li.product .product-brand::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--primary-green);
        box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.14);
        flex: 0 0 auto;
    }

    .single-product .related.products ul.products li.product .product-brand a {
        color: var(--primary-green-dark);
    }

.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product .related.products ul.products li.product h2.woocommerce-loop-product__title,
.single-product .related.products ul.products li.product h2 {
        padding: 0.45rem 1rem 0 !important;
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 4.05em;
        font-size: 1.08rem !important;
        font-weight: 650 !important;
        line-height: 1.35 !important;
        letter-spacing: -0.02em;
        color: var(--text-primary) !important;
        overflow-wrap: anywhere;
    }

    .single-product .related.products ul.products li.product .price {
        margin-top: 0 !important;
        padding: 0.55rem 1rem 0.8rem;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.25rem 0.45rem;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        font-size: 1.12rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    .single-product .related.products ul.products li.product .price del {
        color: rgba(15, 23, 42, 0.42);
        font-size: 0.82rem;
        font-weight: 500;
    }

    .single-product .related.products ul.products li.product .price ins {
        color: var(--primary-green-dark);
        text-decoration: none;
    }

    .single-product .related.products ul.products li.product .button,
    .single-product .related.products ul.products li.product .cb-add-to-cart-btn,
    .single-product .related.products ul.products li.product .add_to_cart_button {
        width: calc(100% - 2rem);
        margin: auto 1rem 1rem !important;
        min-height: 46px;
        padding: 0.85rem 1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--text-primary);
    color: var(--primary-bg);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-bg);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-img {
    max-width: 160px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logo white for dark footer */
    transition: opacity var(--transition-fast);
}

.footer-logo a:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-about-column {
    grid-column: span 1;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-bg);
    transition: background var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--primary-green);
}

.footer-legal-column {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
}

.footer-legal-column .footer-title {
    margin-bottom: var(--spacing-sm);
}

.footer-legal-notice {
    margin: 0 0 var(--spacing-md);
    color: #fff;
    font-size: var(--font-size-sm);
    line-height: 1.65;
}

.footer-legal-links li:last-child {
    margin-bottom: 0;
}

.footer-legal-links a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-legal-links span {
    color: #fff;
}

.footer-legal-links a:hover {
    color: var(--primary-green);
}

.footer-privacy-choices {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    color: #fff;
    font: inherit;
    font-size: var(--font-size-sm);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.footer-privacy-choices:hover,
.footer-privacy-choices:focus-visible {
    color: var(--primary-green);
}

.cb-consent-banner {
    position: fixed;
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 9999;
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cb-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cb-consent-banner__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    max-width: 980px;
    margin: 0 auto;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cb-consent-banner__content {
    max-width: 640px;
}

.cb-consent-banner__title {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.cb-consent-banner__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cb-consent-banner__link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cb-consent-banner__link:hover,
.cb-consent-banner__link:focus-visible {
    color: var(--primary-green);
}

.cb-consent-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.cb-consent-banner__button {
    appearance: none;
    border-radius: 999px;
    padding: 0.9rem 1.15rem;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.cb-consent-banner__button:hover,
.cb-consent-banner__button:focus-visible {
    transform: translateY(-1px);
}

.cb-consent-banner__button--primary {
    border: 0;
    background: var(--primary-green);
    color: var(--text-primary);
}

.cb-consent-banner__button--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 768px) {
    .cb-consent-banner__inner {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 1.1rem;
    }

    .cb-consent-banner__actions {
        justify-content: stretch;
    }

    .cb-consent-banner__button {
        width: 100%;
    }
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-bottom .footer-credit {
    position: absolute;
    left: 50%;
    --footer-credit-offset: 0px;
    transform: translateX(-50%) translateY(var(--footer-credit-offset));
}

/* Footer Credit - Ronny Design */
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: var(--font-size-sm);
    padding: 8px 15px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(3, 8, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-credit::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 12px;
    right: 12px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.34) 22%, rgba(255, 255, 255, 0.08) 78%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-credit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    width: 94px;
    height: 94px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.22) 0%, rgba(0, 230, 118, 0.08) 34%, rgba(0, 230, 118, 0) 72%);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.28;
    filter: blur(14px);
    transition: opacity 260ms ease, transform 260ms ease;
    pointer-events: none;
    z-index: 0;
}

.footer-credit:hover,
.footer-credit:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.045) 100%);
    border-color: rgba(0, 230, 118, 0.24);
    box-shadow: 0 14px 30px rgba(3, 8, 18, 0.22), 0 0 0 1px rgba(0, 230, 118, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-credit:hover::after,
.footer-credit:focus-visible::after {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
}

.footer-bottom .footer-credit:hover,
.footer-bottom .footer-credit:focus-visible {
    --footer-credit-offset: -1px;
}

.footer-credit:focus-visible {
    outline: none;
}

.footer-credit-text {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-credit-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(236, 253, 245, 0.96) 58%, rgba(134, 239, 172, 0.9) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(0.98);
}

.footer-credit-brand::after {
    content: '';
    position: absolute;
    top: -28%;
    left: -18%;
    width: 34px;
    height: 160%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.18) 72%, transparent 100%);
    opacity: 0;
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.footer-credit-dot {
    position: relative;
    display: inline-block;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--primary-green);
    -webkit-text-fill-color: var(--primary-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
    animation: footerCreditDotGlow 4.8s ease-in-out infinite;
}

.footer-credit:hover .footer-credit-brand,
.footer-credit:focus-visible .footer-credit-brand {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 253, 244, 0.98) 50%, rgba(0, 230, 118, 0.92) 115%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.06);
}

.footer-credit:hover .footer-credit-brand::after,
.footer-credit:focus-visible .footer-credit-brand::after {
    opacity: 0.68;
    transform: translateX(220%) skewX(-18deg);
}

@keyframes footerCreditDotGlow {

    0%,
    100% {
        opacity: 0.9;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 230, 118, 0.16);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
        text-shadow: 0 0 14px rgba(0, 230, 118, 0.26), 0 0 22px rgba(0, 230, 118, 0.16);
    }
}

@media (min-width: 769px) {
    .site-footer {
        position: relative;
        overflow: hidden;
        margin-top: clamp(4rem, 6vw, 5.5rem);
        padding: clamp(4rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 2.5rem);
        background:
            radial-gradient(circle at 12% 0%, rgba(0, 230, 118, 0.1) 0%, rgba(0, 230, 118, 0) 28%),
            radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%),
            linear-gradient(180deg, #111827 0%, #0b1220 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-widgets {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.78fr) minmax(0, 0.78fr) minmax(0, 1fr) minmax(0, 1.18fr);
        grid-auto-rows: 1fr;
        gap: 1rem;
        padding-bottom: 1.8rem;
        border-bottom-color: rgba(255, 255, 255, 0.08);
        align-items: stretch;
    }

    .footer-column {
        position: relative;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        padding: 1.35rem 1.35rem 1.45rem;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.024) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(3, 8, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .footer-column::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 16px;
        right: 16px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 18%, rgba(255, 255, 255, 0.08) 82%, transparent 100%);
        pointer-events: none;
    }

    .footer-about-column {
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%);
        border-color: rgba(134, 239, 172, 0.16);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .footer-legal-column {
        padding: 1.4rem 1.4rem 1.5rem;
        background: linear-gradient(180deg, rgba(0, 230, 118, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-color: rgba(134, 239, 172, 0.22);
        box-shadow: 0 24px 48px rgba(3, 8, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .footer-title {
        margin-bottom: 0.1rem;
        font-size: 0.79rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.96);
    }

    .footer-logo {
        margin-bottom: 0.1rem;
    }

    .footer-logo-img {
        max-width: 172px;
        max-height: 48px;
    }

    .footer-about {
        margin: 0;
        max-width: 34ch;
        font-size: 0.92rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.76);
        text-wrap: balance;
    }

    .footer-social {
        margin-top: auto;
        padding-top: 0.25rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .social-link:hover {
        transform: translateY(-1px);
        border-color: rgba(0, 230, 118, 0.28);
    }

    .footer-links,
    .footer-contact {
        display: grid;
        gap: 0.78rem;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 0;
    }

    .footer-links a,
    .footer-links span,
    .footer-contact li,
    .footer-legal-notice {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-links a,
    .footer-links span {
        color: rgba(255, 255, 255, 0.74);
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        text-decoration: none;
        transition: color 180ms ease, transform 180ms ease;
    }

    .footer-links a:hover {
        transform: translateX(2px);
    }

    .footer-contact li {
        color: rgba(255, 255, 255, 0.68);
    }

    .footer-contact a {
        color: rgba(255, 255, 255, 0.92);
        font-weight: 500;
    }

    .footer-legal-column .footer-title {
        margin-bottom: 0.15rem;
    }

    .footer-legal-notice {
        margin: 0;
        color: rgba(255, 255, 255, 0.84);
        line-height: 1.7;
    }

    .footer-legal-links a {
        text-decoration-color: rgba(255, 255, 255, 0.28);
        text-underline-offset: 3px;
    }

    .footer-bottom {
        padding-top: 1.45rem;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 1rem;
        align-items: center;
    }

    .copyright {
        max-width: 42ch;
        font-size: 0.84rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.56);
    }

    .footer-bottom .footer-credit {
        position: static;
        left: auto;
        grid-column: 2;
        justify-self: center;
        transform: translateY(var(--footer-credit-offset));
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-bottom .footer-credit {
        position: static;
        left: auto;
        transform: translateY(var(--footer-credit-offset));
    }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.woocommerce-breadcrumb,
.cb-breadcrumb {
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.woocommerce-breadcrumb a,
.cb-breadcrumb a {
    color: var(--text-secondary);
}

.woocommerce-breadcrumb a:hover,
.cb-breadcrumb a:hover {
    color: var(--primary-green-dark);
}

.breadcrumb-sep {
    margin: 0 var(--spacing-sm);
    color: var(--text-muted);
}

/* ==========================================================================
   Checkout Progress
   ========================================================================== */
.cb-checkout-progress {
    margin: var(--spacing-md) 0 var(--spacing-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: #fff;
}

.cb-checkout-progress__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cb-checkout-progress__item {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.cb-checkout-progress__dot {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
}

.cb-checkout-progress__sep {
    color: var(--text-muted);
    margin-right: var(--spacing-xs);
}

.cb-checkout-progress__item.is-active {
    color: var(--text-primary);
}

.cb-checkout-progress__item.is-active .cb-checkout-progress__dot {
    background: var(--primary-green);
    border-color: var(--primary-green-dark);
    color: #000;
}

.cb-checkout-progress__item.is-complete {
    color: var(--text-secondary);
}

.cb-checkout-progress__item.is-complete .cb-checkout-progress__dot {
    background: #eaf9f1;
    border-color: var(--primary-green-dark);
    color: #0d6d38;
}

.cb-cooling-off-notice {
    margin: 0 0 var(--spacing-lg);
    padding: var(--spacing-md);
    border: 1px solid #b7dfc7;
    border-left: 4px solid var(--primary-green);
    border-radius: var(--border-radius-md);
    background: #f4fbf7;
}

.cb-cooling-off-notice__text {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

.cb-cooling-off-notice__links {
    margin: var(--spacing-xs) 0 0;
    font-size: var(--font-size-sm);
}

.cb-cooling-off-notice__links a {
    color: #0d6d38;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cb-cooling-off-notice__links a:hover {
    color: var(--primary-green-dark);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.woocommerce-pagination {
    margin-top: var(--spacing-2xl);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablets and below */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .products-grid,
    ul.products,
    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-product .product {
        gap: var(--spacing-xl);
    }
}

/* Mobile landscape and tablets */
@media (min-width: 769px) and (max-width: 960px) {
    .header-inner {
        gap: var(--spacing-md);
    }

    .site-branding .custom-logo-link img,
    .site-branding .custom-logo,
    .site-branding .site-logo {
        max-height: 62px;
        max-width: 210px;
    }

    .main-navigation {
        min-width: 0;
    }

    .primary-menu {
        gap: 1.2rem;
    }

    .primary-menu a {
        padding: 0.45rem 0;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .header-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .header-inner {
        position: relative;
    }

    /* Homepage hero mobile positioning */
    .front-page .hero-logo-container {
        top: 42%;
    }

    .front-page .hero-cta-overlay {
        padding-bottom: 15%;
    }

    /* Mobile Logo */
    .site-branding .custom-logo-link img,
    .site-branding .custom-logo,
    .site-branding .site-logo {
        max-height: 56px;
        max-width: 196px;
    }

    .footer-logo-img {
        max-width: 140px;
        max-height: 40px;
    }

    /* Mobile menu trigger */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: var(--border-radius-md);
        position: relative;
        z-index: 1003;
    }

    /* Adjust header layout for mobile */
    .header-inner {
        gap: var(--spacing-sm);
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .header-actions .lang-switcher {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Keep search and cart visible in header while menu opens */
    .main-navigation {
        flex: 0;
        order: 3;
        display: flex;
        justify-content: flex-end;
    }

    /* Full-screen mobile menu sheet */
    .primary-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100dvh - var(--header-height));
        margin: 0;
        padding: var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-2xl) + env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        background: var(--primary-bg);
        border-top: 1px solid var(--border-color);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 1002;
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .primary-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: var(--spacing-md) 0;
        font-size: var(--font-size-base);
        font-weight: 600;
    }

    .main-navigation.active .primary-menu {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .main-navigation:not(.active) .primary-menu {
        visibility: hidden;
        pointer-events: none;
    }

    /* Shop Layout */
    .cb-shop-container {
        flex-direction: column;
    }

    .cb-checkout-progress {
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .cb-checkout-progress__list {
        gap: var(--spacing-xs);
    }

    .cb-checkout-progress__item {
        font-size: var(--font-size-xs);
    }

    .cb-checkout-progress__dot {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .cb-shop-sidebar {
        width: 100%;
        order: -1;
        position: static;
        /* Disable sticky on mobile */
    }

    /* Product Grid */
    .products-grid,
    ul.products,
    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md) !important;
    }

    .products .product img {
        height: 150px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 280px;
    }

    /* Single Product */
    .single-product .product {
        grid-template-columns: 1fr;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .woocommerce-product-gallery {
        position: static;
    }

    /* Footer */
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    /* Hero */
    .hero-split {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding: var(--spacing-xl);
        max-width: 100%;
    }

    .hero-search {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search-form {
        flex-direction: column;
    }

    .hero-search-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
    }

    .hero-autocomplete-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-autocomplete-item img {
        width: 40px;
        height: 40px;
    }

    /* Hero Logo - Tablet */
    .hero-logo {
        width: 300px;
    }

    /* Hero CTA Buttons - Tablet */
    .hero-cta-overlay {
        padding: 0 6% 4%;
        gap: var(--spacing-lg);
    }

    .hero-cta-btn {
        padding: 10px 28px;
        font-size: 1rem;
        letter-spacing: 1.2px;
    }

    .hero-cta-arrow {
        font-size: 1.2rem;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .company-info-section {
        padding: 48px 0 54px;
        background: linear-gradient(180deg, #f7faf8 0%, #ffffff 40%, #f5f8f6 100%);
    }

    .company-info-card {
        position: relative;
        overflow: hidden;
        padding: 24px 20px 20px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 250, 0.98) 100%);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .company-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20px;
        width: 72px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 230, 118, 0.95) 0%, rgba(0, 230, 118, 0.18) 100%);
    }

    .company-info-kicker {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        margin-bottom: 12px;
        border-radius: 999px;
        background: rgba(0, 230, 118, 0.12);
        color: var(--primary-green-dark);
        letter-spacing: 0.08em;
    }

    .company-info-title {
        margin-bottom: 12px;
        font-size: clamp(1.375rem, 5.5vw, 1.75rem);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .company-info-intro {
        margin-bottom: 18px;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #475467;
    }

    .company-info-grid {
        gap: 14px;
    }

    .company-info-block {
        padding: 16px 15px;
        border-radius: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 248, 0.96) 100%);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .company-info-block h3 {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #0f172a;
    }

    .company-info-block h3::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: rgba(0, 230, 118, 0.92);
        box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.14);
        flex-shrink: 0;
    }

    .company-info-list {
        gap: 6px;
    }

    .company-info-list li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .company-info-list strong {
        color: #0f172a;
    }

    .company-trust-strip {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .company-trust-pill {
        min-width: 0;
        justify-content: center;
        text-align: center;
        padding: 11px 12px;
        border-radius: 16px;
        border-color: rgba(0, 230, 118, 0.18);
        background: linear-gradient(180deg, rgba(248, 255, 251, 0.98) 0%, rgba(243, 249, 246, 0.98) 100%);
        color: var(--primary-green-dark);
        font-size: 0.8125rem;
        line-height: 1.35;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .company-trust-pill__icon {
        width: 16px;
        height: 16px;
    }

    .site-footer {
        padding: 36px 0 20px;
        margin-top: var(--spacing-2xl);
        background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-bottom: 18px;
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    .footer-column {
        min-width: 0;
        padding: 14px 14px 15px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .footer-about-column,
    .footer-contact-column,
    .footer-legal-column {
        grid-column: 1 / -1;
    }

    .footer-about-column {
        padding: 18px 16px;
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%);
        border-color: rgba(114, 181, 77, 0.16);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-logo-img {
        max-width: 132px;
        max-height: 38px;
    }

    .footer-about {
        margin: 0;
        font-size: 0.8125rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.72);
        text-wrap: balance;
    }

    .footer-social {
        margin-top: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
    }

    .footer-title {
        margin-bottom: 12px;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.95);
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 8px;
    }

    .footer-links a,
    .footer-links span,
    .footer-contact li,
    .footer-legal-notice {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .footer-contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .footer-contact li {
        margin-bottom: 0;
    }

    .footer-contact li:first-child,
    .footer-contact li:nth-child(6),
    .footer-contact li:last-child {
        grid-column: 1 / -1;
    }

    .footer-legal-column {
        padding: 15px 15px 16px;
        background: linear-gradient(180deg, rgba(114, 181, 77, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
        border-color: rgba(114, 181, 77, 0.18);
        border-radius: 20px;
    }

    .footer-legal-notice {
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.55;
    }

    .footer-bottom {
        padding-top: 16px;
        gap: 10px;
    }

    .copyright {
        font-size: 0.75rem;
        line-height: 1.5;
        max-width: 28ch;
    }

    .footer-credit {
        padding: 7px 13px;
        font-size: 0.75rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .footer-credit,
    .footer-credit::after,
    .footer-credit-brand::after,
    .footer-credit-dot {
        transition: none;
        animation: none;
    }
}

@media (max-width: 480px) {

    .company-info-section {
        padding: 44px 0 48px;
    }

    .company-info-card {
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    .company-info-card::before {
        left: 18px;
        width: 64px;
    }

    .company-info-kicker {
        margin-bottom: 10px;
        font-size: 0.6875rem;
    }

    .company-info-title {
        margin-bottom: 10px;
    }

    .company-info-intro {
        margin-bottom: 16px;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .company-info-grid {
        gap: 12px;
    }

    .company-info-block {
        padding: 15px 14px;
        border-radius: 16px;
    }

    .company-info-list li {
        font-size: 0.875rem;
    }

    .company-trust-strip {
        gap: 8px;
    }

    .company-trust-pill {
        padding: 10px 11px;
        font-size: 0.78rem;
        border-radius: 15px;
    }

    .brands-section {
        padding: calc(var(--spacing-2xl) + 4px) 0;
    }

    .brands-section .section-title {
        margin-bottom: var(--spacing-lg);
    }

    .products-grid,
    ul.products,
    .related.products ul.products {
        grid-template-columns: 1fr !important;
    }

    .brands-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card {
        flex: none;
        max-width: none;
        min-width: 0;
        height: auto;
        min-height: 104px;
        padding: 14px 12px 12px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 249, 0.98) 100%);
        border-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
        -webkit-tap-highlight-color: transparent;
    }

    .brand-logo {
        max-height: 34px;
        max-width: 84px;
        align-self: flex-start;
    }

    .brand-card--with-logo .brand-name {
        display: block;
    }

    .brand-card--text-only {
        justify-content: center;
        background: linear-gradient(180deg, rgba(248, 255, 251, 0.98) 0%, rgba(244, 247, 246, 0.98) 100%);
    }

    .brand-card::before,
    .brand-card::after {
        display: none;
    }

    .brand-card:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
        background: var(--primary-bg);
        border-color: var(--border-color);
    }

    .brand-card:hover .brand-logo {
        transform: none;
    }

    .brand-card:active {
        transform: translateY(1px);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .brand-name {
        display: block;
        width: 100%;
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0.015em;
        text-align: left;
        color: var(--text-primary);
        text-wrap: balance;
    }

    .site-footer {
        padding: 32px 0 18px;
    }

    .footer-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-bottom: 16px;
    }

    .footer-column {
        padding: 13px 12px 14px;
        border-radius: 16px;
    }

    .footer-about-column,
    .footer-contact-column,
    .footer-legal-column {
        grid-column: 1 / -1;
    }

    .footer-about-column {
        padding: 16px 14px;
    }

    .footer-title {
        margin-bottom: 10px;
        font-size: 0.75rem;
    }

    .footer-about,
    .footer-links a,
    .footer-links span,
    .footer-contact li,
    .footer-legal-notice,
    .copyright,
    .footer-credit {
        font-size: 0.78rem;
    }

    .footer-contact {
        gap: 8px 10px;
    }

    .footer-bottom {
        padding-top: 14px;
        gap: 8px;
    }

    .header-actions {
        gap: var(--spacing-xs);
    }

    .header-search-toggle,
    .header-cart {
        width: 40px;
        height: 40px;
    }

    .products .product .woocommerce-loop-product__title {
        font-size: var(--font-size-sm);
    }

    .products .product .price {
        font-size: var(--font-size-base);
    }

    /* Hero Logo - Mobile Portrait */
    .hero-logo {
        width: 250px;
    }

    /* Hero CTA Buttons - Mobile Portrait */
    .hero-cta-overlay {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        padding: 0 16px 6%;
        gap: 10px;
    }

    .hero-cta-btn {
        width: auto;
        max-width: none;
        min-width: 0;
        flex: 1 1 0;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        border-width: 1px;
        background: rgba(0, 0, 0, 0.74);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        animation: none;
        isolation: isolate;
        transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
    }

    .hero-cta-btn::before {
        display: none;
    }

    .front-page .hero-cta-btn::before {
        content: '';
        display: block;
        position: absolute;
        top: -30%;
        left: 0;
        width: 42%;
        height: 160%;
        background: linear-gradient(115deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.08) 38%,
                rgba(216, 255, 232, 0.48) 50%,
                rgba(255, 255, 255, 0.12) 62%,
                rgba(255, 255, 255, 0) 100%);
        opacity: 0;
        transform: translateX(-185%) skewX(-22deg);
        pointer-events: none;
        z-index: 0;
        animation: heroCtaMobileLightSweep 11.5s ease-in-out infinite;
    }

    .front-page .hero-cta-btn::after {
        content: '';
        position: absolute;
        top: 8px;
        right: 16px;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: radial-gradient(circle,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(213, 255, 232, 0.68) 22%,
                rgba(255, 255, 255, 0.14) 50%,
                rgba(255, 255, 255, 0) 72%);
        box-shadow: 0 0 12px rgba(210, 255, 227, 0.36);
        opacity: 0;
        transform: scale(0.55);
        pointer-events: none;
        z-index: 0;
        animation: heroCtaMobileSparkle 14s ease-in-out infinite;
    }

    .front-page .hero-cta-text {
        z-index: 2;
    }

    .front-page .hero-cta-offroad::before {
        animation-delay: 1.2s;
    }

    .front-page .hero-cta-onroad::before {
        animation-delay: 6.4s;
    }

    .front-page .hero-cta-offroad::after {
        top: 8px;
        right: 14px;
        animation-delay: 2.4s;
    }

    .front-page .hero-cta-onroad::after {
        top: 9px;
        left: 14px;
        right: auto;
        animation-delay: 8.2s;
    }

    .hero-cta-btn:hover {
        background: rgba(0, 0, 0, 0.82);
        border-color: var(--primary-green);
        color: #ffffff;
        transform: none;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .front-page .hero-cta-btn:hover,
    .front-page .hero-cta-btn:focus-visible,
    .front-page .hero-cta-btn:active {
        background: rgba(0, 0, 0, 0.82);
        border-color: rgba(163, 214, 0, 0.92);
        color: #ffffff;
        transform: none;
        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.18),
            0 0 0 1px rgba(163, 214, 0, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 0 16px rgba(163, 214, 0, 0.08);
    }

    .front-page .hero-cta-btn:active::before,
    .front-page .hero-cta-btn:focus-visible::before {
        opacity: 0.5;
    }

    .front-page .hero-cta-btn:active::after,
    .front-page .hero-cta-btn:focus-visible::after {
        opacity: 0.55;
    }

    .hero-cta-btn:active {
        transform: none;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .hero-cta-arrow {
        font-size: 1.1rem;
    }

    .hero-cta-offroad,
    .hero-cta-onroad {
        margin: 0;
    }

    /* Homepage hero mobile positioning - small phones */
    .front-page .hero-logo-container {
        top: 39%;
    }

    .front-page .hero-cta-overlay {
        padding-bottom: 20%;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 480px) {

    .front-page .hero-cta-btn::before,
    .front-page .hero-cta-btn::after {
        animation: none;
        opacity: 0;
    }
}

/* Filter toggle for mobile */
.filter-toggle {
    display: none;
    width: 100%;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cb-filter-backdrop {
    display: none;
}

@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
        width: auto;
        max-width: 100%;
        align-self: flex-start;
        justify-content: flex-start;
        padding: 10px 14px;
        margin-bottom: var(--spacing-sm);
        min-height: 44px;
        border-radius: 999px;
        background: var(--secondary-bg);
        font-size: 0.95rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .filter-toggle svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .cb-filters {
        display: none;
        margin-bottom: var(--spacing-lg);
    }

    .cb-filters.active {
        display: block;
    }
}

/* ==========================================================================
   Mobile E-Shop Optimization
   ========================================================================== */
@media (max-width: 768px) {

    body.single-product,
    body.single-product #page,
    body.single-product #content {
        overflow-x: hidden;
    }

    .cb-shop-container {
        padding: var(--spacing-md) var(--container-padding) var(--spacing-xl);
        gap: var(--spacing-md);
    }

    .cb-shop-sidebar {
        margin-bottom: var(--spacing-sm);
    }

    .filter-toggle {
        position: sticky;
        top: calc(var(--header-height) + 8px);
        z-index: 101;
    }

    .cb-filters.active {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        margin: 0;
        padding: var(--spacing-md) var(--container-padding) calc(var(--spacing-2xl) + env(safe-area-inset-bottom));
        border-radius: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
    }

    .cb-filter-backdrop {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border: 0;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--transition-base), visibility var(--transition-base);
        z-index: 1190;
    }

    .cb-filter-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .cb-filters.active .filter-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: var(--card-bg);
        padding-top: var(--spacing-xs);
    }

    .cb-filters.active .filter-close {
        display: inline-flex;
    }

    .shop-header {
        position: static;
        top: auto;
        z-index: auto;
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-sm) 0;
        background: var(--primary-bg);
        border-bottom-width: 1px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--spacing-sm);
        align-items: end;
    }

    .shop-title {
        font-size: 1.4rem;
    }

    .shop-header-right {
        grid-column: 1 / -1;
    }

    .brand-header {
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: center;
        gap: var(--spacing-sm);
    }

    .brand-page-logo {
        max-height: 56px;
    }

    .brand-header .shop-header-info {
        min-width: 0;
    }

    .brand-header .shop-title,
    .brand-header .woocommerce-result-count {
        margin: 0;
    }

    .brand-header .shop-header-right {
        grid-column: 1 / -1;
    }

    .woocommerce-ordering {
        width: 100%;
    }

    .woocommerce-ordering select {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
        padding-right: 46px;
    }

    .woocommerce-breadcrumb {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: var(--spacing-sm);
        -webkit-overflow-scrolling: touch;
    }

    .products .product,
    ul.products li.product {
        border-radius: var(--border-radius-md);
    }

    .products .product .woocommerce-LoopProduct-link img,
    .products .product img {
        height: 180px;
    }

    .products .product .product-brand {
        padding: var(--spacing-sm) var(--spacing-md) 0;
    }

    .products .product .woocommerce-loop-product__title,
    .products .product h2.woocommerce-loop-product__title,
    ul.products li.product h2,
    ul.products li.product .woocommerce-loop-product__title {
        padding: var(--spacing-xs) var(--spacing-md) !important;
        min-height: 4.2em;
        font-size: 0.95rem !important;
    }

    .products .product .price {
        padding: var(--spacing-xs) var(--spacing-md) var(--spacing-sm);
        font-size: 1.1rem;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .cb-add-to-cart-btn,
    .woocommerce ul.products li.product .add_to_cart_button,
    .products .product .button,
    .products .product .cb-add-to-cart-btn,
    .products .product .add_to_cart_button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: calc(100% - var(--spacing-xl));
        margin: 0 var(--spacing-md) var(--spacing-md);
        min-height: 44px;
        padding: var(--spacing-sm) var(--spacing-md);
        line-height: 1;
        text-align: center;
    }

    .single-product .product {
        display: block !important;
        gap: var(--spacing-lg);
        padding: var(--spacing-md) var(--container-padding) var(--spacing-xl);
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .single-product .product>* {
        min-width: 0;
    }

    .single-product div.product div.images,
    .single-product div.product div.summary {
        float: none !important;
        clear: both !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .single-product .woocommerce-product-gallery,
    .single-product .woocommerce-product-gallery .flex-viewport,
    .single-product .woocommerce-product-gallery__image a {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* Keep mobile spacing responsive, but let WooCommerce/FlexSlider control slide layout */
    .single-product .woocommerce-product-gallery__wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }

    .single-product .woocommerce-product-gallery__image {
        margin: 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .single-product .woocommerce-product-gallery__wrapper img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: min(62vh, 520px) !important;
        object-fit: contain !important;
        object-position: center center;
        display: block !important;
    }

    .single-product .woocommerce-product-gallery .flex-viewport {
        overflow: hidden !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin: var(--spacing-sm) 0 0 !important;
        padding: 0 !important;
        width: 100% !important;
        clear: both !important;
        overflow: hidden !important;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs::after {
        content: '';
        display: block;
        clear: both;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs li {
        float: none !important;
        width: auto !important;
        margin: 0 !important;
        list-style: none;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs img {
        width: 100% !important;
        height: 72px;
        object-fit: cover;
    }

    /* Prevent WooCommerce zoom layer from creating an over-zoomed look on mobile */
    .single-product .woocommerce-product-gallery .zoomImg {
        display: none !important;
    }

    .single-product div.product div.summary .product_title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: var(--spacing-sm);
    }

    .single-product div.product div.summary {
        margin-top: 0;
        padding-top: var(--spacing-md);
        position: relative;
        z-index: 3;
        background: var(--primary-bg);
    }

    .single-product div.product div.summary .stock-badge {
        min-height: 34px;
        padding: 0.4rem 0.72rem;
    }

    .single-product div.product div.summary .price {
        font-size: 1.45rem;
        margin: 0 0 var(--spacing-md);
        padding-top: 0.85rem;
    }

    .single-product .product .cart {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        margin: var(--spacing-lg) 0;
    }

    .cb-product-reassurance__content,
    .cb-product-reassurance__link {
        padding: 13px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .cb-product-reassurance__title {
        font-size: 0.9rem;
    }

    .cb-product-reassurance__description {
        font-size: 0.8125rem;
    }

    .vehicle-compatibility {
        padding: 14px;
        border-radius: 16px;
    }

    .vehicle-compatibility__header {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 12px;
    }

    .vehicle-compatibility__eyebrow {
        font-size: 0.68rem;
    }

    .vehicle-compatibility__title {
        font-size: 0.92rem;
    }

    .vehicle-compatibility__description {
        font-size: 0.8125rem;
    }

    .vehicle-compatibility__count {
        grid-column: 2;
        justify-self: start;
        padding: 0.32rem 0.62rem;
    }

    .compatibility-list {
        gap: 8px;
    }

    .compatibility-list li a,
    .compatibility-list__link,
    .compatibility-tab-content__chip {
        min-height: 36px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8125rem;
    }

    .product_meta {
        padding: 12px;
        gap: 8px;
        border-radius: 16px;
    }

    .product_meta>span {
        padding: 11px 12px;
        gap: 7px 8px;
        border-radius: 13px;
        font-size: 0.8125rem;
    }

    .product_meta .sku,
    .product_meta a {
        min-height: 30px;
        padding: 0.3rem 0.65rem;
        font-size: 0.78rem;
    }

    .single-product .product .quantity {
        width: 100%;
    }

    .single-product div.product div.summary form.cart .quantity .qty {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }

    .single-product div.product div.summary form.cart .quantity .cb-quantity-stepper {
        width: 28px;
        min-width: 28px;
    }

    .cb-stock-limit-popup {
        width: 100%;
        font-size: 0.78rem;
    }

    body.single-product div.product div.summary form.cart .single_add_to_cart_button,
    body.single-product div.product div.summary form.cart .single_add_to_cart_button.alt {
        width: 100%;
        min-height: 50px;
        height: 50px;
    }

    .woocommerce-tabs {
        margin-top: var(--spacing-xl);
    }

    .woocommerce-tabs .tabs,
    body.single-product div.product .woocommerce-tabs ul.tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
        padding: 6px;
        border-radius: 16px;
        margin-bottom: var(--spacing-md);
    }

    .woocommerce-tabs .tabs li,
    body.single-product div.product .woocommerce-tabs ul.tabs li {
        min-width: 0;
    }

    .woocommerce-tabs .tabs li a,
    body.single-product div.product .woocommerce-tabs ul.tabs li a {
        min-height: 40px;
        width: 100%;
        min-width: 0;
        padding: 0.7rem 0.75rem;
        font-size: var(--font-size-sm);
        text-align: center;
        white-space: normal;
    }

    .woocommerce-tabs .panel,
    body.single-product div.product .woocommerce-tabs .panel {
        padding: 16px;
        border-radius: 18px;
    }

    .woocommerce-tabs .panel > h2 {
        margin-bottom: 0.9rem;
        font-size: 1.12rem;
    }

    .woocommerce-tabs .woocommerce-Tabs-panel--description > h2::before,
    .woocommerce-tabs .woocommerce-Tabs-panel--additional_information > h2::before,
    .compatibility-tab-content__eyebrow,
    .compatibility-tab-section__eyebrow {
        font-size: 0.68rem;
    }

    .woocommerce-tabs .woocommerce-product-attributes,
    .woocommerce-tabs .woocommerce-product-attributes tbody {
        display: block;
    }

    .woocommerce-tabs .woocommerce-product-attributes tr {
        display: block;
        margin-bottom: 10px;
    }

    .woocommerce-tabs .woocommerce-product-attributes th,
    .woocommerce-tabs .woocommerce-product-attributes td {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 14px;
    }

    .woocommerce-tabs .woocommerce-product-attributes td {
        margin-top: 6px;
    }

    .compatibility-tab-content {
        gap: 14px;
    }

    .compatibility-tab-content__header {
        gap: 12px;
    }

    .compatibility-tab-content__icon {
        width: 42px;
        height: 42px;
    }

    .compatibility-tab-content__icon svg {
        width: 18px;
        height: 18px;
    }

    .compatibility-tab-content__description {
        font-size: 0.84rem;
    }

    .compatibility-tab-content__sections {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .compatibility-tab-section {
        padding: 14px;
        border-radius: 16px;
    }

    .compatibility-brands,
    .compatibility-models-list {
        gap: 8px;
    }

    .related.products {
        margin: var(--spacing-2xl) 0 0;
    }

    .related.products>h2 {
        font-size: 1.375rem;
        margin-bottom: var(--spacing-md);
    }

    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .woocommerce-cart .actions {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .woocommerce-cart .coupon {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        padding: 0.95rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7faf8 100%);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    }

    .woocommerce-cart .coupon .input-text,
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row select,
    .woocommerce form .form-row textarea {
        width: 100% !important;
        min-height: 46px;
        font-size: 16px;
    }

    .woocommerce-cart .coupon .input-text {
        min-height: 52px;
        padding: 0 1rem !important;
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 16px;
        background: #ffffff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        color: var(--text-primary);
        transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    }

    .woocommerce-cart .coupon .input-text::placeholder {
        color: rgba(15, 23, 42, 0.46);
    }

    .woocommerce-cart .coupon .input-text:focus {
        border-color: rgba(114, 181, 77, 0.7);
        box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.16);
        background: #ffffff;
        outline: none;
    }

    .woocommerce form .form-row textarea {
        min-height: 110px;
    }

    .woocommerce-cart .actions .button,
    .woocommerce-cart .coupon .button,
    .woocommerce-checkout button.button,
    .woocommerce-checkout #place_order {
        width: 100%;
        min-height: 46px;
    }

    .woocommerce-cart .coupon .button {
        min-height: 52px;
        border: 1px solid rgba(114, 181, 77, 0.28);
        border-radius: 16px;
        background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
        box-shadow: 0 14px 26px rgba(114, 181, 77, 0.22);
        color: var(--text-primary);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
    }

    .woocommerce-cart .coupon .button:not(:disabled):not(.disabled):focus,
    .woocommerce-cart .coupon .button:not(:disabled):not(.disabled):focus-visible,
    .woocommerce-cart .coupon .button:not(:disabled):not(.disabled):hover {
        border-color: rgba(114, 181, 77, 0.34);
        background: linear-gradient(180deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
        box-shadow: 0 16px 30px rgba(114, 181, 77, 0.24), 0 0 0 4px rgba(114, 181, 77, 0.12);
        color: var(--text-primary);
        outline: none;
    }

    .woocommerce-cart .coupon .button:disabled,
    .woocommerce-cart .coupon .button.disabled,
    .woocommerce-cart .coupon .button[disabled] {
        border-color: rgba(114, 181, 77, 0.22);
        background: linear-gradient(180deg, rgba(114, 181, 77, 0.2) 0%, rgba(114, 181, 77, 0.12) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
        color: rgba(15, 23, 42, 0.82);
        opacity: 1;
        cursor: not-allowed;
    }

    .woocommerce-cart .coupon .button:active {
        transform: translateY(1px);
    }

    .woocommerce-cart .coupon .coupon-error-notice {
        margin-top: 0.15rem;
        font-size: 0.78rem;
        line-height: 1.45;
        color: #b42318;
    }

    .woocommerce-cart .cart-collaterals .cart_totals,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout #customer_details {
        padding: var(--spacing-md);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-md);
        background: var(--card-bg);
    }
}

@media (max-width: 480px) {
    .cb-shop-container {
        padding-top: var(--spacing-sm);
    }

    .products .product .woocommerce-LoopProduct-link img,
    .products .product img {
        height: 210px;
    }

    .shop-title {
        font-size: 1.25rem;
    }

    .related.products ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Mobile Sticky Add To Cart Bar
   ========================================================================== */
.mobile-atc-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-atc-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1300;
        padding: var(--spacing-sm) var(--container-padding) calc(var(--spacing-sm) + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(120%);
        transition: transform var(--transition-base);
        pointer-events: none;
    }

    .mobile-atc-bar.is-visible {
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-atc-bar__content {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .mobile-atc-bar__meta {
        flex: 1;
        min-width: 0;
    }

    .mobile-atc-bar__title {
        font-size: var(--font-size-xs);
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }

    .mobile-atc-bar__price {
        font-size: var(--font-size-base);
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .mobile-atc-bar__price del {
        color: var(--text-muted);
        margin-right: 6px;
        font-size: var(--font-size-sm);
    }

    .mobile-atc-bar__price ins {
        text-decoration: none;
    }

    .mobile-atc-bar__button {
        min-width: 156px;
        min-height: 46px;
        border: none;
        border-radius: var(--border-radius-md);
        background: var(--primary-green);
        color: var(--text-primary);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        padding: 0 var(--spacing-lg);
    }

    .mobile-atc-bar__button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    body.single-product.has-mobile-atc-bar {
        padding-bottom: 92px;
    }
}

@media (max-width: 480px) {
    .mobile-atc-bar__button {
        min-width: 132px;
        padding: 0 var(--spacing-md);
        font-size: var(--font-size-sm);
    }
}

/* ==========================================================================
   Brands Page
   ========================================================================== */
.brands-page .page-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.brands-page .page-title {
    margin-bottom: var(--spacing-sm);
}

.brands-page .page-description {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
}

.brands-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.brand-card-large {
    height: 150px;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.brand-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ==========================================================================
   Models Page
   ========================================================================== */
.models-page .page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.models-page .page-title {
    margin-bottom: var(--spacing-sm);
}

.models-page .page-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

.models-page-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.models-page-summary-item {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* Models Search */
.models-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.models-search-branding {
    display: none;
}

.models-search {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
}

.models-search:focus-within {
    border-color: var(--primary-green);
    background: var(--primary-bg);
    box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1);
}

.models-search svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.models-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    outline: none;
}

.models-search-input::placeholder {
    color: var(--text-muted);
}

.models-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.models-search-clear.visible {
    display: flex;
}

.models-search-clear:hover {
    background: var(--text-muted);
    color: var(--primary-bg);
}

/* Sticky Brand Navigation */
.models-brand-nav {
    display: none;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xl);
    /* Ensure no overflow issues with parent */
    width: 100%;
    left: 0;
    right: 0;
}

.models-brand-nav.is-hidden {
    display: none;
}

/* Shadow when scrolled (added via JS) */
.models-brand-nav.is-stuck {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Account for admin bar */
.admin-bar .models-brand-nav {
    top: calc(var(--header-height) + 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .models-brand-nav {
        top: calc(var(--header-height) + 46px);
    }
}

/* Container inside nav */
.models-brand-nav-container {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-md) var(--container-padding);
}

/* Scroll Fade Indicators */
.brand-nav-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.brand-nav-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg) 0%, var(--primary-bg) 20%, transparent 100%);
}

.brand-nav-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg) 0%, var(--primary-bg) 20%, transparent 100%);
}

.brand-nav-fade-left.visible,
.brand-nav-fade-right.visible {
    opacity: 1;
}

/* Inner scroll container */
.models-brand-nav-inner {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-xs) 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.models-brand-nav-inner::-webkit-scrollbar {
    display: none;
}

/* Brand Tab Items */
.brand-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    min-width: 100px;
    flex-shrink: 0;
    position: relative;
    outline: none;
}

.brand-nav-item.hidden {
    display: none;
}

/* Hover State */
.brand-nav-item:hover {
    background: var(--secondary-bg);
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

/* Focus State (Accessibility) */
.brand-nav-item:focus-visible {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.3);
}

/* Active State - More Prominent */
.brand-nav-item.active {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, rgba(0, 230, 118, 0.15) 100%);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Brand Logo in Nav */
.brand-nav-logo {
    height: 28px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-nav-item:hover .brand-nav-logo,
.brand-nav-item.active .brand-nav-logo {
    transform: scale(1.05);
}

/* Brand Name (fallback when no logo) */
.brand-nav-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    letter-spacing: -0.01em;
}

.brand-nav-item.active .brand-nav-name {
    color: var(--text-primary);
}

/* Screen reader text for logos */
.brand-nav-name-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* No Results Message */
.models-no-results {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-2xl);
}

.models-no-results-icon {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.models-no-results h3 {
    margin-bottom: var(--spacing-sm);
}

.models-no-results p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Brand Models Section */
.brand-models-section {
    margin-bottom: var(--spacing-2xl);
    scroll-margin-top: calc(var(--header-height) + 80px);
}

.admin-bar .brand-models-section {
    scroll-margin-top: calc(var(--header-height) + 112px);
}

.brand-models-section.hidden {
    display: none;
}

.brand-section-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.brand-section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.brand-section-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.brand-section-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.brand-section-link:hover {
    color: var(--primary-green-dark);
}

.brand-section-link:hover .brand-section-logo {
    transform: scale(1.05);
}

.brand-section-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.brand-section-arrow svg {
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.brand-section-link:hover .brand-section-arrow {
    color: var(--primary-green-dark);
}

.brand-section-link:hover .brand-section-arrow svg {
    opacity: 1;
    transform: translateX(0);
}

.brand-section-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.brand-section-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 24, 39, 0.16);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.brand-section-toggle:focus-visible {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.18);
}

.brand-section-toggle svg {
    transition: transform var(--transition-fast);
}

.brand-models-section.is-expanded .brand-section-toggle svg {
    transform: rotate(180deg);
}

.brand-section-logo {
    height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-section-name {
    font-weight: 700;
}

.brand-section-meta {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.models-grid[hidden] {
    display: none !important;
}

.model-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--card-bg);
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.model-card:hover {
    background: var(--primary-green-light);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.model-card.hidden {
    display: none;
}

.model-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.model-name {
    font-weight: 600;
    color: var(--text-primary);
}

.model-count {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(17, 24, 39, 0.04);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.model-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.model-card:hover .model-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-green-dark);
}

@media (min-width: 769px) {
    .models-page {
        background: linear-gradient(180deg, #ffffff 0%, #f6faf7 24%, #ffffff 100%);
        padding-bottom: var(--spacing-2xl);
    }

    .models-page .page-header {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.85fr);
        grid-template-areas:
            'title search'
            'description search'
            'summary search';
        align-items: center;
        gap: 0.9rem 2.25rem;
        overflow: hidden;
        margin-bottom: calc(var(--spacing-xl) + 0.5rem);
        padding: clamp(2rem, 4vw, 2.75rem);
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.96) 54%, rgba(240, 252, 244, 0.88) 100%);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
        text-align: left;
        isolation: isolate;
    }

    .models-page .page-header::before,
    .models-page .page-header::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .models-page .page-header::before {
        inset: -20% -4% auto auto;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, rgba(0, 230, 118, 0) 72%);
    }

    .models-page .page-header::after {
        inset: auto auto -34% -10%;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 74%);
    }

    .models-page .page-title,
    .models-page .page-description,
    .models-page-summary,
    .models-search-wrapper {
        position: relative;
        z-index: 1;
    }

    .models-page .page-title {
        grid-area: title;
        max-width: 12ch;
        margin-bottom: 0;
        font-size: clamp(2.65rem, 5vw, 4rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
    }

    .models-page .page-description {
        grid-area: description;
        max-width: 54ch;
        margin-bottom: 0;
        font-size: 1.02rem;
        line-height: 1.75;
        color: var(--text-secondary);
    }

    .models-page-summary {
        grid-area: summary;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 0.35rem;
    }

    .models-page-summary-item {
        min-height: 40px;
        padding: 0.55rem 0.95rem;
        border-color: rgba(17, 24, 39, 0.08);
        background: rgba(255, 255, 255, 0.84);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
        color: var(--text-secondary);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .models-search-wrapper {
        grid-area: search;
        max-width: none;
        margin: 0;
        align-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.85rem;
    }

    .models-search-branding {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-inline: 0.5rem;
    }

    .models-search-logo {
        display: block;
        width: auto;
        max-width: min(360px, 90%);
        height: clamp(56px, 6.4vw, 80px);
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
    }

    .models-search {
        min-height: 72px;
        width: 100%;
        padding: 0.95rem 1.15rem;
        gap: 0.9rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.74);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .models-search:focus-within {
        background: rgba(255, 255, 255, 0.97);
        border-color: rgba(0, 200, 83, 0.3);
        box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.09), 0 20px 38px rgba(15, 23, 42, 0.12);
    }

    .models-search svg {
        color: rgba(15, 23, 42, 0.44);
    }

    .models-search-input {
        font-size: 1.02rem;
    }

    .models-search-input::placeholder {
        color: rgba(15, 23, 42, 0.46);
    }

    .models-search-clear {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(17, 24, 39, 0.08);
        background: rgba(15, 23, 42, 0.05);
    }

    .models-brand-nav {
        display: block;
        top: var(--header-height);
        position: sticky;
        isolation: isolate;
        margin-top: 0;
        margin-bottom: calc(var(--spacing-xl) + 0.25rem);
        border-top: none;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 -20px 0 #ffffff;
        transition: box-shadow 180ms ease, border-color 180ms ease;
    }

    .models-brand-nav::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -20px;
        height: 20px;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .models-brand-nav::after {
        content: '';
        position: absolute;
        inset: 0;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .admin-bar .models-brand-nav {
        top: calc(var(--header-height) + 32px);
    }

    .models-brand-nav.is-stuck {
        box-shadow: 0 -20px 0 #ffffff, 0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .models-brand-nav-container {
        position: relative;
        z-index: 1;
        padding: 0.25rem var(--container-padding) 0.3rem;
    }

    .models-brand-nav-inner {
        gap: 0.75rem;
        padding: 0 0 0.1rem;
        align-items: flex-start;
    }

    .brand-nav-fade-left {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.7) 26%, rgba(255, 255, 255, 0) 100%);
    }

    .brand-nav-fade-right {
        background: linear-gradient(to left, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.7) 26%, rgba(255, 255, 255, 0) 100%);
    }

    .brand-nav-item {
        min-height: 44px;
        min-width: auto;
        padding: 0.62rem 1rem;
        border-width: 1px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
        transition: background 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 180ms ease;
    }

    .brand-nav-item:hover {
        border-color: rgba(17, 24, 39, 0.14);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.07);
    }

    .brand-nav-item.active {
        transform: none;
        box-shadow: 0 8px 18px rgba(0, 200, 83, 0.14);
    }

    .brand-nav-name {
        font-size: 0.9rem;
    }

    .models-no-results {
        border: 1px solid rgba(17, 24, 39, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 251, 0.96) 100%);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    .models-by-brand {
        display: grid;
        gap: var(--spacing-xl);
    }

    .brand-models-section {
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
        padding: clamp(1.5rem, 2.4vw, 2rem);
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.76);
        scroll-margin-top: calc(var(--header-height) + 116px);
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .admin-bar .brand-models-section {
        scroll-margin-top: calc(var(--header-height) + 148px);
    }

    .brand-models-section::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 1px;
        background: linear-gradient(90deg, rgba(0, 230, 118, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .brand-models-section:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 200, 83, 0.14);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .brand-section-title {
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        font-size: 1.4rem;
    }

    .brand-section-header {
        align-items: center;
        gap: 1.1rem;
    }

    .brand-section-link {
        gap: 1rem;
    }

    .brand-section-copy {
        gap: 0.45rem;
    }

    .brand-section-logo {
        height: 36px;
        max-width: 108px;
    }

    .brand-section-name {
        font-size: clamp(1.25rem, 1.8vw, 1.55rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
    }

    .brand-section-meta {
        display: inline-flex;
        align-items: center;
        align-self: flex-start;
        min-height: 32px;
        padding: 0.35rem 0.75rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 999px;
        background: rgba(17, 24, 39, 0.04);
        color: var(--text-secondary);
        font-size: 0.84rem;
        font-weight: 600;
    }

    .brand-section-arrow {
        width: 2.75rem;
        height: 2.75rem;
        margin-left: auto;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    }

    .brand-section-arrow svg {
        opacity: 1;
        transform: none;
    }

    .brand-section-link:hover .brand-section-arrow {
        transform: translateX(2px);
        border-color: rgba(0, 200, 83, 0.16);
        background: rgba(0, 230, 118, 0.1);
        color: var(--text-primary);
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .model-card {
        min-height: 92px;
        padding: 1rem 1.1rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 250, 251, 0.94) 100%);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .model-card:hover,
    .model-card:focus-visible {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 250, 246, 0.97) 100%);
        border-color: rgba(0, 200, 83, 0.24);
        box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        transform: translateY(-3px);
    }

    .model-copy {
        gap: 0.45rem;
    }

    .model-name {
        font-size: 1rem;
        line-height: 1.35;
        letter-spacing: -0.01em;
    }

    .model-count {
        padding: 0.28rem 0.65rem;
        background: rgba(15, 23, 42, 0.04);
        font-size: 0.82rem;
    }

    .model-arrow {
        width: 2rem;
        height: 2rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.04);
        opacity: 1;
        transform: none;
    }

    .model-card:hover .model-arrow,
    .model-card:focus-visible .model-arrow {
        color: var(--text-primary);
        transform: translateX(2px);
        background: rgba(0, 230, 118, 0.14);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    @keyframes modelsAccordionReveal {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .models-page {
        overflow-x: clip;
    }

    .models-page .page-header {
        position: relative;
        overflow: hidden;
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-xl);
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 251, 0.96) 100%);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        text-align: left;
    }

    .models-page .page-header::before {
        content: '';
        position: absolute;
        inset: -30% auto auto 58%;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 230, 118, 0.16) 0%, rgba(0, 230, 118, 0) 72%);
        pointer-events: none;
    }

    .models-page .page-title,
    .models-page .page-description,
    .models-page-summary,
    .models-search-wrapper {
        position: relative;
        z-index: 1;
    }

    .models-page .page-title {
        margin-bottom: 0.55rem;
        font-size: clamp(1.9rem, 7vw, 2.35rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .models-page .page-description {
        max-width: 30ch;
        margin-bottom: var(--spacing-md);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .models-page-summary {
        justify-content: flex-start;
        margin-bottom: var(--spacing-lg);
    }

    .models-page-summary-item {
        min-height: 34px;
        padding: 0.38rem 0.78rem;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(12px);
    }

    .models-search-input::placeholder {
        font-size: var(--font-size-sm);
    }

    .models-search-wrapper {
        max-width: none;
    }

    .models-search {
        min-height: 58px;
        padding: 0.9rem 1rem;
        gap: 0.85rem;
        border-width: 1px;
        border-color: rgba(17, 24, 39, 0.08);
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .models-search:focus-within {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1), 0 16px 34px rgba(15, 23, 42, 0.12);
    }

    .models-search svg {
        color: rgba(15, 23, 42, 0.5);
    }

    .models-search-input {
        font-size: 16px;
    }

    .models-search-clear {
        width: 34px;
        height: 34px;
        background: rgba(15, 23, 42, 0.06);
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

    .models-brand-nav {
        display: block;
        margin-bottom: var(--spacing-lg);
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        isolation: isolate;
        transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .models-brand-nav.is-stuck {
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 -16px 0 #ffffff, 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .models-brand-nav.is-stuck::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -16px;
        height: 16px;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .models-brand-nav.is-stuck::after {
        content: '';
        position: absolute;
        inset: 0;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .models-brand-nav-container {
        position: relative;
        z-index: 1;
        padding: 0.15rem var(--container-padding) var(--spacing-sm);
    }

    .models-brand-nav-inner {
        position: relative;
        z-index: 1;
        gap: 0.65rem;
        padding: 0.15rem 0 0.1rem;
    }

    .brand-nav-item {
        z-index: 1;
        min-height: 44px;
        min-width: auto;
        padding: 0.7rem 1rem;
        border-width: 1px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
        color: var(--text-primary);
        transition: background 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 180ms ease;
    }

    .brand-nav-item.active {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0, 200, 83, 0.18);
    }

    .brand-nav-logo {
        height: 22px;
    }

    .brand-nav-name {
        font-size: var(--font-size-sm);
        position: relative;
        z-index: 1;
        color: var(--text-primary);
    }

    /* Fade indicators slightly narrower on mobile */
    .brand-nav-fade {
        width: 40px;
    }

    .models-brand-nav.is-hidden {
        display: none;
    }

    .models-no-results {
        padding: var(--spacing-2xl) var(--spacing-lg);
        border: 1px solid rgba(17, 24, 39, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 250, 0.95) 100%);
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    }

    .brand-models-section {
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-lg);
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
        scroll-margin-top: calc(var(--header-height) + 88px);
        transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, padding-bottom 180ms ease;
    }

    .admin-bar .brand-models-section {
        scroll-margin-top: calc(var(--header-height) + 122px);
    }

    .brand-section-title {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .brand-section-header {
        gap: 0.85rem;
    }

    .brand-section-link {
        gap: 0.85rem;
    }

    .brand-section-link .brand-section-arrow {
        display: none;
    }

    .brand-section-toggle {
        display: inline-flex;
        width: 2.25rem;
        height: 2.25rem;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
        transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
    }

    .brand-models-section.is-expanded {
        border-color: rgba(0, 200, 83, 0.14);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 248, 0.97) 100%);
        box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
    }

    .brand-models-section.is-expanded .brand-section-toggle {
        border-color: rgba(0, 200, 83, 0.18);
        background: rgba(0, 230, 118, 0.1);
        box-shadow: 0 12px 24px rgba(0, 200, 83, 0.12);
    }

    .models-grid {
        margin-top: var(--spacing-md);
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .brand-models-section.is-expanded .models-grid:not([hidden]) {
        animation: modelsAccordionReveal 220ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .brand-section-logo {
        height: 28px;
        max-width: 74px;
    }

    .brand-section-name {
        font-size: 1.08rem;
        line-height: 1.18;
    }

    .brand-section-meta {
        font-size: 0.82rem;
    }

    .brand-section-arrow {
        width: 2.25rem;
        height: 2.25rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    }

    .brand-section-arrow svg {
        opacity: 1;
        transform: none;
    }

    .brand-models-section.is-collapsed {
        padding-bottom: var(--spacing-md);
    }

    .model-card {
        min-height: 74px;
        padding: 0.95rem 1rem;
        border-color: rgba(17, 24, 39, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    }

    .model-card:hover,
    .model-card:focus-visible {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 200, 83, 0.22);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
        transform: translateY(-1px);
    }

    .model-name {
        font-size: 0.98rem;
        line-height: 1.3;
    }

    .model-count {
        padding: 0.22rem 0.58rem;
        background: rgba(15, 23, 42, 0.05);
        font-size: 0.75rem;
    }

    .model-arrow {
        width: 2rem;
        height: 2rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.05);
        opacity: 1;
        transform: none;
    }

    .model-card:hover .model-arrow,
    .model-card:focus-visible .model-arrow {
        color: var(--text-primary);
        transform: translateX(1px);
        background: rgba(0, 230, 118, 0.14);
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .brand-nav-item {
        min-height: 52px;
    }

    .brand-nav-item:hover {
        transform: none;
        /* Disable hover transform on touch */
    }

    .brand-nav-item:active {
        transform: scale(0.992);
        background: var(--secondary-bg);
    }

    .model-card:hover,
    .model-card:focus-visible {
        transform: none;
    }

    .model-card:active {
        transform: scale(0.99);
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-page {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 38%, #ffffff 100%);
}

.contact-page .page-header {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.96) 100%);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    inset: -24% -4% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, rgba(0, 230, 118, 0) 72%);
    pointer-events: none;
}

.contact-page .page-header>* {
    position: relative;
    z-index: 1;
}

.contact-eyebrow,
.contact-section-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 var(--spacing-sm);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green-dark);
}

.contact-page .page-title {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(2.15rem, 5vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.contact-page-intro,
.contact-form-intro,
.contact-info-intro,
.contact-map-intro {
    max-width: 60ch;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-page-intro {
    margin-bottom: var(--spacing-lg);
    font-size: 1.02rem;
}

.contact-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-highlight-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: calc(var(--spacing-xl) + 0.5rem);
    align-items: start;
}

.contact-surface {
    padding: var(--spacing-xl);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-section-heading {
    margin-bottom: var(--spacing-xl);
}

.contact-form-section h2,
.contact-info-section h2,
.contact-map-section h2 {
    margin-bottom: var(--spacing-xs);
}

.contact-form-intro {
    margin-bottom: 0;
}

.contact-info-intro,
.contact-map-intro {
    margin-bottom: 0;
}

.cb-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.cb-contact-form .form-group {
    margin-bottom: var(--spacing-lg);
}

.cb-contact-form label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cb-contact-form label .required {
    color: #e53e3e;
}

.cb-contact-form input,
.cb-contact-form textarea,
.cb-contact-form select {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: var(--font-size-base);
    font-family: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.cb-contact-form input::placeholder,
.cb-contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.cb-contact-form input:hover,
.cb-contact-form textarea:hover,
.cb-contact-form select:hover {
    border-color: rgba(17, 24, 39, 0.18);
}

.cb-contact-form input:focus,
.cb-contact-form textarea:focus,
.cb-contact-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--primary-bg);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.12), 0 12px 24px rgba(15, 23, 42, 0.06);
}

.cb-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cb-contact-form textarea {
    resize: vertical;
    min-height: 170px;
    padding-top: 1rem;
}

.cb-contact-form .form-group--privacy {
    padding-top: var(--spacing-sm);
}

.cb-contact-form .form-note--privacy {
    margin-bottom: var(--spacing-md);
}

.cb-contact-form .contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin: 0;
    cursor: pointer;
}

.cb-contact-form .contact-consent__input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    margin: 0.15rem 0 0;
    padding: 0;
    border-radius: 6px;
    flex: 0 0 20px;
    accent-color: var(--primary-green);
    box-shadow: none;
}

.cb-contact-form .contact-consent__copy {
    display: inline-block;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-primary);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.form-note {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

.btn-submit {
    min-width: 180px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 200, 83, 0.18);
}

.btn-submit .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex !important;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Form Messages */
.form-messages {
    margin-top: var(--spacing-lg);
}

.form-success,
.form-error {
    display: none;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: 18px;
}

.form-success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--primary-green-dark);
}

.form-success svg {
    stroke: var(--primary-green);
    flex-shrink: 0;
}

.form-error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #c53030;
}

.form-error svg {
    stroke: #e53e3e;
    flex-shrink: 0;
}

.form-success strong,
.form-error strong {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.form-success p,
.form-error p {
    margin: 0;
    font-size: var(--font-size-sm);
}

.form-messages.show-success .form-success,
.form-messages.show-error .form-error {
    display: flex;
}

/* Form submitted state */
.cb-contact-form.form-submitted .form-row,
.cb-contact-form.form-submitted .form-group,
.cb-contact-form.form-submitted .form-footer {
    display: none;
}

.cb-contact-form.form-submitted .form-messages {
    display: block !important;
}

.contact-info-card {
    display: grid;
    gap: var(--spacing-lg);
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.84) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-quick-action--email {
    grid-column: 1 / -1;
}

.contact-quick-action {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 88px;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.96) 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.contact-quick-action-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-quick-action-value {
    font-size: clamp(0.82rem, 2.8vw, 1rem);
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: break-word;
    min-width: 0;
}

.contact-info-item {
    margin-bottom: 0;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-info-item h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--primary-green-dark);
}

/* Contact Map Section */
.contact-map-section {
    margin-top: var(--spacing-2xl);
}

.contact-map {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    overflow: hidden;
    background: var(--primary-bg);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-map--gated {
    min-height: 450px;
}

.contact-map-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 450px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background:
        radial-gradient(circle at top right, rgba(0, 200, 83, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 245, 0.98) 100%);
}

.contact-map-placeholder__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green-dark);
}

.contact-map-placeholder__title {
    margin: 0 0 0.9rem;
    max-width: 24ch;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.15;
}

.contact-map-placeholder__text {
    margin: 0;
    max-width: 62ch;
    color: var(--text-muted);
    line-height: 1.75;
}

.contact-map-placeholder__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.contact-map__button {
    min-height: 52px;
    padding-inline: 1.3rem;
}

.contact-map__link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
    color: var(--primary-green-dark);
}

@media (hover: hover) {

    .contact-quick-action:hover,
    .contact-quick-action:focus-visible {
        transform: translateY(-2px);
        border-color: rgba(0, 200, 83, 0.22);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(0, 200, 83, 0.06);
        color: var(--primary-green-dark);
    }
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .contact-page .page-header {
        margin-bottom: var(--spacing-lg);
        padding: 1.4rem;
        border-radius: 24px;
    }

    .contact-page .page-header::before {
        inset: -16% -10% auto auto;
        width: 180px;
        height: 180px;
    }

    .contact-page .page-title {
        font-size: clamp(2rem, 8vw, 2.45rem);
    }

    .contact-page-intro {
        max-width: none;
        margin-bottom: var(--spacing-md);
        font-size: 0.95rem;
    }

    .contact-hero-highlights {
        gap: 0.5rem;
    }

    .contact-highlight-pill {
        min-height: 36px;
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-info-section {
        order: -1;
    }

    .contact-surface {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .contact-section-heading {
        margin-bottom: var(--spacing-lg);
    }

    .contact-quick-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-quick-action {
        min-height: 74px;
    }

    .contact-map iframe {
        height: 320px;
    }

    .contact-map--gated,
    .contact-map-placeholder {
        min-height: 320px;
    }

    .contact-map-placeholder__actions {
        align-items: stretch;
    }

    .contact-map__button {
        width: 100%;
    }

    .cb-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn-submit {
        width: 100%;
    }

    .form-note {
        text-align: center;
        margin-top: 0;
    }
}

@media (hover: none) and (pointer: coarse) {
    .contact-quick-action:active {
        transform: scale(0.992);
        border-color: rgba(0, 200, 83, 0.22);
    }

    .btn-submit:active {
        transform: scale(0.992);
    }
}

/* ==========================================================================
   WooCommerce My Account
   ========================================================================== */
.woocommerce-account .site-main {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 38%, #ffffff 100%);
}

.woocommerce-account .entry-header {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-xl) 0 var(--spacing-xl);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.96) 100%);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.woocommerce-account .entry-header::before {
    content: '';
    position: absolute;
    inset: -24% -4% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, rgba(0, 230, 118, 0) 72%);
    pointer-events: none;
}

.woocommerce-account .entry-header>* {
    position: relative;
    z-index: 1;
}

.cb-account-eyebrow,
.cb-account-summary__eyebrow,
.cb-account-nav__eyebrow,
.cb-account-dashboard__eyebrow,
.cb-account-section-intro__eyebrow,
.cb-account-auth__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 var(--spacing-sm);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green-dark);
}

.woocommerce-account .entry-title,
.cb-account-summary__title,
.cb-account-dashboard h2,
.cb-account-auth__intro h2,
.cb-account-panel h2 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(2.15rem, 5vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.cb-account-page-intro,
.cb-account-summary__text,
.cb-account-nav__description,
.cb-account-dashboard__lead,
.cb-account-auth__intro p,
.cb-account-section-intro p {
    max-width: 64ch;
    color: var(--text-muted);
    line-height: 1.7;
}

.cb-account-page-intro {
    margin-bottom: var(--spacing-lg);
    font-size: 1.02rem;
}

.cb-account-hero-highlights,
.cb-account-auth__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cb-account-highlight-pill,
.cb-account-auth__pill,
.cb-account-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cb-account-status-pill {
    border-color: rgba(114, 181, 77, 0.18);
    background: rgba(114, 181, 77, 0.14);
    color: #052e16;
}

.cb-account-summary__meta .cb-account-status-pill,
.cb-account-dashboard__status .cb-account-status-pill {
    border-color: rgba(190, 242, 100, 0.42);
    background: linear-gradient(180deg, rgba(22, 101, 52, 0.22) 0%, rgba(34, 197, 94, 0.16) 100%);
    color: rgba(236, 253, 245, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 20px rgba(15, 23, 42, 0.16);
}

.woocommerce-account .entry-content {
    margin-bottom: var(--spacing-2xl);
}

.cb-account-shell,
.cb-account-dashboard {
    display: grid;
    gap: var(--spacing-xl);
}

.cb-account-summary,
.cb-account-panel,
.cb-account-surface,
.cb-account-nav__card,
.cb-account-auth__card,
.woocommerce-account #customer_login > .u-column1,
.woocommerce-account #customer_login > .u-column2 {
    padding: var(--spacing-xl);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.cb-account-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    gap: calc(var(--spacing-xl) + 0.25rem);
    align-items: start;
}

.cb-account-summary__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.cb-account-summary__text {
    margin-bottom: 0;
}

.cb-account-summary__meta,
.cb-account-dashboard__status {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    padding: var(--spacing-lg);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.92) 100%);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.cb-account-summary__meta-label,
.cb-account-summary__meta-note,
.cb-account-dashboard__status p {
    color: rgba(255, 255, 255, 0.72);
}

.cb-account-summary__meta-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cb-account-summary__meta-value,
.cb-account-dashboard__email {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}

.cb-account-layout {
    display: grid;
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.woocommerce-account .cb-account-layout > .woocommerce-MyAccount-navigation,
.woocommerce-account .cb-account-layout > .woocommerce-MyAccount-content {
    float: none;
    width: auto;
    margin: 0;
    min-width: 0;
}

.cb-account-nav {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    width: 100%;
}

.admin-bar .cb-account-nav {
    top: calc(var(--header-height) + 32px + 1rem);
}

.cb-account-nav__description {
    margin-bottom: var(--spacing-lg);
    font-size: 0.96rem;
}

.cb-account-nav ul {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cb-account-nav li {
    margin: 0;
}

.cb-account-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 58px;
    padding: 0.9rem 1rem 0.9rem 4.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.cb-account-nav a::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(114, 181, 77, 0.12);
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transform: translateY(-50%);
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: 'DB';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--orders a::before {
    content: 'OR';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--downloads a::before {
    content: 'DL';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: 'AD';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--payment-methods a::before,
.cb-account-nav .woocommerce-MyAccount-navigation-link--add-payment-method a::before {
    content: 'PM';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: 'ID';
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: 'OUT';
}

.cb-account-nav a:hover,
.cb-account-nav a:focus-visible,
.cb-account-nav .is-active a {
    border-color: rgba(114, 181, 77, 0.28);
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.14) 0%, rgba(114, 181, 77, 0.06) 100%);
    box-shadow: 0 14px 26px rgba(114, 181, 77, 0.14);
    color: #052e16;
    outline: none;
    transform: translateY(-1px);
}

.cb-account-nav .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.cb-account-nav .woocommerce-MyAccount-navigation-link--customer-logout a:focus-visible {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.03) 100%);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
}

.cb-account-panel {
    display: grid;
    gap: var(--spacing-lg);
}

.cb-account-panel > * {
    max-width: 100%;
}

.cb-account-panel h2,
.cb-account-panel h3,
.cb-account-auth__card h2,
.cb-account-auth__intro h2 {
    margin-top: 0;
}

.cb-account-dashboard__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.cb-account-dashboard__lead {
    margin-bottom: 0;
}

.cb-account-section-intro h3,
.cb-account-panel h2 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.cb-account-section-intro--spacious {
    margin-bottom: var(--spacing-md);
}

.cb-account-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.cb-account-action-card {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    min-height: 100%;
    padding: var(--spacing-lg);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.96) 100%);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.cb-account-action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(114, 181, 77, 0.26);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.08);
}

.cb-account-action-card__kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green-dark);
}

.cb-account-action-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.cb-account-action-card p {
    margin: 0;
    color: var(--text-muted);
}

.cb-account-inline-link,
.woocommerce-account .lost_password a,
.woocommerce-account .woocommerce-Address-title .edit,
.woocommerce-account .woocommerce-button.view,
.woocommerce-account .view {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.cb-account-inline-link:hover,
.woocommerce-account .lost_password a:hover,
.woocommerce-account .woocommerce-Address-title .edit:hover,
.woocommerce-account .woocommerce-button.view:hover,
.woocommerce-account .view:hover {
    color: var(--primary-green-dark);
}

.cb-account-auth {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.cb-account-recovery {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.cb-account-auth__intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cb-account-recovery__intro h2 {
    font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.cb-account-auth__intro p {
    margin-bottom: var(--spacing-lg);
}

.cb-account-recovery__intro p,
.cb-account-recovery__panel .cb-account-section-intro p {
    margin-bottom: var(--spacing-lg);
}

.cb-account-auth__forms #customer_login {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.cb-account-auth__forms.is-single #customer_login,
.cb-account-auth__single {
    grid-template-columns: minmax(0, 1fr);
}

.woocommerce-account #customer_login > .u-column1,
.woocommerce-account #customer_login > .u-column2 {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.cb-account-auth__card {
    height: 100%;
}

.cb-account-recovery__panel {
    display: grid;
    gap: var(--spacing-md);
}

.cb-account-auth__copy,
.cb-account-auth__helper {
    color: var(--text-muted);
    line-height: 1.7;
}

.cb-account-recovery .lost_reset_password {
    display: grid;
    gap: var(--spacing-sm);
}

.cb-account-recovery .lost_reset_password .form-row:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.woocommerce-account form .form-row,
.woocommerce-account form .woocommerce-form-row {
    margin-bottom: var(--spacing-md);
}

.woocommerce-account form label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.woocommerce-account form label .required {
    color: #e53e3e;
}

.woocommerce-account .woocommerce-Input,
.woocommerce-account form .input-text,
.woocommerce-account form select,
.woocommerce-account form textarea {
    width: 100% !important;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.woocommerce-account form textarea {
    min-height: 150px;
    padding-top: 1rem;
    resize: vertical;
}

.woocommerce-account .woocommerce-Input::placeholder,
.woocommerce-account form .input-text::placeholder,
.woocommerce-account form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.woocommerce-account .woocommerce-Input:hover,
.woocommerce-account form .input-text:hover,
.woocommerce-account form select:hover,
.woocommerce-account form textarea:hover {
    border-color: rgba(17, 24, 39, 0.18);
}

.woocommerce-account .woocommerce-Input:focus,
.woocommerce-account form .input-text:focus,
.woocommerce-account form select:focus,
.woocommerce-account form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--primary-bg);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.12), 0 12px 24px rgba(15, 23, 42, 0.06);
}

.woocommerce-account form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.woocommerce-account .button,
.woocommerce-account button.button,
.woocommerce-account input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(114, 181, 77, 0.28);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 14px 26px rgba(114, 181, 77, 0.22);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

.woocommerce-account .button:hover,
.woocommerce-account .button:focus-visible,
.woocommerce-account button.button:hover,
.woocommerce-account button.button:focus-visible,
.woocommerce-account input.button:hover,
.woocommerce-account input.button:focus-visible {
    border-color: rgba(114, 181, 77, 0.34);
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    box-shadow: 0 16px 30px rgba(114, 181, 77, 0.24), 0 0 0 4px rgba(114, 181, 77, 0.12);
    color: var(--text-primary);
    outline: none;
    transform: translateY(-1px);
}

.woocommerce-account .button:disabled,
.woocommerce-account .button.disabled,
.woocommerce-account .button[disabled],
.woocommerce-account input.button:disabled {
    border-color: rgba(114, 181, 77, 0.22);
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.2) 0%, rgba(114, 181, 77, 0.12) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: rgba(15, 23, 42, 0.82);
    opacity: 1;
    cursor: not-allowed;
}

.woocommerce-account .woocommerce-form-login .form-row:last-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.woocommerce-account .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
}

.woocommerce-account .woocommerce-form__input-checkbox {
    width: 18px;
    height: 18px;
}

.woocommerce-account fieldset {
    margin: var(--spacing-lg) 0 0;
    padding: var(--spacing-lg);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
}

.woocommerce-account fieldset legend {
    padding: 0 0.35rem;
    font-weight: 700;
}

.cb-account-form-actions {
    margin-top: var(--spacing-lg);
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
}

.woocommerce-account .woocommerce-Address,
.woocommerce-account .wc_address_i18n {
    padding: var(--spacing-lg);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.woocommerce-account address {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.woocommerce-account table.shop_table,
.woocommerce-account .woocommerce-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td,
.woocommerce-account .woocommerce-table th,
.woocommerce-account .woocommerce-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    text-align: left;
}

.woocommerce-account table.shop_table th,
.woocommerce-account .woocommerce-table th {
    background: #f8fafc;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.woocommerce-account table.shop_table tr:last-child td,
.woocommerce-account .woocommerce-table tr:last-child td {
    border-bottom: 0;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a {
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a:hover {
    color: var(--primary-green-dark);
}

.woocommerce-account .woocommerce-orders-table__cell-order-status {
    font-weight: 700;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-orders-table__cell-order-actions .woocommerce-button {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    box-shadow: none;
    font-size: 0.84rem;
}

.woocommerce-account .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
    color: #166534;
}

.woocommerce-account .woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status {
    color: #b91c1c;
}

.woocommerce-account .woocommerce-pagination,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    margin-top: 0;
}

.wc-block-components-button:not(.is-link),
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-totals-coupon__button,
.wc-block-components-totals-item__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(114, 181, 77, 0.28);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 14px 26px rgba(114, 181, 77, 0.22);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-components-button:not(.is-link):focus-visible,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus-visible,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button:focus-visible,
.wc-block-components-totals-coupon__button:hover,
.wc-block-components-totals-coupon__button:focus-visible,
.wc-block-components-totals-item__button:hover,
.wc-block-components-totals-item__button:focus-visible {
    border-color: rgba(114, 181, 77, 0.34);
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    box-shadow: 0 16px 30px rgba(114, 181, 77, 0.24), 0 0 0 4px rgba(114, 181, 77, 0.12);
    color: var(--text-primary);
    outline: none;
    transform: translateY(-1px);
}

.wc-block-components-button:not(.is-link):disabled,
.wc-block-components-button:not(.is-link)[disabled],
.wc-block-components-checkout-place-order-button:disabled,
.wc-block-cart__submit-button:disabled {
    border-color: rgba(114, 181, 77, 0.22);
    background: linear-gradient(180deg, rgba(114, 181, 77, 0.2) 0%, rgba(114, 181, 77, 0.12) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: rgba(15, 23, 42, 0.82);
    cursor: not-allowed;
    transform: none;
}

.wc-block-components-checkout-return-to-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.wc-block-components-checkout-return-to-cart-button:hover,
.wc-block-components-checkout-return-to-cart-button:focus-visible {
    color: var(--primary-green-dark);
    outline: none;
}

.wc-block-cart__submit-container,
.wc-block-components-checkout-place-order-button {
    width: 100%;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    width: 100%;
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout [role="radio"],
.woocommerce-checkout .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-combobox,
.woocommerce-checkout .wc-block-components-select {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.admin-bar .woocommerce-checkout input,
.admin-bar .woocommerce-checkout select,
.admin-bar .woocommerce-checkout textarea,
.admin-bar .woocommerce-checkout [role="radio"],
.admin-bar .woocommerce-checkout .wc-block-components-text-input,
.admin-bar .woocommerce-checkout .wc-block-components-combobox,
.admin-bar .woocommerce-checkout .wc-block-components-select {
    scroll-margin-top: calc(var(--header-height) + 4.5rem);
}

@media (max-width: 1024px) {
    .cb-account-summary,
    .cb-account-layout,
    .cb-account-dashboard__hero,
    .cb-account-auth,
    .cb-account-recovery {
        grid-template-columns: minmax(0, 1fr);
    }

    .cb-account-nav {
        position: static;
    }
}

@media (max-width: 768px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block:not(.checkout-order-summary-block-fill-wrapper) {
        display: none;
    }

    .woocommerce-account .entry-header {
        margin-bottom: var(--spacing-lg);
        padding: 1.4rem;
        border-radius: 24px;
    }

    .woocommerce-account .entry-header::before {
        inset: -16% -10% auto auto;
        width: 180px;
        height: 180px;
    }

    .woocommerce-account .entry-title,
    .cb-account-summary__title,
    .cb-account-dashboard h2,
    .cb-account-auth__intro h2,
    .cb-account-panel h2 {
        font-size: clamp(2rem, 8vw, 2.45rem);
    }

    .cb-account-page-intro {
        max-width: none;
        margin-bottom: var(--spacing-md);
        font-size: 0.95rem;
    }

    .cb-account-hero-highlights,
    .cb-account-auth__highlights {
        gap: 0.5rem;
    }

    .cb-account-highlight-pill,
    .cb-account-auth__pill,
    .cb-account-status-pill {
        min-height: 36px;
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
    }

    .cb-account-summary,
    .cb-account-panel,
    .cb-account-surface,
    .cb-account-nav__card,
    .cb-account-auth__card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .cb-account-auth__forms #customer_login,
    .woocommerce-account .woocommerce-Addresses,
    .cb-account-action-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-form-login .form-row:last-of-type,
    .cb-account-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-account .button,
    .woocommerce-account button.button,
    .woocommerce-account input.button {
        width: 100%;
    }

    .woocommerce-account table.shop_table,
    .woocommerce-account .woocommerce-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table thead,
    .woocommerce-account .woocommerce-orders-table thead {
        display: none;
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table,
    .woocommerce-account .woocommerce-orders-table {
        display: block;
        border: 0;
        background: transparent;
        overflow: visible;
        white-space: normal;
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table tbody,
    .woocommerce-account .woocommerce-orders-table tbody {
        display: grid;
        gap: var(--spacing-md);
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table tr,
    .woocommerce-account .woocommerce-orders-table tr {
        display: grid;
        gap: 0.7rem;
        padding: 1rem;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table th,
    .woocommerce-account table.shop_table.woocommerce-orders-table td,
    .woocommerce-account .woocommerce-orders-table th,
    .woocommerce-account .woocommerce-orders-table td {
        display: grid;
        grid-template-columns: minmax(88px, 104px) minmax(0, 1fr);
        gap: 0.75rem;
        align-items: start;
        padding: 0;
        border-bottom: 0;
        text-align: left;
        white-space: normal;
    }

    .woocommerce-account table.shop_table.woocommerce-orders-table th::before,
    .woocommerce-account table.shop_table.woocommerce-orders-table td::before,
    .woocommerce-account .woocommerce-orders-table th::before,
    .woocommerce-account .woocommerce-orders-table td::before {
        content: attr(data-title);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .woocommerce-account .woocommerce-orders-table__cell-order-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .woocommerce-account .woocommerce-orders-table__cell-order-actions::before {
        content: attr(data-title);
    }

    .woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
    .woocommerce-account .woocommerce-orders-table__cell-order-actions .woocommerce-button {
        width: 100%;
        justify-content: center;
    }

    .woocommerce-account table.shop_table.order_details,
    .woocommerce-account .woocommerce-table--order-details {
        display: table;
        table-layout: fixed;
        overflow: hidden;
        white-space: normal;
    }

    .woocommerce-account table.shop_table.order_details th,
    .woocommerce-account table.shop_table.order_details td,
    .woocommerce-account .woocommerce-table--order-details th,
    .woocommerce-account .woocommerce-table--order-details td {
        padding: 0.9rem 0.85rem;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        vertical-align: top;
    }

    .woocommerce-account table.shop_table.order_details tfoot th,
    .woocommerce-account .woocommerce-table--order-details tfoot th {
        width: 38%;
    }
}

@media (max-width: 782px) {
    .admin-bar .cb-account-nav {
        top: calc(var(--header-height) + 46px + 1rem);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.no-products-found,
.no-brands,
.no-models,
.no-products {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-muted);
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404 {
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.error-404 p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

.error-search {
    margin-bottom: var(--spacing-xl);
}

.error-search .search-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.error-search .search-input {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ==========================================================================
   Active Filter Tags
   ========================================================================== */
.current-filter {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.25);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
}

.current-filter-label {
    color: var(--text-muted);
    font-weight: 500;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.active-filter span {
    font-weight: 600;
    color: var(--text-primary);
}

.remove-filter {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-muted);
    color: var(--primary-bg);
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-left: 2px;
}

.remove-filter:hover {
    background: #c62828;
    color: white;
    transform: scale(1.1);
}

/* Brand header with logo */
.brand-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.brand-page-logo {
    max-height: 80px;
    width: auto;
}

.shop-header-info {
    flex: 1;
}

.term-description {
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

@media (max-width: 768px) {
    .brand-header {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: center;
        gap: var(--spacing-sm);
    }

    .brand-page-logo {
        max-height: 56px;
    }
}

/* ==========================================================================
   WooCommerce Notices
   ========================================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 3.5rem;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.woocommerce-message {
    background: #e8f5e9;
    border-color: var(--primary-green);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'WooCommerce';
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 1.5rem;
}

.woocommerce-message::before {
    content: "\e015";
    color: var(--primary-green-dark);
}

.woocommerce-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

.woocommerce-info::before {
    content: "\e016";
    color: #2196f3;
}

.woocommerce-error {
    background: #ffebee;
    border-color: #f44336;
}

.woocommerce-error::before {
    content: "\e017";
    color: #f44336;
}

.woocommerce-error li {
    list-style: none;
}

.woocommerce-message .button,
.woocommerce-message .wc-forward {
    order: 10;
    margin-left: auto;
    background: var(--text-primary);
    color: var(--primary-bg);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.woocommerce-message .button:hover,
.woocommerce-message .wc-forward:hover {
    background: var(--primary-green-dark);
    color: var(--text-primary);
}

@keyframes cb-wc-notice-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woocommerce-message.cb-wc-notice {
    width: calc(100% - (2 * var(--container-padding)));
    max-width: var(--container-max-width);
    margin: 0 auto var(--spacing-xl);
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(114, 181, 77, 0.24);
    border-left: 1px solid rgba(114, 181, 77, 0.24);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 255, 251, 0.98) 0%, rgba(243, 249, 246, 0.98) 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    color: var(--text-primary);
    animation: cb-wc-notice-enter 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.woocommerce-message.cb-wc-notice::before {
    content: none;
}

.cb-wc-notice__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(228, 248, 236, 0.95) 0%, rgba(203, 242, 217, 0.95) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 10px 18px rgba(0, 200, 83, 0.12);
    color: var(--primary-green-dark);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.cb-wc-notice__content {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.cb-wc-notice__content--structured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "eyebrow action"
        "title action"
        "copy action";
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.2rem;
    width: 100%;
}

.cb-wc-notice__content--structured .wc-message-eyebrow,
.cb-wc-notice__content--structured .wc-message-product,
.cb-wc-notice__content--structured .wc-message-copy {
    margin: 0;
}

.cb-wc-notice__content--structured .wc-message-eyebrow {
    grid-area: eyebrow;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green-dark);
}

.cb-wc-notice__content--structured .wc-message-product {
    grid-area: title;
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.15rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.cb-wc-notice__content--structured .wc-message-copy {
    grid-area: copy;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.woocommerce-message.cb-wc-notice .button,
.woocommerce-message.cb-wc-notice .wc-forward {
    order: initial;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    justify-self: end;
    align-self: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;
    background: var(--text-primary);
    color: var(--primary-bg);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.cb-wc-notice__content--structured > .button,
.cb-wc-notice__content--structured > .wc-forward {
    grid-area: action;
}

.woocommerce-message.cb-wc-notice .button:hover,
.woocommerce-message.cb-wc-notice .wc-forward:hover {
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-color: rgba(114, 181, 77, 0.3);
    box-shadow: 0 16px 28px rgba(114, 181, 77, 0.22);
    color: #052e16;
    transform: translateY(-1px);
}

.woocommerce-message.cb-wc-notice .button:focus-visible,
.woocommerce-message.cb-wc-notice .wc-forward:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.16), 0 16px 28px rgba(114, 181, 77, 0.2);
}

@media (max-width: 767px) {
    .woocommerce-message.cb-wc-notice {
        width: calc(100% - (2 * var(--container-padding)));
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1.1rem;
    }

    .cb-wc-notice__icon {
        width: 46px;
        height: 46px;
    }

    .cb-wc-notice__content--structured {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "eyebrow"
            "title"
            "copy"
            "action";
    }

    .woocommerce-message.cb-wc-notice .button,
    .woocommerce-message.cb-wc-notice .wc-forward {
        width: 100%;
        justify-self: stretch;
        text-align: center;
        margin-top: 0.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce-message.cb-wc-notice {
        animation: none;
    }

    .woocommerce-message.cb-wc-notice .button,
    .woocommerce-message.cb-wc-notice .wc-forward {
        transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .woocommerce-message.cb-wc-notice .button:hover,
    .woocommerce-message.cb-wc-notice .wc-forward:hover {
        transform: none;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

    .site-header,
    .site-footer,
    .cb-shop-sidebar,
    .header-actions {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .single-product .product {
        display: block;
    }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Pulse animation on first appearance */
@keyframes backToTopPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.back-to-top.pulse {
    animation: backToTopPulse 1s ease-out;
}

/* Mobile positioning */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Image Watermark Overlay */
.cb-product-image-wrap,
.search-result-thumbnail a,
.cb-kit-card__image,
.woocommerce-product-gallery__image {
    --cb-watermark-size: 90%;
    --cb-watermark-opacity: 0.08;
    position: relative;
    display: block;
    overflow: hidden;
}

.cb-product-image-wrap::after,
.search-result-thumbnail a::after,
.cb-kit-card__image::after,
.woocommerce-product-gallery__image::after,
.pswp__zoom-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: var(--cb-watermark-size, 90%);
    height: var(--cb-watermark-size, 90%);
    background-image: url('/wp-content/uploads/2025/11/CB_AutoTech_Black-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: var(--cb-watermark-opacity, 0.08);
    pointer-events: none;
    z-index: 9999;
}

/* Ensure single product gallery image is relative for watermark */
.woocommerce-product-gallery__image {
    position: relative !important;
}

@media (max-width: 768px) {
    .cb-product-image-wrap,
    .search-result-thumbnail a,
    .cb-kit-card__image,
    .woocommerce-product-gallery__image {
        --cb-watermark-size: 82%;
        --cb-watermark-opacity: 0.06;
    }
}

/* ==========================================================================
   Product Gallery Modal
   ========================================================================== */
html.product-gallery-modal-open,
body.product-gallery-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.product-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.94);
}

.product-gallery-modal.active {
    display: flex;
}

.product-gallery-modal__image {
    max-width: min(96vw, 1200px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-gallery-modal__stage {
    position: relative;
    display: inline-flex;
    z-index: 1;
}

.product-gallery-modal__stage::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 90%;
    height: 90%;
    background-image: url('/wp-content/uploads/2025/11/CB_AutoTech_Black-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 2;
}

.product-gallery-modal__close,
.product-gallery-modal__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.product-gallery-modal__close:hover,
.product-gallery-modal__nav:hover {
    background: rgba(28, 28, 28, 0.82);
    border-color: rgba(255, 255, 255, 0.45);
    transform: none;
}

.product-gallery-modal__close {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
}

.product-gallery-modal__nav:hover {
    transform: none;
}

.product-gallery-modal__nav {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    transform: none;
    padding: 0;
}

.product-gallery-modal__nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-gallery-modal__counter {
    position: static;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: var(--font-size-sm);
    line-height: 1;
    min-width: 64px;
    text-align: center;
}

.product-gallery-modal__controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 5;
}

@media (max-width: 768px) {
    .product-gallery-modal {
        padding: 14px 10px calc(18px + env(safe-area-inset-bottom));
        gap: 10px;
    }

    .product-gallery-modal__image {
        max-width: 100%;
        max-height: 76vh;
    }

    .product-gallery-modal__close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .product-gallery-modal__nav {
        width: 44px;
        height: 44px;
    }

    .product-gallery-modal__counter {
        padding: 7px 12px;
    }
}

/* Linked body kit relationship block */
.cb-kit-relationship {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: #ffffff;
}

.cb-kit-relationship h2 {
    margin: 0 0 8px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.cb-kit-relationship p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.55;
}

.cb-kit-relationship p a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cb-kit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cb-kit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    background: var(--card-bg);
    overflow: hidden;
}

.cb-kit-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--secondary-bg);
}

.cb-kit-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.cb-kit-card__content {
    min-width: 0;
}

.cb-kit-card__label {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.cb-kit-card__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.cb-kit-card__title a {
    color: var(--text-primary);
}

.cb-kit-card__price {
    margin: 0 0 10px;
    font-weight: 600;
}

.cb-kit-card__cta.button {
    min-height: 38px;
    line-height: 1;
    padding: 10px 14px;
    font-size: var(--font-size-sm);
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
}

/* Full-width placement on single product pages */
.single-product .product>.cb-kit-relationship {
    grid-column: 1 / -1;
    margin-top: var(--spacing-xl);
}

.single-product .product>.cb-product-merchandising,
.single-product .product>.woocommerce-tabs,
.single-product .product>.related.products {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.single-product .product>.cb-kit-relationship .cb-kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.single-product .product>.cb-product-merchandising+.cb-product-merchandising {
    margin-top: 24px;
}

.cb-product-merchandising {
    position: relative;
    padding: clamp(22px, 2vw, 28px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.cb-product-merchandising h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.cb-product-merchandising h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-green) 0%, rgba(114, 181, 77, 0.18) 100%);
}

.cb-product-merchandising p {
    margin: 0 0 1.15rem;
    max-width: 62ch;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(15, 23, 42, 0.68);
}

.single-product .product>.cb-product-merchandising .cb-kit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cb-product-merchandising .cb-kit-card {
    border-color: rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    padding: 14px;
    gap: 14px;
}

.cb-product-merchandising .cb-kit-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.cb-product-merchandising .cb-kit-card__label {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(15, 23, 42, 0.54);
}

.cb-product-merchandising .cb-kit-card__label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(114, 181, 77, 0.14);
    flex: 0 0 auto;
}

.cb-product-merchandising .cb-kit-card__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.cb-product-merchandising .cb-kit-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.45rem;
    margin: 0.85rem 0 0.95rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cb-product-merchandising .cb-kit-card__price del {
    color: rgba(15, 23, 42, 0.42);
    font-size: 0.82rem;
    font-weight: 500;
}

.cb-product-merchandising .cb-kit-card__price ins {
    color: var(--primary-green-dark);
    text-decoration: none;
}

.cb-product-merchandising .cb-kit-card__cta.button {
    min-height: 46px;
    margin-top: auto;
    padding: 0.85rem 1rem;
    border-radius: 999px;
}

@media (max-width: 1100px) {
    .single-product .product>.cb-product-merchandising .cb-kit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .single-product .product>.cb-kit-relationship .cb-kit-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    padding: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 30px;
    padding: 0 8px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--text-secondary, #666);
    transition: background var(--transition-fast, 0.15s ease),
        color var(--transition-fast, 0.15s ease),
        box-shadow var(--transition-fast, 0.15s ease);
    line-height: 1;
    white-space: nowrap;
}

.lang-switcher__btn:not(.lang-switcher__btn--active) {
    background: rgba(255, 255, 255, 0.18);
}

.lang-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary, #111);
}

.lang-switcher__btn--active {
    background: rgba(0, 230, 118, 0.22);
    color: var(--text-primary, #111);
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.18);
}

.lang-switcher__btn--active:hover {
    background: rgba(0, 230, 118, 0.28);
    color: var(--text-primary, #111);
}

/* Mobile: keep it compact but visible */
@media (max-width: 768px) {
    .lang-switcher {
        gap: 2px;
        padding: 3px;
        border-radius: 22px;
        background: rgba(0, 0, 0, 0.08);
    }

    .lang-switcher__btn {
        min-width: 38px;
        height: 32px;
        padding: 0 10px;
        border-radius: 16px;
        font-size: 11px;
        color: var(--text-secondary, #333);
        transition: background var(--transition-fast, 0.15s ease),
            color var(--transition-fast, 0.15s ease),
            box-shadow var(--transition-fast, 0.15s ease),
            transform 0.12s ease;
        transform: translateY(0) scale(1);
        -webkit-tap-highlight-color: transparent;
    }

    .lang-switcher__btn:not(.lang-switcher__btn--active) {
        background: rgba(255, 255, 255, 0.32);
        color: rgba(0, 0, 0, 0.58);
    }

    .lang-switcher__btn--active {
        background: var(--primary-green, #00E676);
        color: var(--text-primary, #111);
        box-shadow: 0 2px 8px rgba(0, 200, 83, 0.28);
    }

    .lang-switcher__btn--active:hover {
        color: var(--text-primary, #111);
    }

    .lang-switcher__btn:active,
    .lang-switcher__btn--pressed {
        transform: translateY(1px) scale(0.97) !important;
    }

    .lang-switcher__btn--active:active,
    .lang-switcher__btn--active.lang-switcher__btn--pressed {
        box-shadow: 0 1px 5px rgba(0, 200, 83, 0.22) !important;
    }

    .lang-switcher__btn:not(.lang-switcher__btn--active):active,
    .lang-switcher__btn--pressed:not(.lang-switcher__btn--active) {
        background: rgba(255, 255, 255, 0.4) !important;
    }
}

/* Dark-mode aware: header bg is already handled by --primary-bg token */

/* Models page desktop sticky seam safeguard */
@media (min-width: 769px) {
    .models-page .models-brand-nav {
        isolation: isolate !important;
        background: #ffffff !important;
        background-image: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 -20px 0 #ffffff !important;
        transition: box-shadow 180ms ease, border-color 180ms ease !important;
    }

    .models-page .models-brand-nav::before {
        content: '' !important;
        position: absolute;
        left: 0;
        right: 0;
        top: -20px;
        height: 20px;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .models-page .models-brand-nav::after {
        content: '' !important;
        position: absolute;
        inset: 0;
        background: #ffffff;
        z-index: 0;
        pointer-events: none;
    }

    .models-page .models-brand-nav.is-stuck {
        box-shadow: 0 -20px 0 #ffffff, 0 12px 30px rgba(15, 23, 42, 0.08) !important;
    }

    .models-page .models-brand-nav-container,
    .models-page .models-brand-nav-inner {
        position: relative;
        z-index: 1;
    }

    .models-page .models-brand-nav-container {
        padding: 0.25rem var(--container-padding) 0.3rem;
    }

    .models-page .models-brand-nav-inner {
        padding: 0 0 0.1rem;
        gap: 0.65rem;
    }

    .models-page .brand-nav-item {
        min-height: 44px;
        padding: 0.62rem 1rem;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    }

    .models-page .brand-nav-item.active {
        transform: none;
        box-shadow: 0 8px 18px rgba(0, 200, 83, 0.14);
    }

    .models-page .brand-nav-name {
        font-size: 0.9rem;
    }

.models-page .brand-nav-fade {
        z-index: 2;
    }
}

/* ==========================================================================
   Search Results Page
   ========================================================================== */
.search-results-page {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.search-results-page .container {
    display: grid;
    gap: 1.5rem;
}

.cb-search-header {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(0, 200, 83, 0.18), transparent 34%),
        linear-gradient(135deg, #0f172a 0%, #14213d 48%, #1f2a44 100%);
    color: #f8fafc;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.cb-search-header::before,
.cb-search-header::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.6;
}

.cb-search-header::before {
    width: 280px;
    height: 280px;
    right: -110px;
    top: -120px;
    background: rgba(0, 200, 83, 0.13);
}

.cb-search-header::after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.06);
}

.cb-search-header__content,
.cb-search-header__tools {
    position: relative;
    z-index: 1;
}

.cb-search-header__content {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.cb-search-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.72);
}

.cb-search-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.96;
    color: #ffffff;
}

.cb-search-title span,
.cb-search-title strong {
    color: var(--primary-green);
}

.cb-search-subtitle {
    margin: 0;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.8);
}

.cb-search-header__tools {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.cb-search-count {
    display: grid;
    gap: 0.4rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cb-search-count__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.68);
}

.cb-search-count__value {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    line-height: 1;
    color: #ffffff;
}

.cb-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.cb-search-form__input {
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
    color: #ffffff;
}

.cb-search-form__input::placeholder {
    color: rgba(226, 232, 240, 0.58);
}

.cb-search-form__input:focus {
    border-color: rgba(0, 200, 83, 0.44);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.18);
    outline: none;
}

.cb-search-form__submit {
    min-width: 132px;
}

.search-result-count {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.search-results-list {
    display: grid;
    gap: 1rem;
}

.search-results-list .search-result-item {
    display: grid;
    grid-template-columns: 184px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.search-results-list .search-result-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 200, 83, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.search-result-thumbnail {
    position: relative;
}

.search-result-thumbnail a {
    display: block;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #e2e8f0;
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
}

.search-result-content {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-width: 0;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.search-result-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-result-pill--brand {
    background: rgba(0, 200, 83, 0.11);
    color: var(--primary-green-dark);
}

.search-results-list .entry-title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.15;
}

.search-results-list .entry-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.search-results-list .entry-title a:hover {
    color: var(--primary-green-dark);
}

.search-results-list .entry-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
}

.search-result-price {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.search-results-list .entry-summary {
    margin: 0;
}

.search-results-list .entry-summary p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.search-result-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.2rem;
}

.search-result-action {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-green-dark);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.search-result-action:hover,
.search-result-action:focus-visible {
    background: var(--primary-green);
    color: #0f172a;
    transform: translateY(-1px);
    outline: none;
}

.search-results-page .navigation.pagination,
.search-results-page .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.search-results-page .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.search-results-page .page-numbers.current,
.search-results-page .page-numbers:hover,
.search-results-page .page-numbers:focus-visible {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #0f172a;
    transform: translateY(-1px);
    outline: none;
}

.search-results-page .pagination .nav-links {
    margin-top: 0;
}

.search-results-page .no-results {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.search-results-page .no-results__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.search-results-page .search-suggestions h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.search-results-page .search-suggestions ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.search-results-page .search-again .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.search-results-page .search-again .search-input {
    min-height: 50px;
    padding: 0 1rem;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 16px;
    background: #ffffff;
}

.search-results-page .search-again .search-input:focus {
    border-color: rgba(0, 200, 83, 0.44);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.18);
    outline: none;
}

@media (max-width: 960px) {
    .cb-search-header {
        grid-template-columns: 1fr;
    }

    .search-results-list .search-result-item {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 2rem 0 3.5rem;
    }

    .cb-search-header {
        border-radius: 26px;
        padding: 1.35rem;
    }

    .cb-search-form,
    .search-results-page .search-again .search-form {
        grid-template-columns: 1fr;
    }

    .cb-search-form__submit,
    .search-results-page .search-again .btn {
        width: 100%;
    }

    .search-results-list .search-result-item {
        grid-template-columns: 1fr;
    }

    .search-result-thumbnail img {
        min-height: 210px;
    }

    .search-results-page .page-numbers {
        min-width: 42px;
        height: 42px;
    }
}
