/* Shop Page Specific Styles */

/* ========================================
   HERO SECTION
   ======================================== */

.shop-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.shop-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 2rem;
}


.shop-hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}



/* ========================================
   SHOP SECTIONS
   ======================================== */

.shop-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.shop-banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shop-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.shop-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.shop-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.shop-banner-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: 2px;
}

.shop-banner-subtitle {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.shop-coming-soon {
    display: inline-block;
    background: rgba(251, 194, 19, 0.9);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 194, 19, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   HOVER EFFECTS
   ======================================== */

.shop-section:hover .shop-banner-image img {
    transform: scale(1.05);
}

.shop-section:hover .shop-banner-overlay {
    background: transparent;
}



/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-banner-content {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .shop-hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .shop-banner-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        height: 80vh;
        }
    
    .shop-section {
        height: 80vh;
    }
    
    .shop-hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
  
    
    .shop-banner-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .shop-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .shop-banner-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        height: 70vh;
        }
    
    .shop-section {
        height: 30vh;
        padding: 0 !important;
    }
    
    .shop-hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    

    
    .shop-banner-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .shop-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .shop-banner-content {
        padding: 0 1rem;
    }
    
    .shop-coming-soon {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-top: 0.8rem;
    }

}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .shop-banner-title,
    .shop-banner-subtitle {
        text-shadow: 0 0 0 transparent;
        color: var(--white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .shop-banner-image img,
    .shop-banner-overlay {
        transition: none;
    }
    
    .shop-section:hover .shop-banner-image img {
        transform: none;
    }
    
    .shop-banner-content {
        animation: none;
    }
}

/* ========================================
   SCROLL SMOOTHING
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ========================================
   SECTION SPACING
   ======================================== */

.shop-section + .shop-section {
    margin-top: 0;
}

/* ========================================
   FOCUS STATES
   ======================================== */

.shop-banner:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}
