/* ============================================================
   BRASS & STEEL
   PREMIUM STORE DESIGN
   ============================================================ */

/* ============================================================
   COLOR PALETTE
   ============================================================ */

:root {
    --obsidian: #080808;
    --gunmetal: #2B2F33;
    --orange: #f47b00;
    --red-line: #e53935;
    --titanium: #D6D6D6;
    --off-white: #F5F5F2;

    --black: #000000;

    --dark-1: #111213;
    --dark-2: #121212;
    --dark-card: #121212;
    --dark-3: #1D1F21;

    --border: rgba(214, 214, 214, 0.10);
    --border-color: #222222;
    --border-hover: #333333;
    --orange-border: rgba(244, 123, 0, 0.45);

    --shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #0f0f10;
    color: var(--off-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font-family: inherit;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */

.store-topbar {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background: #111213;
    border-bottom: 1px solid var(--border);
    color: var(--titanium);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.store-topbar-left {
    display: flex;
    align-items: center;
    gap: 38px;
}

.store-topbar-left span,
.store-topbar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.store-topbar i {
    color: var(--orange);
    font-size: 12px;
}

.store-topbar-right {
    color: var(--orange);
    font-size: 9px;
    font-weight: 600;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.store-header {
    position: relative;
    z-index: 100;
    background: #0D0E0F;
    border-bottom: 1px solid var(--border);
}

.store-navbar {
    width: 100%;
    height: 66px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-logo {
    display: flex;
    align-items: center;
    width: 150px;
    flex-shrink: 0;
}

.store-logo img {
    width: 130px;
    height: auto;
    display: block;
}

.store-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.store-nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.store-nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    color: var(--off-white);
    font-size: 10px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.store-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.store-nav-links a:hover,
.store-nav-links a.active {
    color: var(--orange);
}

.store-nav-links a:hover::after,
.store-nav-links a.active::after {
    width: 100%;
}

.store-nav-links i {
    font-size: 8px;
}

.store-nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 150px;
    justify-content: flex-end;
}

.store-nav-icons button {
    position: relative;
    padding: 0;
    border: none;
    background: none;
    color: var(--off-white);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s ease;
}

.store-nav-icons button:hover {
    color: var(--orange);
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    font-size: 7px;
    font-weight: 700;
}

.store-menu-btn {
    display: none;
    border: none;
    background: none;
    color: var(--off-white);
    font-size: 24px;
    cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */

.store-hero {
    position: relative;
    width: 100%;
    height: 410px;
    overflow: hidden;
    background: var(--black);
}

.store-hero-image {
    position: absolute;
    inset: 0;
    background-image: url("../images/guns.png");
    background-size: cover;
    background-position: center 45%;
    transform: scale(1.02);
}

.store-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.76) 35%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.38) 100%
    );
}

.store-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-eyebrow {
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.store-hero h1 {
    margin: 0 0 16px;
    color: var(--off-white);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -2px;
}

.store-hero-content p {
    max-width: 440px;
    margin: 0 0 25px;
    color: var(--titanium);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-btn.primary {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(244, 123, 0, 0.22);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: rgba(15, 15, 16, 0.65);
    border: 1px solid rgba(214, 214, 214, 0.3);
    color: var(--off-white);
}

.hero-btn.secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ============================================================
   BENEFITS
   ============================================================ */

.store-benefits {
    width: 100%;
    min-height: 75px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #151617;
    border-bottom: 1px solid var(--border);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 25px;
    border-right: 1px solid var(--border);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    color: var(--orange);
    font-size: 29px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin: 0 0 3px;
    color: var(--off-white);
    font-size: 9px;
    font-weight: 600;
}

.benefit-text p {
    max-width: 190px;
    margin: 0;
    color: var(--titanium);
    font-size: 8px;
    line-height: 1.5;
}

/* ============================================================
   SECTION HEADERS (RED LINES & CENTERED TEXT)
   ============================================================ */



.section-header .line,
.store-section-header .line {
    height: 1px;
    width: 60px;
    background-color: var(--red-line);
}

.section-header h2,
.store-section-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

/* ============================================================
   SHOP BY CATEGORY SECTION
   ============================================================ */

.category-section,
.store-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.category-card {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.category-image {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-content h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

/* ============================================================
   FEATURED PRODUCTS SECTION (IMAGE LEFT, CONTENT RIGHT)
   ============================================================ */

.featured-products-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.featured-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-card {
    position: relative;
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    height: 100%;
    min-height: 120px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.featured-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #888888;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 3;
}

.wishlist-btn:hover {
    color: #ffffff;
}

/* Left Column Container */
.product-thumb-container {
    position: relative;
    width: 95px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Discount Badge */
.discount-badge {
    background-color: var(--orange);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-bottom: 6px;
}

/* Image Wrapper */
.product-thumb {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Right Column Content */
.product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    min-width: 0; 
    padding-top: 4px;
}

.product-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-subtitle {
    font-size: 0.65rem;
    color: #888888;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom Price & Action Row */
.product-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    margin-top: 8px;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.current-price {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
}

.old-price {
    color: #666666;
    font-size: 0.7rem;
    text-decoration: line-through;
}

/* Cart Icon Button */
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--orange);
    border-radius: 4px;
    color: var(--orange);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-btn:hover {
    background-color: var(--orange);
    color: #ffffff;
}

/* View All CTA Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 35px;
}

.view-all-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--orange);
    color: var(--orange);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background-color: var(--orange);
    color: #ffffff;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    padding: 60px 0;
    background: var(--dark-1);
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-section h2 {
    margin: 0 0 25px;
    color: var(--off-white);
    font-size: 25px;
    font-weight: 600;
}

#contactForm {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 3px;
    outline: none;
    background: var(--gunmetal);
    color: var(--off-white);
    font-size: 12px;
    resize: vertical;
    transition: border-color 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--titanium);
    opacity: 0.65;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

#contactForm button {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--orange);
    border-radius: 3px;
    background: var(--orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

#contactForm button:hover {
    background: transparent;
    color: var(--orange);
}

#contactMessage {
    margin-top: 15px;
    font-size: 11px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1200px) {

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    /* ========================================================
       GLOBAL
       ======================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }


    /* ========================================================
       TOP BAR
       ======================================================== */

    .store-topbar {
        display: none;
    }


    /* ========================================================
       NAVBAR
       ======================================================== */

    .store-navbar {
        position: relative;

        width: 100%;

        height: 58px;

        padding: 0 14px;
    }

    .store-logo {
        position: absolute;

        left: 50%;

        width: auto;

        transform: translateX(-50%);
    }

    .store-logo img {
        width: 88px;
    }


    /* ========================================================
       MENU BUTTON
       ======================================================== */

    .store-menu-btn {
        display: block;

        padding: 0;

        order: -1;

        font-size: 23px;

        z-index: 2;
    }


    /* ========================================================
       MOBILE NAV LINKS
       ======================================================== */

    .store-nav-links {
        position: absolute;

        top: 58px;
        left: 0;

        width: 100%;
        height: auto;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px 0;

        background: #111213;

        border-bottom: 1px solid var(--border);

        z-index: 999;
    }

    .store-nav-links.active {
        display: flex;
    }

    .store-nav-links li {
        height: auto;
    }

    .store-nav-links a {
        height: auto;

        padding: 14px 20px;

        font-size: 11px;
    }

    .store-nav-links a::after {
        display: none;
    }


    /* ========================================================
       NAV ICONS
       ======================================================== */

    .store-nav-icons {
        width: auto;

        margin-left: auto;

        gap: 13px;
    }

    .store-nav-icons button {
        font-size: 16px;
    }

    .store-nav-icons button:first-child {
        display: none;
    }


    /* ========================================================
       MOBILE HERO
       IMPORTANT:
       Uses CONTAIN instead of COVER so the gun image
       is not cropped on mobile.
       ======================================================== */

    .store-hero {
        position: relative;

        width: 100%;
        max-width: 100%;

        /*
           Close to the reference screenshot proportions.
        */
        height: 53.5vw;

        min-height: 185px;
        max-height: 230px;

        margin: 0;

        overflow: hidden;

        background: #000;
    }

    .store-hero-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        /*
           THIS IS THE MAIN FIX.

           contain = full image visible
           cover = image cropped
        */
        background-size: contain;

        background-repeat: no-repeat;

        background-position: center center;

        background-color: #000;
    }

    .store-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.08) 0%,
                rgba(0, 0, 0, 0.00) 55%,
                rgba(0, 0, 0, 0.05) 100%
            );

        pointer-events: none;
    }

    .store-hero-content {
        position: absolute;

        inset: 0;

        width: 100%;
        max-width: 100%;

        height: 100%;

        margin: 0;

        padding: 0 10px 12px;

        display: flex;
        flex-direction: column;

        justify-content: flex-end;
        align-items: flex-start;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-btn {
        min-height: 36px;

        padding: 0 18px;

        font-size: 8px;
    }

    .hero-btn.primary {
        min-width: 120px;
    }

    .hero-btn.secondary {
        display: none;
    }


    /* ========================================================
       MOBILE BENEFITS
       Match reference: horizontal compact cards
       ======================================================== */

    .store-benefits {
        width: 100%;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        background: #0d0e0f;

        padding: 4px 3px;

        gap: 3px;

        border-bottom: none;
    }

    .benefit-item {
        min-width: 0;

        min-height: 48px;

        display: flex;

        flex-direction: row;

        align-items: center;
        justify-content: flex-start;

        gap: 8px;

        padding: 8px 7px;

        background: #121212;

        border: 1px solid #292929;

        border-radius: 3px;

        text-align: left;
    }

    .benefit-item:last-child {
        border-right: 1px solid #292929;
    }

    .benefit-icon {
        flex-shrink: 0;

        font-size: 20px;
    }

    .benefit-text {
        width: 100%;

        min-width: 0;
    }

    .benefit-text h3 {
        margin: 0;

        font-size: 6.5px;

        line-height: 1.35;

        white-space: normal;
    }

    .benefit-text p {
        display: none;
    }


    /* ========================================================
       MOBILE SECTIONS
       ======================================================== */

    .category-section,
    .store-section {
        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 0 5px;

        overflow: hidden;
    }

    .featured-products-section {
        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 0 5px 10px;

        overflow: hidden;
    }


    /* ========================================================
       MOBILE SECTION HEADERS
       ======================================================== */

    .section-header,
    .store-section-header,
    .category-title-header {
        gap: 9px;

        margin: 24px 0 14px;
    }

    .section-header .line,
    .store-section-header .line,
    .category-title-header .header-line {
        width: 32px;
    }

    .section-header h2,
    .store-section-header h2,
    .category-title-header h2 {
        font-size: 11px;

        letter-spacing: 1px;

        white-space: nowrap;
    }


    /* ========================================================
       MOBILE CATEGORY SLIDER
       ======================================================== */

    .category-grid {
        width: 100%;
        max-width: 100%;

        display: flex;

        gap: 5px;

        margin: 0;

        padding: 0 4px 8px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        /*
           Exactly five cards visible.
        */
        flex: 0 0 calc((100% - 20px) / 5);

        min-width: 0;

        height: 103px;

        padding: 7px 3px;

        border-radius: 3px;

        border-color: #292929;

        scroll-snap-align: start;
    }

    .category-card:hover {
        transform: none;
    }

    .category-image {
        height: 65px;

        margin-bottom: 2px;
    }

    .category-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .category-content {
        width: 100%;

        min-width: 0;
    }

    .category-content h3 {
        width: 100%;

        margin: 0;

        font-size: 6.3px;
        font-weight: 600;

        line-height: 1.2;

        letter-spacing: 0;

        white-space: nowrap;

        overflow: hidden;
        text-overflow: ellipsis;
    }


    /* ========================================================
       MOBILE FEATURED PRODUCTS
       ======================================================== */

    .featured-grid {
        width: 100%;
        max-width: 100%;

        display: flex;

        gap: 5px;

        margin: 0;

        padding: 0 4px 8px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .featured-grid::-webkit-scrollbar {
        display: none;
    }

    .featured-card-link {
        flex: 0 0 calc((100% - 20px) / 5);

        min-width: 0;

        scroll-snap-align: start;
    }

    .featured-card {
        position: relative;

        width: 100%;

        height: 182px;
        min-height: 182px;

        padding: 5px 4px 6px;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 0;

        border-radius: 3px;

        border-color: #292929;
    }

    .featured-card:hover {
        transform: none;

        border-color: #292929;
    }


    /* ========================================================
       MOBILE WISHLIST
       ======================================================== */

    .wishlist-btn {
        top: 5px;
        right: 5px;

        font-size: 8px;
    }


    /* ========================================================
       MOBILE PRODUCT IMAGE
       ======================================================== */

    .product-thumb-container {
        position: relative;

        width: 100%;

        height: auto;

        display: block;

        flex-shrink: 0;
    }

    .discount-badge {
        position: absolute;

        top: 0;
        left: 0;

        margin: 0;

        padding: 2px 3px;

        border-radius: 3px;

        font-size: 5.5px;
        line-height: 1.1;
    }

    .product-thumb {
        width: 100%;

        height: 64px;

        margin-top: 12px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-thumb img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    /* ========================================================
       MOBILE PRODUCT INFO
       ======================================================== */

    .product-info {
        width: 100%;

        flex: 1;

        padding-top: 3px;

        display: flex;
        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        text-align: center;
    }

    .product-title {
        width: 100%;

        margin: 0 0 3px;

        font-size: 6.5px;

        line-height: 1.25;

        white-space: normal;

        display: -webkit-box;

        overflow: hidden;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-subtitle {
        width: 100%;

        margin: 0;

        font-size: 5.5px;

        line-height: 1.25;

        white-space: normal;

        display: -webkit-box;

        overflow: hidden;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    /* ========================================================
       MOBILE PRICE
       ======================================================== */

    .product-bottom-row {
        width: 100%;

        margin-top: auto;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 3px;
    }

    .price-box {
        width: 100%;

        align-items: center;
    }

    .current-price {
        font-size: 6.5px;

        white-space: nowrap;
    }

    .old-price {
        font-size: 5px;

        white-space: nowrap;
    }


    /* ========================================================
       MOBILE CART
       ======================================================== */

    .cart-btn {
        width: 25px;
        height: 20px;

        border-radius: 2px;

        font-size: 8px;
    }


    /* ========================================================
       MOBILE VIEW ALL
       ======================================================== */

    .view-all-wrapper {
        margin-top: 3px;
        margin-bottom: 15px;

        text-align: center;
    }

    .view-all-btn {
        padding: 0;

        border: none;
        background: transparent;

        color: var(--orange);

        font-size: 8px;

        letter-spacing: 0.5px;

        text-transform: uppercase;
    }

    .view-all-btn::after {
        content: " →";

        font-size: 11px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .store-hero {
        /*
           Keep the reference-like proportions.
        */
        height: 53.5vw;

        min-height: 185px;
        max-height: 215px;
    }

    .store-hero-image {
        /*
           Full image visible.
           No cropping.
        */
        background-size: contain;

        background-position: center center;
    }

    .store-hero-content {
        padding: 0 10px 10px;
    }

    .hero-btn.primary {
        min-width: 120px;

        min-height: 36px;

        padding: 0 16px;

        font-size: 8px;
    }

}


/* ============================================================
   EXTRA SMALL DEVICES
   ============================================================ */

@media (max-width: 360px) {

    .store-logo img {
        width: 78px;
    }

    .store-nav-icons {
        gap: 10px;
    }

    .store-hero {
        min-height: 170px;
    }

    .hero-btn.primary {
        min-width: 105px;

        font-size: 7px;
    }

}