}/**
 * Products Page CSS
 * Extracted from products.blade.php
 * Contains all product page styling
 * Last Updated: October 16, 2025
 */

/* Fix horizontal scroll and overflow issues */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.products-page-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    padding-top: 0 !important; /* Ensure no negative margin */
    margin-top: 0 !important;
}

/* Remove padding from container after banner */
.shop-hero + .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Fix title overflow */
.page-header h2 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    white-space: normal !important;
}

/* Ensure product images fill container properly */
.product-card .product-image-container {
    display: block !important;
}

@media (max-width: 1024px) {
    .product-card .product-image-container {
        padding-top: 0 !important;
        height: 400px !important;
    }

    .product-card img {
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
    }
}

/* New Product Grid Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    text-align: left;
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    /* Remove box shadow animation */
}

.product-card .product-image-container {
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    width: 100%;
    height: 450px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

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

.product-content {
    padding: 20px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    min-height: 220px !important;
}

.product-card h5 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.5;
    min-height: auto;
    height: auto;
    text-align: var(--text-align, left);
}

.product-card .price {
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
    margin: 8px 0;
    text-align: var(--text-align, left);
}

.product-card .sale-price {
    text-decoration: line-through;
    color: #6c757d;
    font-weight: normal;
    margin-right: 8px;
}

.product-card .category-text {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-align: var(--text-align, left);
}

.add-to-cart,
.btn-add-to-cart {
    display: block !important;
    padding: 12px 16px !important;
    background: #000 !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    border: 1px solid #000 !important;
    height: 44px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    text-align: center !important;
    line-height: 20px !important;
    flex-shrink: 0 !important;
}

.add-to-cart:hover,
.btn-add-to-cart:hover {
    background: #000 !important;
    color: white !important;
}

.add-to-cart:disabled,
.btn-add-to-cart:disabled {
    background: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* Remove hover color change from product titles - Override Bootstrap */
.product-card h5 a,
.product-content h5 a {
    color: #212529 !important;
    text-decoration: none !important;
}

.product-card h5 a:hover,
.product-content h5 a:hover,
.product-card h5 a:focus,
.product-content h5 a:focus,
.product-card h5 a:active,
.product-content h5 a:active {
    color: #212529 !important;
    text-decoration: none !important;
    outline: none !important;
}

.filters {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filters h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clean minimal styles for sort and filter controls */
.sort-filter-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reset-filter-btn {
    background: transparent;
    color: #6c757d;
    border: none;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.reset-filter-btn:hover {
    color: #000;
    text-decoration: underline;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    background-image: none !important;
    border: none;
    padding: 10px 30px 10px 10px;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.dropdown-toggle:hover {
    color: #000;
}

/* Remove any pseudo-element arrows */
.dropdown-toggle::before,
.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle i {
    font-size: 10px;
    position: absolute;
    right: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    z-index: 1000;
    display: none;
    padding: 10px 0;
}

.dropdown-menu.show {
    display: block;
}

/* Mobile specific dropdown fixes */
@media (max-width: 768px) {
    .custom-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: auto !important;
        left: auto !important;
        transform: translateX(0) !important;
        min-width: 200px;
        max-width: calc(100vw - 40px);
    }

    /* LTR: Align to right edge of button */
    [dir="ltr"] .dropdown-menu,
    :not([dir="rtl"]) .dropdown-menu {
        left: auto !important;
    }

    /* RTL: Align to left edge of button */
    [dir="rtl"] .dropdown-menu {
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 180px;
    }
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #000;
    text-decoration: none;
}

.dropdown-item.active {
    background: #f8f9fa;
    color: #000;
    font-weight: 500;
}

.rating {
    color: #6c757d; /* Gray color for filled stars */
    font-size: 0.9rem;
    margin: 5px 0;
    text-align: var(--text-align, left);
}

.rating span {
    color: #6c757d !important; /* Gray color for filled stars */
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.rating .star-empty {
    color: #6c757d; /* Gray color for empty stars */
    opacity: 0.3; /* Make empty stars lighter */
}

.in-stock {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: var(--text-align, left);
}

.in-stock.low-stock {
    color: #ff6b6b;
}

.out-of-stock {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: var(--text-align, left);
}

/* Add to cart button styles */
.add-to-cart,
.btn-add-to-cart {
    display: block !important;
    padding: 12px 16px !important;
    background: #000 !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    border: 1px solid #000 !important;
    height: 44px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    text-align: center !important;
    line-height: 20px !important;
    flex-shrink: 0 !important;
}

.add-to-cart:hover,
.btn-add-to-cart:hover {
    background: #000 !important;
    color: white !important;
}

.add-to-cart:disabled,
.btn-add-to-cart:disabled {
    background: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* Ensure all forms containing add to cart buttons have proper styling */
form[action*="cart/add"],
.add-to-cart-form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Product card forms and buttons */
.product-card form,
.product-card-ultimate form,
.card-action form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Product card button styling - inherits from .add-to-cart */
.product-card-ultimate .add-to-cart-btn,
.card-action .add-to-cart-btn {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Filter Icon Button - No border style */
.filter-icon-btn {
    background: transparent;
    color: #000;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-icon-btn:hover {
    background: #f8f9fa;
}

/* Filter Styles */
.filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

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

.filter-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.filter-list li {
    margin-bottom: 10px;
}

.filter-checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-checkbox-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-checkbox label {
    cursor: pointer;
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
}

.filter-count {
    color: #6c757d;
    font-size: 0.85rem;
}

.price-range-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.9rem;
}

.price-range-separator {
    color: #6c757d;
}

.btn-apply-filters {
    width: 100%;
    background-color: #212529;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.btn-apply-filters:hover {
    background-color: #000;
}

.btn-clear-filters {
    display: block;
    width: 100%;
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px;
    transition: color 0.3s ease;
}

.btn-clear-filters:hover {
    color: #495057;
    text-decoration: underline;
}

/* Shop Hero Section - Single banner from collections */
.shop-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: url('../images/hydrate-shop-cover.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-bottom: 10px;
    margin-top: 0; /* Ensure no overlap with header */
    padding: 100px 0;
    min-height: 600px; /* Increased to show more of the image */
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive styles for shop hero */
@media (max-width: 768px) {
    .shop-hero {
        min-height: 400px !important;
        padding: 80px 20px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .shop-hero-content {
        padding: 0 20px !important;
    }

    .shop-hero-title {
        font-size: 32px !important;
    }

    .shop-hero-subtitle {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        min-height: 350px !important;
        padding: 60px 20px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .shop-hero-content {
        padding: 0 15px !important;
    }

    .shop-hero-title {
        font-size: 28px !important;
    }

    .shop-hero-subtitle {
        font-size: 14px !important;
    }
}

/* Remove overlay - no overlay needed */
.shop-hero::before {
    display: none !important;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

.shop-hero-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 15px !important;
}

.shop-hero-subtitle {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px !important;
}

.shop-breadcrumbs {
    color: rgba(255, 255, 255, 0.9) !important;
    display: none !important;
}

/* Mobile responsive - maintain sliding animation */
@media only screen and (max-width: 768px) {
    .products-page-wrapper .shop-hero {
        background-image: url('../images/hydrate-shop-cover-mobile.png') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        min-height: 400px !important;
        height: 400px !important;
        padding: 80px 0 !important;
        width: 100% !important;
        display: block !important;
    }
}

@media only screen and (max-width: 480px) {
    .products-page-wrapper .shop-hero {
        background-image: url('../images/hydrate-shop-cover-mobile.png') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        min-height: 350px !important;
        height: 350px !important;
        padding: 60px 0 !important;
        width: 100% !important;
        display: block !important;
    }
}

/* Page Header */
.page-header {
    padding: 40px 0 30px;
}

.page-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.no-products-found i {
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-products-found h4 {
    color: #495057;
    font-weight: 500;
    margin-bottom: 10px;
}

.no-products-found p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Filter Overlay and Sidenav - Works on all screen sizes */
.filter-overlay {
    display: none;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001 !important;
}

.filter-overlay.active {
    display: block;
}

.filter-sidenav {
    position: fixed !important;
    top: 0 !important;
    right: -100%;
    width: 350px;
    height: 100% !important;
    background: white;
    z-index: 10002 !important;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: none; /* Hidden by default */
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

/* Full width on mobile */
@media (max-width: 768px) {
    .filter-sidenav {
        width: 100%;
        right: -100%;
    }

    .filter-sidenav.rtl {
        left: -100%;
    }
}

.filter-sidenav.rtl {
    right: auto;
    left: -100%;
    transition: left 0.3s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

/* Show sidenav when active class is added */
.filter-sidenav.active {
    display: block;
    right: 0;
}

.filter-sidenav.rtl.active {
    display: block;
    left: 0;
}

.filter-sidenav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 10003;
}

.filter-sidenav-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-filter-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
}

.filter-sidenav-content {
    padding: 20px;
}

/* Container fixes to prevent overflow */
body {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xl-3, .col-xl-9, .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card .product-image-container {
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters {
        margin-bottom: 20px;
    }

    .product-card .product-image-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
    /* Product card content padding for mobile */
    .product-card .product-content {
        padding: 0 !important;
        padding-top: 5px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 1fr !important;
        gap: 10px !important;
        padding: 0 !important;  /* Remove padding, let container handle it */
    }

    .product-card {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .product-card .product-image-container {
        height: 180px !important; /* Adjusted for 2 column layout */
        flex-shrink: 0 !important;
    }

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .product-card h5 {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        height: auto !important;
        min-height: auto !important;
    }

    .product-card .price {
        font-size: 0.95rem !important;
        margin: 5px 0 !important;
    }

    .product-card .category-text {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
    }

    .product-content {
        padding: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
        min-height: 150px !important;
    }

    /* Keep button styles consistent */
    .add-to-cart {
        padding: 12px 16px !important;
        font-size: 14px !important;
        height: 44px !important;
        line-height: 20px !important;
        margin-top: 5px !important;
    }

    .rating {
        font-size: 0.8rem !important;
    }

    .in-stock, .out-of-stock {
        font-size: 0.75rem !important;
    }

    .sort-container {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 15px;
    }

    .sort-container .btn {
        margin-top: 10px;
        width: 100%;
    }

    .page-header h2 {
        font-size: 1.5rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-image {
        height: 250px;
    }

    .products-banner h2 {
        font-size: 2rem;
    }

    .products-banner {
        padding: 40px 0;
    }

    /* Mobile filter button */
    .mobile-filter-btn {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
        padding: 15px;
        background: #212529;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-sidebar {
        display: none;
    }
}

/* Show filter button on tablets (iPad) and hide only on desktop */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-filter-btn {
        display: flex !important;
    }

    .filter-sidebar {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .mobile-filter-btn {
        display: none;
    }
}

/* Hide desktop filter sidebar */
.filter-sidebar {
    display: none !important;
}

/* Remove list view styles */
.view-options,
#listViewBtn,
.products-list {
    display: none !important;
}

/* Badge styles */
.badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

[dir="rtl"] .badge-sale {
    right: auto;
    left: 10px;
}

/* RTL Stock Status Alignment */
[dir="rtl"] .stock-status,
[dir="rtl"] .in-stock,
[dir="rtl"] .out-of-stock {
    text-align: right !important;
    direction: rtl;
}

/* Load More Styles */
.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.btn-load-more {
    background: #212529;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    display: none;
}

.btn-load-more.loading .loading-text {
    display: inline;
}

.btn-load-more.loading .normal-text {
    display: none;
}

/* CRITICAL OVERRIDES - Must be last */
@media (max-width: 767px) {
    /* Force 2 column grid on mobile */
    #productGrid,
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Ensure container has equal padding on both sides */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Fix individual product cards */
    .product-card {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Fix horizontal scroll - absolute prevention */
* {
    max-width: 100vw !important;
}

/* Fix title wrapping */
.page-header h2 {
    max-width: calc(100vw - 30px) !important;
    word-break: break-all !important;
    hyphens: auto !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sort-filter-container {
        width: 100%;
        justify-content: space-between;
    }

    .sort-dropdown {
        min-width: 140px;
    }

    .filter-icon-btn {
        padding: 8px;
    }

    .filter-icon-btn span {
        display: none;
    }
}

/* MOBILE HERO FIX - HIGHEST PRIORITY */
@media screen and (max-width: 768px) {
    .shop-hero {
        background-image: url('../images/hydrate-shop-cover-mobile.png') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 400px !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        padding: 80px 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .shop-hero {
        min-height: 350px !important;
        padding: 60px 20px !important;
    }
}

/* MOBILE PRODUCT CARD ALIGNMENT FIX */
@media (max-width: 768px) {
    .product-grid {
        display: grid !important;
    }}