:root {
  --cs-blue: #15458f;
  --cs-blue-dark: #002156;
  --cs-blue-light: #2b6db6;
  --cs-text: #17263a;
  --cs-border: #e2e6ec;
  --cs-soft: #f5f7fa;
  --cs-gray: #f3f5f7;
  --cs-white: #ffffff;
  --cs-gold: #f59f00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cs-text);
    background: #fff;
}

/* =========================================================
   GLOBAL HEADER
========================================================= */
.top-nav {
    background: linear-gradient(180deg, #2b6db6 0%, #15458f 100%);
    min-height: 60px;
    z-index: 10;
}

.site-header-container {
    padding-left: clamp(1rem, 4vw, 4.5rem);
    padding-right: clamp(1rem, 4vw, 4.5rem);
}

.site-main-nav-collapse {
    padding-left: 0;
    padding-right: 0;
}

.main-menu {
    align-items: stretch;
}

.main-menu .nav-item {
    padding-left: clamp(0.75rem, 2.4vw, 3rem) !important;
    padding-right: clamp(0.75rem, 2.4vw, 3rem) !important;
}


.main-menu .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    padding: 1rem 1rem;
    position: relative;
}

    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus,
    .main-menu .nav-link.active {
        color: #fff;
    }

        .main-menu .nav-link.active::after,
        .main-menu .nav-link:hover::after {
            content: "";
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 0.35rem;
            height: 2px;
            background: rgba(255, 255, 255, 0.95);
        }

.dropdown-menu {
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    padding: 0.65rem 0;
    left: auto !important;
    top: auto !important;
}

.dropdown-item {
    padding: 0.7rem 1rem;
    font-weight: 600;
}

    .dropdown-item:hover {
        background: #eef5ff;
        color: var(--cs-blue-dark);
    }

.dropdown-toggle::after {
    content: none;
}

.nav-icons {
    gap: 1rem;
}

.nav-icon-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0052a6;
    font-size: 0.78rem;
    font-weight: 700;
    min-width: 76px;
    height: 58px;
}

    .nav-icon-link i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

.cart-link {
    position: relative;
}

.cart-preview-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-preview-wrap .cart-link {
    z-index: 2;
}

.cart-preview-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(380px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid #d7e2f0;
    box-shadow: 0 18px 44px rgba(8, 34, 68, 0.18);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 0.18s;
    z-index: 1040;
}

.cart-preview-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 34px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #d7e2f0;
    border-top: 1px solid #d7e2f0;
    transform: rotate(45deg);
}

.cart-preview-wrap:hover .cart-preview-panel,
.cart-preview-wrap:focus-within .cart-preview-panel,
.cart-preview-wrap.is-preview-open .cart-preview-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.18s ease,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s;
}

.cart-preview-content {
    position: relative;
    padding: 1rem;
}

.cart-preview-header,
.cart-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cart-preview-header {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e6edf6;
}

.cart-preview-title {
    color: #0a356e;
    font-size: 1rem;
    font-weight: 800;
}

.cart-preview-count,
.cart-preview-muted,
.cart-preview-options {
    color: #5d6f86;
    font-size: 0.8rem;
}

.cart-preview-loading,
.cart-preview-empty {
    color: #40546c;
    font-weight: 700;
    padding: 1.4rem 0;
    text-align: center;
}

.cart-preview-empty small {
    display: block;
    color: #687a90;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-preview-list {
    display: grid;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.85rem 0;
}

.cart-preview-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.cart-preview-item:hover .cart-preview-name,
.cart-preview-item:focus .cart-preview-name {
    color: #15458f;
}

.cart-preview-thumb {
    width: 70px;
    height: 56px;
    border: 1px solid #d7e2f0;
    background: #f6f9fc;
    object-fit: cover;
}

.cart-preview-thumb-placeholder {
    align-items: center;
    color: #8aa0b8;
    display: inline-flex;
    justify-content: center;
}

.cart-preview-main {
    min-width: 0;
}

.cart-preview-model {
    color: #6d7e92;
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.cart-preview-name {
    color: #10243d;
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.16s ease;
}

.cart-preview-options {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-preview-line-total {
    color: #0a356e;
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-preview-footer {
    border-top: 1px solid #e6edf6;
    padding-top: 0.85rem;
}

.cart-preview-subtotal strong {
    color: #0a356e;
    display: block;
    font-size: 1rem;
    line-height: 1.1;
}

.cart-preview-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-preview-btn {
    align-items: center;
    border: 1px solid #bdd1e8;
    color: #0a4f9e;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    justify-content: center;
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.cart-preview-btn:hover,
.cart-preview-btn:focus {
    background: #eef5ff;
    border-color: #78a9df;
    color: #003f86;
}

.cart-preview-btn-primary {
    background: #15458f;
    border-color: #15458f;
    color: #fff;
}

.cart-preview-btn-primary:hover,
.cart-preview-btn-primary:focus {
    background: #004d9f;
    border-color: #004d9f;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #75aaf2;
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.cart-badge--hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes cart-badge-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.6); }
    70%  { transform: scale(0.88); }
    100% { transform: scale(1); }
}

.cart-badge--pop {
    animation: cart-badge-pop 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.mobile-cart-link,
.mobile-compare-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    text-decoration: none;
}

.mobile-compare-link {
    margin-left: auto;
}

.mobile-cart-link {
    margin-left: 0.2rem;
}

.mobile-cart-link i,
.mobile-compare-link i {
    font-size: 1.35rem;
    line-height: 1;
}

.mobile-cart-link .cart-badge,
.mobile-compare-link .compare-badge {
    top: 2px;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
}

.compare-link {
    position: relative;
}

.support-link {
    color: #0d8a43;
}

.support-link:hover,
.support-link:focus {
    color: #0b6f37;
}

.compare-badge {
    position: absolute;
    top: 1px;
    right: 18px;
    min-width: 20px;
    height: 20px;
    padding: 0 0.32rem;
    border-radius: 50%;
    background: #75aaf2;
    color: #fff;
    border: 2px solid #fff;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.compare-badge--hidden {
    opacity: 0;
    pointer-events: none;
}

.admin-quick-tools {
    bottom: 1rem;
    position: fixed;
    right: 1rem;
    z-index: 1060;
}

.admin-quick-tools summary {
    align-items: center;
    background: #061b38;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(6, 27, 56, 0.28);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.45rem;
    justify-content: center;
    list-style: none;
    min-height: 42px;
    padding: 0.55rem 0.85rem;
}

.admin-quick-tools summary::-webkit-details-marker {
    display: none;
}

.admin-quick-tools-panel {
    background: #fff;
    border: 1px solid #cdd8e6;
    border-radius: 8px;
    bottom: calc(100% + 0.55rem);
    box-shadow: 0 18px 42px rgba(15, 35, 62, 0.22);
    display: grid;
    gap: 0.35rem;
    min-width: 230px;
    padding: 0.55rem;
    position: absolute;
    right: 0;
}

.admin-quick-tools:not([open]) .admin-quick-tools-panel {
    display: none;
}

.admin-quick-tool {
    align-items: center;
    border-radius: 6px;
    color: #123969;
    display: flex;
    font-size: 0.84rem;
    font-weight: 850;
    gap: 0.55rem;
    min-height: 36px;
    padding: 0.48rem 0.55rem;
    text-decoration: none;
}

.admin-quick-tool:hover,
.admin-quick-tool:focus {
    background: #eef5ff;
    color: #15458f;
}

.admin-quick-tool-primary {
    background: #2b6db6;
    color: #fff;
}

.admin-quick-tool-primary:hover,
.admin-quick-tool-primary:focus {
    background: #004fa7;
    color: #fff;
}

.product-card {
    position: relative;
}

.admin-card-edit-link {
    align-items: center;
    background: #061b38;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(6, 27, 56, 0.22);
    color: #fff;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 900;
    gap: 0.35rem;
    line-height: 1;
    padding: 0.48rem 0.62rem;
    position: absolute;
    right: 0.65rem;
    text-decoration: none;
    top: 0.65rem;
    z-index: 4;
}

.admin-card-edit-link:hover,
.admin-card-edit-link:focus {
    background: #2b6db6;
    color: #fff;
}

/* =========================================================
   GLOBAL SEARCH STRIP
========================================================= */
.search-strip {
    position: fixed;
    left: 0;
    width: 100%;
    background: #f8f8f8;
    border-bottom: 1px solid #dce2e8;
    padding: 10px 0;
    z-index: 10;
}

.site-search-grid {
    display: grid;
    grid-template-columns: minmax(130px, 170px) minmax(620px, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 2rem);
    min-height: 70px;
}

.site-search-brand {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.site-search-box {
    min-width: 0;
    justify-self: stretch;
    max-width: 980px;
    width: 100%;
}

.site-search-actions {
    justify-self: end;
    min-width: 0;
}

.site-search-actions-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 1.65vw, 1.65rem);
    flex-wrap: nowrap;
}

.site-action-flag {
    display: block;
    width: clamp(92px, 6.4vw, 116px);
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-brand-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    line-height: 1;
    text-decoration: none;
    min-width: 120px;
}

.site-brand-logo {
    display: block;
    width: clamp(112px, 9vw, 154px);
    max-height: 70px;
    object-fit: contain;
}

.site-brand-suffix {
    color: var(--cs-blue-dark);
    display: block;
    font-size: clamp(0.68rem, 0.8vw, 0.9rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    max-width: 160px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    transform: translateY(-2px);
    white-space: nowrap;
}

.search-wrap {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d5dce5;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    z-index: 1200;
    max-height: 420px;
    overflow-y: auto;
}

.search-dropdown[hidden] {
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1rem;
    text-decoration: none;
    color: var(--cs-text);
    border-bottom: 1px solid #eef1f5;
    transition: background 0.15s ease;
}

    .search-result-item:last-child {
        border-bottom: none;
    }

    .search-result-item:hover,
    .search-result-item.is-active {
        background: #eef5ff;
        color: var(--cs-text);
        text-decoration: none;
    }

.search-result-img {
    width: 52px;
    height: 44px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e3e7ec;
    background: #f5f7fa;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1c4d90;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    font-size: 0.8rem;
    color: #6b7787;
    margin-top: 0.1rem;
}

.search-result-price {
    font-size: 0.95rem;
    font-weight: 900;
    color: #131f31;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-dropdown-section-label {
    padding: 0.35rem 1rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #8a96a5;
    background: #f8fafc;
    border-bottom: 1px solid #eef1f5;
}

.search-result-category {
    background: #f8fafc;
}

    .search-result-category:hover,
    .search-result-category.is-active {
        background: #eef5ff;
    }

.search-result-cat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0052a6;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-result-cat-arrow {
    color: #8a96a5;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.search-dropdown-footer {
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5a6777;
    border-top: 1px solid #eef1f5;
    background: #f8fafc;
}

.search-dropdown-msg {
    padding: 1rem;
    text-align: center;
    color: #7a8799;
    font-size: 0.9rem;
}

.search-dropdown-msg-info {
    color: #174a83;
    background: #eff6ff;
    border-bottom: 1px solid #dbeafe;
    font-weight: 700;
}

.search-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.5rem;
    color: #7a8799;
    font-size: 0.9rem;
}

.btn-location {
    background: var(--cs-blue);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    padding: 0.8rem 1.15rem;
    border: none;
    white-space: nowrap;
}

    .btn-location:hover {
        background: var(--cs-blue-dark);
        color: #fff;
    }

    .btn-location i {
        margin-right: 0.45rem;
    }

.icon-square {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dce2;
}

.search-form .form-control {
    min-height: 52px;
    border-radius: 0;
    border: 1px solid #d5dce5;
    font-size: 1.05rem;
}

.search-form .btn-search {
    min-width: 64px;
    background: var(--cs-blue);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1.25rem;
}

    .search-form .btn-search:hover {
        background: var(--cs-blue-dark);
    }

/* =========================================================
   HOME PAGE ONLY
========================================================= */
.quick-links-bar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1080;
    background: linear-gradient(180deg, #2b6db6 0%, #15458f 100%);
}

.quick-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 0.95rem 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: none;
    font-size: 0.95rem;
}

    .quick-link-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .quick-link-item i {
        font-size: 1.4rem;
    }

.hero-section {
    position: relative;
    min-height: 560px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.05) 100%), url("https://americanspas.com/americanspas-hot-tubs-img/Patio-Plus-Banner-2026-D.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* When the hero image is set dynamically via inline style, the inline style
   takes precedence over this rule because the gradient is part of the
   background shorthand on the element itself. The CSS rule above acts
   as a static fallback only. */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 62, 132, 0.22), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    z-index: 0;
}

.hero-media-youtube {
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.banner-click-area {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-decoration: none;
}

.banner-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
    padding: 2rem 0;
}

    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        line-height: 0.95;
        font-weight: 900;
        margin-bottom: 1rem;
        color: #fff;
    }

    .hero-content p {
        font-size: clamp(1.15rem, 2vw, 1.8rem);
        margin-bottom: 1.5rem;
        color: #fff;
    }

.hero-btn {
    font-weight: 800;
    border-radius: 0;
    padding: 0.9rem 1.5rem;
    background: var(--cs-blue);
    border-color: var(--cs-blue);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

    .hero-btn:hover {
        background: var(--cs-blue-dark);
        border-color: var(--cs-blue-dark);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 83, 176, 0.45);
    }

    .hero-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

.promo-section {
    padding: 1.5rem 0;
}

.promo-card {
    background: linear-gradient(180deg, #2b6db6 0%, #15458f 100%);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
}

    .promo-card > :not(.banner-click-area) {
        position: relative;
        z-index: 2;
    }

    .promo-card h3 {
        font-size: clamp(1.7rem, 3vw, 2.8rem);
        font-weight: 900;
        margin-bottom: 0.3rem;
        line-height: 1.05;
    }

        .promo-card h3 span {
            font-size: 0.55em;
            font-weight: 700;
        }

    .promo-card p {
        font-weight: 700;
        margin-bottom: 1rem;
    }

.btn-promo {
    background: #002156;
    color: #fff;
    border-radius: 0;
    padding: 0.7rem 1.25rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, letter-spacing 0.2s ease;
}

    .btn-promo:hover {
        background: #003b81;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.04em;
    }

    .btn-promo:active {
        transform: translateY(1px);
        box-shadow: none;
    }

.categories-section {
    padding-bottom: 1.5rem;
}

.category-tile {
    min-height: 600px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cs-border);
}

.category-tile-left {
    background: url("https://americanspas.com/americanspas-hot-tubs-img/product_pictures_new/americanspas-hot-tubs-portable-swim-spas-for-sale-pz-516l-env.png") center center / cover no-repeat;
}

.category-tile-right {
    background: url("https://americanspas.com/americanspas-hot-tubs-img/product_pictures_new/americanspas-hot-tubs-portable-swim-spas-for-sale-pz-519l-env.png") center center / cover no-repeat;
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 49, 112, 0.15), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.tile-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    color: #fff;
}

    .tile-content h2 {
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 900;
        margin: 0;
        color: #fff;
    }

.btn-size {
    background: var(--cs-blue);
    color: #fff;
    border-radius: 0;
    font-weight: 800;
    padding: 0.7rem 1rem;
    border: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

    .btn-size:hover {
        background: var(--cs-blue-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(0, 71, 154, 0.4);
    }

    .btn-size:active {
        transform: translateY(1px);
        box-shadow: none;
    }

.best-sellers-section {
    padding: 1.5rem 0;
}

.best-sellers-section .row > [class*="col-"] {
    display: flex;
}

.best-sellers-section .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.best-sellers-section .product-image-wrap {
    flex: 0 0 auto;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: #fff;
}

.best-sellers-section .product-image-wrap > a,
.best-sellers-section .product-image-wrap .img-skeleton {
    display: block;
    width: 100%;
    height: 100%;
}

.section-title-wrap {
    position: relative;
}

.section-title {
    display: inline-block;
    color: var(--cs-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    position: relative;
    padding: 0 1rem;
    background: #fff;
}


    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-card .card-body {
        text-align: center;
    }

    .best-sellers-section .product-body {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .product-card .card-title {
        font-weight: 700;
        color: #164481;
        margin-bottom: 1.25rem;
    }

    .best-sellers-section .product-title {
        min-height: 2.8em;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .best-sellers-section .product-meta {
        min-height: 34px;
    }

.value-bar {
    background: #f4f6f8;
    border-top: 1px solid #e1e7ed;
    border-bottom: 1px solid #e1e7ed;
    padding: 1.5rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #1c4d90;
    font-weight: 800;
    font-size: 1.05rem;
}

    .value-item i {
        font-size: 1.8rem;
    }

/* =========================================================
   CATEGORY PAGE ONLY
========================================================= */
.category-page .breadcrumb-bar {
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #e5eaf0;
    background: #fff;
    padding: 12px 0;
}

.category-page .breadcrumb {
    font-size: 1rem;
}

.category-page .breadcrumb-item a {
    text-decoration: none;
    color: var(--cs-blue);
}

.category-page .breadcrumb-item.active {
    color: #445264;
}

.page-title-bar {
    padding: 22px 0 18px;
    border-bottom: 1px solid #edf1f5;
}

.page-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #101f33;
    overflow-wrap: anywhere;
}

.listing-section {
    padding-bottom: 2rem;
}

.listing-controls {
    border-bottom: 1px solid var(--cs-border);
    border-top: 1px solid var(--cs-border);
    background: #fff;
    margin-bottom: 1rem;
}

.results-count,
.sort-wrap,
.view-controls {
    min-height: 72px;
    display: flex;
    align-items: center;
}

.results-count {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0 1.25rem 0 0;
}

.sort-wrap {
    gap: 0.75rem;
    border-left: 1px solid var(--cs-border);
    border-right: 1px solid var(--cs-border);
    padding: 0 1rem;
}

    .sort-wrap label {
        font-size: 1.1rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .sort-wrap .form-select {
        max-width: 220px;
        border: none;
        box-shadow: none;
        font-size: 1rem;
    }

.view-controls {
    justify-content: flex-end;
    gap: 0;
    padding-left: 1rem;
}

.view-btn,
.text-control {
    border: 1px solid var(--cs-border);
    border-radius: 0;
    background: #fff;
    min-width: 44px;
    min-height: 38px;
    color: #526275;
    font-weight: 700;
}

    .view-btn.active {
        color: var(--cs-blue);
        background: #f4f8ff;
    }

.text-control {
    padding: 0.45rem 0.85rem;
}

.filter-sidebar {
    border-right: 1px solid var(--cs-border);
    padding: 1rem 1.25rem 0 0;
}

.filter-header {
    padding: 1rem 0 1.25rem;
    border-bottom: 1px solid #edf1f4;
}

    .filter-header h2 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

.compare-link {
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    color: #f28a18;
}

.filter-group {
    padding: 1rem 0 1.25rem;
    border-bottom: 1px solid #edf1f4;
}

    .filter-group h3 {
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 0.9rem;
        color: #1c2a3f;
    }

.form-check {
    margin-bottom: 0.65rem;
}

.form-check-input {
    border-radius: 2px;
}

.form-check-label {
    color: #465466;
    font-size: 1rem;
}

.btn-reset {
    margin-top: 1.25rem;
    background: linear-gradient(180deg, #2b6db6 0%, #15458f 100%);
    color: #fff;
    border-radius: 2px;
    border: none;
    font-weight: 800;
    padding: 0.85rem 1rem;
}

    .btn-reset:hover {
        color: #fff;
        background: var(--cs-blue-dark);
    }

.secure-card {
    margin-top: 2rem;
    border: 1px solid #dfe4ea;
    background: linear-gradient(180deg, #fbfcfe 0%, #f1f4f8 100%);
}

.secure-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #103a78;
    line-height: 1.15;
    padding: 1rem;
    border-bottom: 1px solid #dfe4ea;
}

.secure-list {
    padding: 1rem;
}

.secure-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #143e7b;
    font-weight: 800;
    margin-bottom: 1rem;
}

    .secure-item:last-child {
        margin-bottom: 0;
    }

    .secure-item i {
        font-size: 1.8rem;
    }


/* =========================================================
   PRODUCT CARDS (Reference Design Style)
========================================================= */



.product-seat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #d8dee6;
    letter-spacing: 0.03em;
}

.product-seat-badge.lounger {
    color: #2b6db6;
}

.product-seat-badge.bench {
    color: #2b6db6;
}



.product-title a {
    text-decoration: none;
    color: inherit;
}

.product-title a:hover {
    color: var(--cs-blue);
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.stars {
    color: var(--cs-gold);
    letter-spacing: 2px;
    display: inline-flex;
    gap: 1px;
}

    .stars i {
        font-size: 0.85rem;
    }

.reviews {
    color: #666;
    font-size: 0.85rem;
}


.product-price-original {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-price-discounted {
    font-size: 1.6rem;
    font-weight: 900;
    color: #131f31;
}

.product-discount-badge {
    background: #d71920;
    color: #ffffff;
    padding: 0.35rem 0.55rem;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-card-save-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.48rem 0.9rem;
    background: #d71920;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.28);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .meta-item i {
        color: var(--cs-blue);
        font-size: 1rem;
    }

    .meta-item strong {
        color: #131f31;
    }


.btn-details {
    width: 100%;
    background: linear-gradient(180deg, #2b6db6 0%, #15458f 100%);
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 0.7rem 1rem;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .btn-details:hover {
        background: var(--cs-blue-dark);
        color: #fff;
        text-decoration: none;
    }

.product-compare {
    display: flex;
    align-items: flex-end;
}


@keyframes fadeInPrice {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pagination-wrap {
    padding: 1.5rem 0;
}

.pagination .page-link {
    border-radius: 0;
    color: #33465e;
    border: 1px solid #dbe1e8;
    padding: 0.7rem 1rem;
    font-weight: 700;
}

.pagination .page-item.active .page-link {
    background: #cfd9ee;
    color: #12376f;
    border-color: #cfd9ee;
}

.pagination .muted-link {
    color: #8a97a8;
}

.checkout-strip {
    border-top: 1px solid #e5eaf0;
    background: linear-gradient(180deg, #f9fbfd 0%, #f3f6f9 100%);
    padding: 1rem 0 1.5rem;
}

.checkout-strip-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

    .checkout-strip-title .line {
        flex: 1;
        height: 1px;
        background: #cfd8e4;
    }

    .checkout-strip-title .label {
        font-size: 1.15rem;
        font-weight: 900;
        color: #0f3f81;
        white-space: nowrap;
    }

        .checkout-strip-title .label i {
            margin-right: 0.4rem;
        }

.checkout-strip-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.checkout-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #133f7f;
    font-weight: 800;
    font-size: 1rem;
}

    .checkout-pill i {
        font-size: 1.6rem;
    }

/* =========================================================
   LIST MODE FOR CATEGORY PAGE
========================================================= */
.category-page .product-col.list-mode {
    border-right: none !important;
}

    .category-page .product-col.list-mode .product-card {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .category-page .product-col.list-mode .product-image-wrap {
        width: 320px;
        flex: 0 0 320px;
        margin-bottom: 0;
    }

 

/* =========================================================
   RESPONSIVE
========================================================= */
@media (min-width: 1200px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 1199.98px) {
    .site-search-grid {
        grid-template-columns: minmax(120px, 150px) minmax(470px, 1fr) auto;
        min-height: 64px;
        column-gap: 2rem;
    }

    .site-search-actions-inner {
        gap: 1.15rem;
    }

    .site-action-flag {
        width: 98px;
        height: 46px;
    }

    .nav-icons {
        margin-top: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nav-icon-link {
        align-items: flex-start;
    }

    .main-menu .nav-link.active::after,
    .main-menu .nav-link:hover::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-search-grid {
        grid-template-columns: minmax(120px, 170px) minmax(220px, 1fr);
    }

    .site-search-actions {
        display: none;
    }

    .cart-preview-panel {
        display: none;
    }

    .page-title {
        font-size: 2.35rem;
    }

    .listing-controls {
        padding: 0.75rem 0;
    }

    .results-count,
    .sort-wrap,
    .view-controls {
        min-height: auto;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .sort-wrap {
        border-left: none;
        border-right: none;
        padding-left: 0;
    }

    .view-controls {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.4rem;
        padding-left: 0;
    }

    .products-wrap {
        padding-left: 0;
    }

    .category-page .product-col:nth-child(2n) {
        border-right: 1px solid var(--cs-border);
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        font-size: 1.9rem;
    }

    .hero-section {
        min-height: 420px;
    }

    .page-title {
        font-size: 2rem;
    }

    .value-item {
        justify-content: flex-start;
    }

    .category-page .product-col,
    .category-page .product-col:nth-child(2n) {
        border-right: none;
    }

    .product-image {
        height: 220px;
    }

    .product-actions,
    .product-compare {
        justify-content: flex-start;
    }

    .checkout-strip-title {
        flex-direction: column;
        gap: 0.5rem;
    }

        .checkout-strip-title .line {
            width: 100%;
        }

    .category-page .product-col.list-mode .product-card {
        display: block;
    }

    .category-page .product-col.list-mode .product-image-wrap {
        width: 100%;
        flex: none;
        margin-bottom: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .search-form .form-control {
        min-height: 48px;
    }

    .search-form .btn-search {
        min-width: 56px;
    }

    .results-count {
        font-size: 1rem;
    }

    .category-page .product-card {
        padding: 1rem;
    }
}

/* ============================================================
   Image skeleton loader
   Usage: add the "skeleton" attribute to any <img> tag.
   The Tag Helper wraps it in .img-skeleton automatically.
   Each image's skeleton is completely independent.
   ============================================================ */

.img-skeleton {
    position: relative;
    overflow: hidden;
    display: block;
    background: #fff;
}

/* Shimmer sweep */
.img-skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent       0%,
        rgba(255,255,255,0.55) 50%,
        transparent       100%
    );
    background-size: 200% 100%;
    animation: img-skeleton-shimmer 1.4s ease-in-out infinite;
    z-index: 2;
    transition: opacity 0.25s ease;
}

/* Image starts invisible so skeleton shows through */
.img-skeleton > img {
    opacity: 0;
    transition: opacity 0.35s ease;
    display: block;
    width: 1000px;
    height: 100%;
    object-fit: contain;
}

/* Once loaded: shimmer gone, image fades in */
.img-skeleton.img-skeleton--loaded::before {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.img-skeleton.img-skeleton--loaded > img {
    opacity: 1;
}

@keyframes img-skeleton-shimmer {
    0%   { background-position:  200% 0; }
    100% { background-position: -200% 0; }
}

.cart-config-modal .modal-content {
    border: 1px solid #d8e0ea;
    border-radius: 6px;
    overflow: hidden;
}

.cart-config-modal .modal-header,
.cart-config-modal .modal-footer {
    background: #f8fafc;
    border-color: #e1e7ef;
}

.cart-config-modal .modal-title {
    color: #15458f;
    font-size: 1.35rem;
    font-weight: 800;
}

.cart-config-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.cart-config-layout {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 1.25rem;
}

.cart-config-media {
    border: 1px solid #e1e7ef;
    background: #fff;
    min-height: 180px;
    display: flex;
    justify-content: center;
}

.cart-config-media img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
}

.cart-config-price {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.85rem;
}

.cart-config-price-label,
.cart-config-price-value,
.cart-config-price-detail {
    display: block;
}

.cart-config-price-label {
    color: #667085;
    font-size: 0.78rem;
    font-weight: 800;
}

.cart-config-price-detail {
    color: #667085;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.cart-config-option-group {
    border-top: 1px solid #edf1f5;
    padding-top: 0.9rem;
    margin-top: 0.9rem;
}

.cart-config-option-title {
    color: #24364d;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 0.55rem;
    text-transform: none;
}

.cart-config-option-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.cart-config-option {
    position: relative;
}

.cart-config-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cart-config-option-card {
    min-height: 56px;
    border: 1px solid #d7e0ea;
    border-radius: 4px;
    background: #fff;
    color: #26364a;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cart-config-option input:checked + .cart-config-option-card {
    border-color: #0052a6;
    background: #f2f7ff;
    box-shadow: 0 0 0 2px rgba(0, 82, 166, 0.12);
}

.cart-config-swatch {
    width: 24px;
    height: 24px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #eef2f7;
    overflow: hidden;
}

.cart-config-swatch--image {
    border-radius: 5px;
}

.cart-config-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-config-option-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.cart-config-option-list--name .cart-config-option-card {
    grid-template-columns: minmax(0, 1fr);
}

.cart-config-option-list--list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    gap: 0.45rem;
}

.cart-config-option-list--list .cart-config-option {
    display: flex;
    width: 100%;
}

.cart-config-option-list--list .cart-config-option input {
    position: static;
    opacity: 1;
    pointer-events: auto;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
}

.cart-config-option-list--list .cart-config-option-card {
    width: 100%;
    min-height: 42px;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 6px;
    box-shadow: none !important;
    background: #fff;
}

.cart-config-option-list--list .cart-config-option input:checked + .cart-config-option-card {
    border-color: #7ea3d8;
    background: #f8fbff;
}

.cart-config-option-list--list .cart-config-native,
.cart-config-option-list--list .cart-config-swatch {
    display: none;
}

.cart-config-dropdown {
    position: relative;
}

.cart-config-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid #d7e0ea;
    border-radius: 4px;
    background: #fff;
    color: #26364a;
    font-weight: 800;
    padding: 0.55rem 0.65rem;
    text-align: left;
}

.cart-config-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 1080;
    background: #fff;
    border: 1px solid #d7e0ea;
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(15, 35, 70, 0.18);
    max-height: 240px;
    overflow: auto;
    padding: 0.35rem;
}

.cart-config-dropdown-item {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.5rem;
    border-radius: 4px;
    color: #26364a;
    font-weight: 700;
    cursor: pointer;
}

.cart-config-dropdown-item:hover {
    background: #f2f7ff;
}

.cart-config-option-price {
    color: #0d8a43;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 0.1rem;
}

.cart-config-qty {
    border-top: 1px solid #edf1f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.cart-config-qty label {
    color: #24364d;
    font-weight: 900;
}

.cart-config-stepper {
    display: inline-flex;
    border: 1px solid #cfd8e4;
}

.cart-config-stepper button {
    width: 38px;
    height: 38px;
    border: none;
    background: #eef3f8;
    color: #15458f;
    font-size: 1.25rem;
    font-weight: 800;
}

.cart-config-stepper input {
    width: 52px;
    height: 38px;
    border: none;
    text-align: center;
    font-weight: 900;
}

.cart-config-message {
    color: #9a3412;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.8rem;
}

.cart-config-submit {
    background: #0052a6;
    border-color: #0052a6;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
}

.cart-edit-btn {
    margin-left: 0.8rem;
    margin-top: 0.6rem;
    background: none;
    border: none;
    color: #15458f;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
}

@media (max-width: 767.98px) {
    .cart-config-layout {
        grid-template-columns: 1fr;
    }

    .cart-config-option-list {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    background: #000e2b;
    color: #fff;
    margin-top: 3rem;
}

.footer-top {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
}

    .footer-column a:hover {
        color: #fff;
    }

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

    .footer-newsletter input {
        flex: 1;
        border: none;
        padding: 0.6rem;
        border-radius: 2px;
    }

    .footer-newsletter button {
        background: #ffd31a;
        border: none;
        padding: 0.6rem 0.9rem;
        font-weight: 800;
        color: #17263a;
        border-radius: 2px;
    }

/* Social */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

    .footer-social a {
        width: 75px;
        height: 75px;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
    }

        .footer-social a:hover {
            background: rgba(255,255,255,0.3);
        }

        .footer-social a i{
            font-size: 50px;
        }

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .footer-bottom a {
        color: rgba(255,255,255,0.85);
        margin-left: 1rem;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* Responsive */
@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-right a {
        margin-left: 0;
        margin-right: 1rem;
    }
}

/* =========================================================
   STOREFRONT MOBILE HARDENING
========================================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

main,
.container,
.container-fluid,
.row,
[class*="col-"] {
    min-width: 0;
}

.search-results-dropdown {
    max-height: min(70vh, 420px);
    overflow-y: auto;
}

@media (max-width: 1199.98px) {
    .top-nav {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    .top-nav .navbar-collapse {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 0.65rem 0 0.25rem;
        width: 100%;
        flex-basis: 100%;
    }

    .main-menu .nav-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }

    .main-menu .nav-item.ms-auto {
        margin-left: 0 !important;
    }

    .main-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: 0.7rem 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 4px;
        font-size: 0.95rem;
    }

    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
    }

    .main-menu .dropdown-menu {
        margin: 0 0 0.4rem;
        border-radius: 4px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
    }

    .main-menu .dropdown-item {
        white-space: normal;
        padding: 0.65rem 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .site-header-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .top-nav {
        min-height: 54px;
    }

    .search-strip {
        padding: 7px 0;
    }

    .site-search-grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        min-height: 0;
    }

    .site-search-brand {
        display: none;
    }

    .search-form {
        width: 100%;
    }

    .search-form .form-control {
        font-size: 1rem;
    }

    .quick-links-bar {
        position: static;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title,
    .page-title {
        overflow-wrap: anywhere;
    }

    .category-tile {
        min-height: 360px;
    }

    .value-strip .row > [class*="col-"] {
        border-right: none !important;
    }

    .checkout-strip {
        padding: 1.25rem 0;
    }

    .checkout-strip-icons {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .checkout-pill {
        justify-content: center;
        width: 100%;
    }

    .footer-main {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .footer-social a i {
        font-size: 1.35rem;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 0.98rem;
    }

    .site-header-container .navbar-brand {
        max-width: calc(100vw - 90px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search-form .form-control {
        min-width: 0;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .search-results-dropdown {
        left: 0;
        right: 0;
        width: 100%;
    }

    .hero-title,
    .page-title {
        font-size: 1.75rem;
        line-height: 1.12;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .category-tile {
        min-height: 300px;
    }

    .category-title {
        font-size: 1.65rem;
    }

    .admin-quick-tools {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .admin-quick-tools summary {
        width: 100%;
    }

    .admin-quick-tools-panel {
        left: 0;
        min-width: 0;
        right: 0;
    }
}


.product-image-wrap .product-special-buy {
    background: url(/images/special-buy.svg) no-repeat center;
    background-size: contain;
    height: 64px;
    width: 64px;
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;
}
