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


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

:root {
    --obsidian: #080808;
    --black: #000000;

    --gunmetal: #2b2f33;
    --orange: #f47b00;
    --orange-hover: #ff8c19;

    --red-line: #e53935;

    --titanium: #d6d6d6;
    --off-white: #f5f5f2;

    --dark-1: #0d0e0f;
    --dark-2: #111213;
    --dark-card: #121212;
    --dark-3: #1d1f21;

    --border: rgba(214, 214, 214, 0.10);
    --border-color: #252525;
    --border-hover: #3a3a3a;

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


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

    margin: 0;
    padding: 0;

    scroll-behavior: smooth;

    overflow-x: hidden;
}

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

    margin: 0;
    padding: 0;

    background: #000000;
    color: var(--off-white);

    font-family: "Poppins", sans-serif;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

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

button {
    -webkit-tap-highlight-color: transparent;
}


/* ============================================================
   Bro banner
   ============================================================ */


.image-banner img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
    align-items: center;
    margin-bottom: 10px;
        margin-top: 30px;
}



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

.container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 24px;
}


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

.store-topbar {
    width: 100%;
    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;
}


/* ============================================================
   HEADER
   ============================================================ */

.store-header {
    position: relative;

    z-index: 100;

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

    background: var(--dark-1);

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


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

.store-navbar {
    width: 100%;
    max-width: 100%;

    height: 66px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-width: 0;
}


/* ============================================================
   LOGO
   ============================================================ */

.store-logo {
    width: 150px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

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


/* ============================================================
   DESKTOP NAVIGATION
   ============================================================ */

.store-nav-links {
    height: 100%;

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

    gap: 34px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.store-nav-links li {
    height: 100%;

    display: flex;
    align-items: center;
}

.store-nav-links a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    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%;
}


/* ============================================================
   NAVIGATION ICONS
   ============================================================ */

.store-nav-icons {
    width: 150px;

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

    gap: 20px;

    flex-shrink: 0;
}

.store-nav-icons button {
    position: relative;

    padding: 0;

    border: none;
    background: transparent;

    color: var(--off-white);

    cursor: pointer;

    font-size: 18px;

    transition: color 0.2s ease;
}

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


/* ============================================================
   CART COUNT
   ============================================================ */

.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: #000;

    font-size: 7px;
    font-weight: 700;
}


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

.store-menu-btn {
    display: none;

    padding: 0;

    border: none;
    background: transparent;

    color: var(--off-white);

    font-size: 24px;

    cursor: pointer;
}


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

.store-hero {
    position: relative;

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

    height: clamp(380px, 38vw, 620px);

    margin: 0;

    overflow: hidden;

    background: #000;
}


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

.store-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/guns.png");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;
}


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

.store-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.00) 55%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


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

.store-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1240px;

    height: 100%;

    margin: 0 auto;

    padding: 0 24px 35px;

    display: flex;
    flex-direction: column;

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

    pointer-events: none;
}


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

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    pointer-events: auto;
}

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

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

    gap: 10px;

    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: #fff;

    box-shadow:
        0 5px 18px rgba(244, 123, 0, 0.25);
}

.hero-btn.primary:hover {
    background: var(--orange-hover);

    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: rgba(0, 0, 0, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #fff;
}

.hero-btn.secondary:hover {
    border-color: var(--orange);

    color: var(--orange);

    transform: translateY(-2px);
}


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

.store-benefits {
    width: 100%;
    max-width: 100%;

    display: grid;

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

    background: #151617;

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

    overflow: hidden;
}

.benefit-item {
    min-width: 0;

    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 {
    min-width: 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
   ============================================================ */

.section-header,
.store-section-header,
.category-title-header {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin: 40px 0 30px;
}

.section-header .line,
.store-section-header .line,
.category-title-header .header-line {
    width: 60px;
    height: 1px;

    flex-shrink: 0;

    background: var(--red-line);
}

.section-header h2,
.store-section-header h2,
.category-title-header h2 {
    margin: 0;

    color: #fff;

    font-size: 1.3rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
    text-align: center;
}


/* ============================================================
   CATEGORY SECTION
   ============================================================ */

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

    margin: 0 auto;

    padding: 0 20px;

    min-width: 0;
}

.category-grid {
    display: grid;

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

    gap: 12px;
}

.category-card {
    /* min-width: 0; */
    display: flex;
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* padding: 20px 10px 15px; */
    /* background: #0c0c0c; */
    /* border: 1px solid var(--border-color); */
    /* border-radius: 6px; */
    /* overflow: hidden; */
    /* transition:
        border-color 0.2s ease,
        transform 0.2s ease; */
}

.category-card:hover {
    border-color: var(--orange);

    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 {
    width: 100%;
}

.category-content h3 {
    width: 100%;

    margin: 0;

    color: #fff;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
    text-align: center;
}


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

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

    margin: 0 auto;

    padding: 20px;

    min-width: 0;
}

.featured-grid {
    display: grid;

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

    gap: 16px;
}

.featured-card-link {
    display: block;

    min-width: 0;

    color: inherit;
}

.featured-card {
    position: relative;

    min-width: 0;
    min-height: 120px;

    height: 100%;

    display: flex;
    align-items: stretch;

    gap: 12px;

    padding: 12px;

    background: #0c0c0c;

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

    border-radius: 6px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.featured-card:hover {
    border-color: var(--orange);

    transform: translateY(-2px);
}


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

.wishlist-btn {
    position: absolute;

    top: 8px;
    right: 8px;

    padding: 0;

    border: none;
    background: transparent;

    color: #888;

    font-size: 0.95rem;

    cursor: pointer;

    z-index: 3;
}


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

.product-thumb-container {
    position: relative;

    width: 95px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
}

.discount-badge {
    margin-bottom: 6px;

    padding: 2px 6px;

    background: #fc5a00;

    border-radius: 10px;

    color: #fff;

    font-size: 0.65rem;
    font-weight: 700;
}

.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;
}


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

.product-info {
    min-width: 0;

    flex-grow: 1;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding-top: 4px;
}

.product-title {
    margin: 0 0 2px;

    color: #fff;

    font-size: 0.75rem;
    font-weight: 700;

    line-height: 1.15;

    text-transform: uppercase;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-subtitle {
    margin: 0;

    color: #888;

    font-size: 0.65rem;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


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

.product-bottom-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 6px;

    margin-top: 8px;
}

.price-box {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 1px;
}

.current-price {
    color: #fc5a00;

    font-size: 0.85rem;
    font-weight: 700;
}

.old-price {
    color: #938f8f;

    font-size: 0.7rem;

    text-decoration: line-through;
}


/* ============================================================
   CART BUTTON
   ============================================================ */

.cart-btn {
    width: 28px;
    height: 28px;

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

    flex-shrink: 0;

    background: transparent;

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

    border-radius: 4px;

    color: var(--orange);

    cursor: pointer;

    transition: all 0.2s ease;
}

.cart-btn:hover {
    background: var(--orange);

    color: #fff;
}


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

.view-all-wrapper {
    margin-top: 35px;

    text-align: center;
}

.view-all-btn {
    display: inline-block;

    padding: 10px 24px;

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

    border-radius: 4px;

    color: var(--orange);

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 1px;

    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: var(--orange);

    color: #fff;
}


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

.contact-section {
    width: 100%;

    padding: 10px 0;

    background: var(--dark-2);

    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;

    background: var(--gunmetal);

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

    border-radius: 3px;

    outline: none;

    color: var(--off-white);

    font-size: 12px;

    resize: vertical;
}

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

#contactForm button {
    width: 100%;

    padding: 12px;

    background: var(--orange);

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

    border-radius: 3px;

    color: #fff;

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

    cursor: pointer;
}


/* ============================================================
   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));
    }

}

/* Hide mobile button by default */
.mobile-cart {
    display: none;
}

/* Desktop cart icon */
.cart-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0f0f10;
    color: #f47c20;
    border: 1px solid #f47c20;
    border-radius: 2px;

    font-size: 17px;
    cursor: pointer;
}

.cart-btn:hover {
    background: #252525;
}


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

@media (max-width: 768px) {

    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;
    }

    /* ============================================================
   CART BUTTON
   ============================================================ */
 .desktop-cart {
        display: none;
    }
.add-cart {
    display: flex;
    align-items: center;
    
    width: 92px;
    height: 23px;
    padding: 0;
    box-sizing: border-box;
    background: #0f0f10;
    border: 1px solid #f47c20;
    border-radius: 2px;
    color: #f47c20;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

/* Shopping cart icon */
.cart-icon {
    width: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* Vertical orange border */
.cart-divider {
    width: 1px;
    height: 15px;
    background: #f47c20;
    flex-shrink: 0;
}

/* Button text */
.cart-text {
    flex: 1;
    text-align: center;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.add-cart:hover {
    background: #252525;
}

.add-cart:focus-visible {
    outline: 1px solid #f47c20;
    outline-offset: 2px;
}
    /* ========================================================
       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
       ======================================================== */

    .store-hero {
        position: relative;

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

        height: 4vw;
        min-height: 165px;
        max-height: 215px;
        margin-top: -10px;

        margin: 0;

        overflow: hidden;

        background: #000;
    }

    .store-hero-image {
         position: static;
        inset: 0;
        width: 100%;
        height: 100%;
        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
       ======================================================== */

    .store-benefits {
        width: 100%;

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

        background: #000000;

        padding: 4px 9px;

        gap: 3px;

        border-bottom: none;
    }

    .benefit-item {
         min-width: 0;
        min-height: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 10px;
        background: #0c0b0b;
        border: 0px solid #292929;
        border-radius: 3px;
        text-align: left;
        margin-top: -8px;
        height: 40px;
    }

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

    .benefit-icon {
                flex-shrink: 0;
        font-size: 20px;
        margin-left: 15px;
        margin-top: 4px;
    }

    .benefit-text {
        width: 50%;

        min-width: 0;
    }

    .benefit-text h3 {
                margin: 0;
        font-size: 8.5px;
        line-height: 1.35;
        white-space: normal;
        align-items: center;
        margin-left: 3px;
        margin-top: 4px;
    }

    .benefit-text p {
        display: none;
    }


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

    .category-section,
    .store-section {
        position: relative;

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

        margin: 0;

        padding: 0 5px;

        overflow: hidden;
    }

    .featured-products-section {
        position: relative;

        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: 3px;
        margin: 20px 200px 14px 0px;
        justify-content: flex-start;
    }

    .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: 13px;

        letter-spacing: 0.5px;

        white-space: nowrap;
    }


    
/* ============================================================
   MOBILE CATEGORY SLIDER - 2 ROWS, 2 COLUMNS VISIBLE
   ============================================================ */

@media (max-width: 768px) {

    .category-slider-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .category-slider-wrapper .category-grid {
        display: grid !important;

        /* Two fixed-height rows */
        grid-template-columns: none !important;
        /* grid-template-rows: repeat(2, 110px); */

        /* Fill each column from top to bottom */
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 5px) / 2);
        gap: 5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0 4px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    /* Every category card has identical dimensions */
    .category-slider-wrapper .category-card {
        display: flex !important;
        /* flex-direction: column; */
        align-items: center;
        /* width: 100% !important; */
        /* min-width: 0 !important; */
        /* max-width: none !important; */
        /* height: 110px !important; */
        /* min-height: 110px !important; */
        /* max-height: 110px !important; */
        /* flex: none !important; */
        /* margin: 0; */
        /* padding: 5px 4px; */
        /* box-sizing: border-box; */
        background: #0c0c0c;
        border: 1px solid #292929;
        border-radius: 3px;
        overflow: hidden;
        /* scroll-snap-align: start; */
    }

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

    /* Category image */
    .category-slider-wrapper .category-image {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 72px;
        min-height: 0;

        margin: 0;
        padding: 0;

        overflow: hidden;
    }

 @media (max-width: 768px) {

    .category-slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }


    .category-grid {

        display: grid;

        grid-auto-flow: column;

        /*
         * Two rows visible.
         * Additional categories continue horizontally.
         */
        grid-template-rows: repeat(2, 76px);

        /*
         * Each column contains 2 cards.
         */
        grid-auto-columns: calc(50% - 4px);

        gap: 6px;

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

        padding: 0 0 3px 0;

        scroll-behavior: smooth;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


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


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

    .category-card {

        width: 100%;
        height: 76px;
        min-height: 76px;

        border: 1px solid #2B2F33;
        border-radius: 4px;

        background: #0F0F10;
    }


    /* =================================================
       IMAGE
    ================================================= */



    .category-image img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;
    }

    /* Category name */
    .category-slider-wrapper .category-content {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-width: 0;
        height: 25px;

        margin: 0;
        padding: 0;
    }

    .category-slider-wrapper .category-content h3 {
        width: 100%;
        margin: 0;

        color: #fff;

        font-size: 9px;
        font-weight: 500;
        line-height: 1.2;

        text-align: center;
        text-transform: uppercase;

        white-space: normal;
        overflow-wrap: anywhere;

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

        overflow: hidden;
    }

}
    /* ========================================================
       MOBILE FEATURED PRODUCTS SLIDER
       ======================================================== */

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

        display: flex;

        gap: 5px;

        margin: 0;

        padding: 0 4px 10px;

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

        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;

        scroll-behavior: smooth;
    }

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

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

        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: #292828;
    }

    .featured-card:hover {
        transform: none;

        border-color: #292929;
    }


    /* ========================================================
       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: 10px;
        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: self-end; */
       justify-content: space-between;
       text-align: left;
       align-items: self-start;
       margin-left: 10px;
    }
    .product-title {
        width: 100%;

        margin: 0 0 3px;

        font-size: 9.5px;
        
        font-weight: 400;

        line-height: 1.25;

        white-space: normal;

        display: -webkit-box;

        overflow: hidden;

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

    .product-subtitle {
        width: 100%;

        margin: 0;

        font-size: 7.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: 1px;
        display: flex;
        flex-direction: column;
        align-items: self-start;
        gap: 1px;
    }

    .price-box {
        display: flex;
        align-items: baseline;
        gap: 6px;
        white-space: nowrap;
    }

   .price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.current-price {
    color: #f47c20;
    font-size: 10px;
    font-weight: bold;
}

.old-price {
    color: #777;
    font-size: 7px;
    text-decoration: line-through;
}



    /* ========================================================
       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;
    }


    /* ========================================================
       MOBILE SWIPE INDICATORS
       ======================================================== */

    .store-section::after,
    .featured-products-section::after {
        content: "";

        position: absolute;

        right: 0;

        width: 38px;

        pointer-events: none;

        z-index: 5;

        background: linear-gradient(
            90deg,
            rgba(15, 15, 16, 0),
            rgba(15, 15, 16, 0.98)
        );

        transition: opacity 0.3s ease;
    }


    /* CATEGORY FADE */

    .store-section::after {
        top: 60px;
        bottom: 0;
    }


    /* FEATURED FADE */

    .featured-products-section::after {
        top: 60px;
        bottom: 0;
    }


    /* ========================================================
       SWIPE ARROW
       ======================================================== */

  @media (max-width: 768px) {
    .mobile-slider-wrapper {
        position: relative;
        min-width: 0;
    }

    /* Right-side fade and animated chevron */
    .mobile-slider-wrapper.has-overflow:not(.swipe-end)::after {
        content: "";
        position: absolute;
        z-index: 20;
        top: 0;
        right: 0;
        bottom: 10px;
        width: 34px;
        pointer-events: none;

        background:
            linear-gradient(
                to right,
                transparent,
                rgba(0, 0, 0, 0.92) 72%
            );
    }

    .mobile-slider-wrapper.has-overflow:not(.swipe-end)::before {
        content: "";
        position: absolute;
        z-index: 21;
        right: 12px;
        top: 50%;

        width: 10px;
        height: 10px;
        border-top: 2px solid #f47c20;
        border-right: 2px solid #f47c20;

        transform: translateY(-50%) rotate(45deg);
        pointer-events: none;
        animation: mobileSwipeNudge 1s ease-in-out infinite;
    }

    .mobile-slider-wrapper.swipe-end::before,
    .mobile-slider-wrapper.swipe-end::after {
        content: none;
        animation: none;
    }

    @keyframes mobileSwipeNudge {
        0%, 100% {
            margin-right: 0;
            opacity: 0.45;
        }
        50% {
            margin-right: -5px;
            opacity: 1;
        }
    }
}

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

@media (max-width: 480px) {

    .store-hero {
        height: 4vw;
            min-height: 165px;
            max-height: 215px;
            margin-top: -10px;
    }

    .store-hero-image {
        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;
    }

}

/* Mobile swipe hints: indicator belongs to each actual slider wrapper */
@media (max-width: 768px) {
  .mobile-slider-wrapper { position: relative; min-width: 0; }
  .mobile-slider-wrapper::before,
  .mobile-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 5;
  }
  .mobile-slider-wrapper::after {
    width: 34px;
    background: linear-gradient(90deg, rgba(15,15,16,0), rgba(15,15,16,.96));
  }
  .mobile-slider-wrapper::before {
    top: 50%;
    bottom: auto;
    right: 11px;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    transform: translateY(-50%) rotate(45deg);
    animation: mobileSwipeNudge 1.35s ease-in-out infinite;
  }
  .mobile-slider-wrapper.has-overflow:not(.swipe-end)::before,
  .mobile-slider-wrapper.has-overflow:not(.swipe-end)::after { opacity: 1; }
  @keyframes mobileSwipeNudge {
    0%, 100% { margin-right: 0; opacity: .55; }
    50% { margin-right: -4px; opacity: 1; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-slider-wrapper::before { animation: none; }
}

@media (max-width: 768px) {
  .store-section::before, .store-section::after,
  .featured-products-section::before, .featured-products-section::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 768px) {
    .image-banner img {
        max-height: 150px;
        width: 100%;
    height: auto;
  
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    img[src="images/a2.png"] {
        display: none !important;
    }
}
