/* ============================================
   Store Page Styles
   ============================================ */

.store-page-container {
    padding: 0 0 60px 0;
    background-color: var(--white, #FFFFFF);
    min-height: 100vh;
    overflow-x: hidden !important;
}

/* Header Section */
.store-header {
    margin-bottom: 40px;
}


/* Header Section */
.store-header-bg-image {
    background-image: url("../../../assets/images/home/bg-nav.png");
    height: 100px;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;


}

.store-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey, #333333);
    margin-bottom: 8px;
    line-height: 1.2;
}

.store-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--medium-grey, #666666);
    margin: 0;
}

.store-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
}

.store-search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid var(--border-color, #D9D9D9);
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-grey, #333333);
    outline: none;
    transition: all 0.3s ease;
}

.store-search-input:focus {
    border-color: var(--accent-blue, #2D348F);
    box-shadow: 0 0 0 3px rgba(45, 52, 143, 0.1);
}

.store-search-input::placeholder {
    color: var(--light-grey, #999999);
}

.store-search-icon {
    position: absolute;
    right: 20px;
    color: var(--medium-grey, #666666);
    font-size: 1rem;
    pointer-events: none;
}

/* Categories Section */
.store-categories-section {
    margin-bottom: 40px;
}

/* Products Section */
.store-products-section {
    margin-bottom: 60px;
}

.store-products-grid {
    margin: 0;
}

/* 5 columns per row on desktop/laptop sizes */
@media (min-width: 992px) {
    .store-products-grid > div.col-lg {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Pagination Section */
.store-pagination-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light, rgba(217, 217, 217, 0.35));
}

/* Responsive Design */
@media (max-width: 992px) {
    .store-title {
        font-size: 2rem;
    }

    .store-search-wrapper {
        max-width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .store-page-container {
        padding: 40px 0;
    }

    .store-title {
        font-size: 1.75rem;
    }

    .store-subtitle {
        font-size: 0.9rem;
    }

    .store-header {
        margin-bottom: 30px;
    }

    .store-categories-section {
        margin-bottom: 30px;
    }

    .store-products-section {
        margin-bottom: 40px;
    }

    .store-pagination-section {
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .store-title {
        font-size: 1.5rem;
    }

    .store-search-input {
        padding: 10px 40px 10px 18px;
        font-size: 0.9rem;
    }

    .store-search-icon {
        right: 15px;
        font-size: 0.9rem;
    }
}

.store-filters-actions {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-end;
}


