/* Stores Page Styles */

/* ========================================
   GLOBAL STORES PAGE STYLES
   ======================================== */

.stores-main {
    /*padding-top: 10px; /* Header height offset */
    /*margin-top: 70px;*/
}

/*============================================
Banner Name
==============================================*/
.section-hero {
    background: var(--color-bg-base);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 182px;
    line-height: 1.05;
    letter-spacing: -4.7%;
    color: var(--color-hero);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

@media screen and (max-width: 1023px) {
    .section-hero {
       padding: var(--spacing-xl) 0;
     }
    .hero-title {
        font-size: 120px;
        line-height: 60px;
        min-height: 150px;
    }
}
@media screen and (max-width: 767px) {
    .section-hero {
       padding: var(--spacing-lg) 0;
     }
    .hero-title {
        font-size: 52px;
        line-height: 56px;
        min-height: 80px;
    }
}




/* ========================================
   HERO SECTION STYLES
   ======================================== */

.stores-hero {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #ffffff;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Left Side - Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 564px;
    max-width: 826px;
    width: 100%;
}

.hero-store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-store-image.active {
    opacity: 1;
    
}

/* Progress Dots */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color, #e31e24);
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: #bbb;
}

/* Right Side - Content */
.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--primary-color, #e31e24);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Store Selector */
.store-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.select-wrapper {
    position: relative;
    flex: 1;
}

/* Placeholder (Select District) styling */
.select-wrapper select:invalid {
    color: var(--primary-color);
    font-weight: 500; /* or use var(--font-weight-medium) */
}

.select-wrapper select {
    width: 100%;
    padding: 14px 45px 14px 20px;
    font-size: 1rem;
    font-family: var(--font-family-primary);
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color, #e31e24);
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
    color: #666;
}

/* When open, rotate arrow upward */
.select-wrapper.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-color, #e31e24);
}


.store-selector button {
    padding: 14px 40px;
    background: var(--primary-color, #e31e24);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.store-selector button:hover {
    background: #c11a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}


/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
   ======================================== */

@media (max-width: 1024px) {

    .hero-image-wrapper {
        min-height: 450px;
        max-width: 100%;
    }
    .hero-container {
        gap: 40px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image-wrapper,
    .hero-content {
        max-width: 100%;
    }

    .hero-image-wrapper {
        min-height: 400px;
        max-width: 100%;
    }
    

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .store-selector {
        flex-direction: column;
        width: 100%;
    }
    .select-wrapper {
        width: 100%;
    }

    .store-selector button {
        width: 60%;
    }
    .hero-store-image {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .stores-hero {
        padding: 60px 15px;
    }
    .hero-image-wrapper {
        min-height: 300px;
        max-width: 100%;
    }
    
    .hero-store-image {
        border-radius: 15px;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }
    .store-selector {
        width: 100%;
    }
    
    .select-wrapper {
        width: 100%;
    }

    
}


/* ========================================
   MARQUEE SECTION STYLES
   ======================================== 

.marquee-container {
    background: #f8f9fa;
    padding: 30px 0;
    overflow: hidden;
    border-top: 3px solid var(--primary-color, #e31e24);
    border-bottom: 3px solid var(--primary-color, #e31e24);
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

.marquee-text {
    color: var(--primary-color, #e31e24);
    font-size: 2.5rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
*/

/* ========================================
   RESPONSIVE DESIGN - MARQUEE SECTION
   ======================================== 

@media (max-width: 768px) {
    .marquee-text {
        font-size: 2rem;
    }
}

*/
/* ========================================
   STORES GRID SECTION STYLES
   ======================================== */

.stores-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}


/* ========================================
   RESPONSIVE DESIGN - STORES GRID
   ======================================== */

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   STORE CARD STYLES
   ======================================== */

.store-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.store-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.store-info {
    padding: 25px;
}

.store-title {
    font-size: 1.5rem;
    color: var(--primary-color, #e31e24);
    margin-bottom: 15px;
    font-weight: 600;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.store-detail svg {
    min-width: 20px;
    margin-right: 10px;
    margin-top: 2px;
}

.locate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--primary-color, #e31e24);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.locate-btn:hover {
    background: #c11a1f;
    transform: translateX(5px);
}


/* ========================================
   RESPONSIVE DESIGN - STORE CARD
   ======================================== */

@media (max-width: 480px) {
    .store-info {
        padding: 20px;
    }

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


/* ========================================
   LOAD MORE SECTION STYLES
   ======================================== */

.load-more-container {
    text-align: center;
    padding: 20px 0 60px;
}

.load-more-btn {
    padding: 15px 50px;
    background: white;
    color: var(--primary-color, #e31e24);
    border: 2px solid var(--primary-color, #e31e24);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-color, #e31e24);
    color: white;
}


/* ========================================
   RESPONSIVE DESIGN - LOAD MORE SECTION
   ======================================== */

@media (max-width: 480px) {
    .load-more-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
    }
}