/* style-shop.css - XTACY Shop Page */
/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #B5B5B5;
    --light-gray: #F5F5F5;
    --silver: #E8E8E8;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border: 1px solid var(--silver);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===============================
   VIDEO BACKGROUND (FIXED FOR SHOP PAGE)
================================ */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */ /* Yeh line hata do ya comment out karo */
    background: transparent; /* Ya ise transparent karo */
    z-index: 1;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

/* ===============================
   LAYOUT
================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.btn-black {
    background-color: var(--white);
    color: var(--black);
}

.btn-black:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--black);
}

/* ===============================
   HEADER & NAVIGATION
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover .brand-logo {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.cart-icon:hover {
    opacity: 0.8;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--white);
    color: var(--black);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

/* ===============================
   MOBILE MENU OVERLAY
================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close-mobile-menu {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-mobile-menu:hover {
    opacity: 0.8;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.8rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    opacity: 0.7;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--gray);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===============================
   FEATURED COLLECTION
================================ */
.featured-collection {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.8rem;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.add-to-cart {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    border-radius: 5px;
}

.add-to-cart:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ===============================
   BRAND STATEMENT
================================ */
.brand-statement {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8rem 0;
    position: relative;
}

.statement-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.statement-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--white);
}

.statement-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray);
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonials {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--white);
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ===============================
   CALL-TO-ACTION BANNER
================================ */
.cta-banner {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    border-radius: 5px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form .btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal p {
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* ===============================
   RESPONSIVE STYLES
================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .statement-title {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    .hero {
        min-height: 600px;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .statement-title {
        font-size: 2.3rem;
    }
    
    .statement-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.3rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .brand-logo {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .brand-logo {
        height: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .nav-container {
        padding: 1rem 0;
    }
}
/* ===============================
   SHOP PAGE SPECIFIC
================================ */
.shop-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.shop-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.shop-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.shop-controls {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.sort-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.7rem 2rem 0.7rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--white);
}

.shop-products {
    padding: 4rem 0;
}

.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

.newsletter-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   PRODUCT PAGE SPECIFIC
================================ */
.product-details {
    padding: 4rem 0;
    margin-top: 80px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--white);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-price-detail {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.product-category {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    margin-bottom: 2.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.size-selection {
    margin-bottom: 2.5rem;
}

.size-selection h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--gray);
}

.size-option:hover,
.size-option.selected {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.size-guide-link {
    color: var(--gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.size-guide-link:hover {
    color: var(--white);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    width: 45px;
    height: 50px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

#productQty {
    width: 60px;
    height: 50px;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.add-to-cart-btn,
.wishlist-btn {
    flex: 1;
    min-width: 200px;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-details-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--gray);
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 0 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    display: none;
}

.accordion-content.active {
    display: block;
}

.related-products {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===============================
   CART PAGE SPECIFIC
================================ */
.cart-hero {
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.cart-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cart-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.cart-content {
    padding: 4rem 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.cart-items {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cart-empty h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cart-item-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--white);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-control {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.item-qty {
    width: 50px;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-item-total {
    text-align: right;
    font-weight: 600;
    color: var(--white);
    font-size: 1.2rem;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total {
    font-weight: 600;
    color: var(--white);
    font-size: 1.3rem;
    border-bottom: none;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkout-btn {
    width: 100%;
}

.payment-methods {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    color: var(--gray);
}

.shipping-notice {
    color: var(--gray);
    font-size: 0.9rem;
}

.shipping-notice p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-notice i {
    color: var(--white);
}

.recently-viewed {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===============================
   CHECKOUT PAGE SPECIFIC
================================ */
.checkout-hero {
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.checkout-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.checkout-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.checkout-content {
    padding: 4rem 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    grid-column: 1 / -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--white);
    color: var(--black);
}

.step-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-label {
    color: var(--white);
}

.checkout-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section {
    margin-bottom: 3rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    border-radius: 5px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.shipping-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shipping-option,
.payment-option {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option:hover,
.payment-option:hover {
    border-color: var(--white);
}

.shipping-option input,
.payment-option input {
    display: none;
}

.shipping-option input:checked + .option-content,
.payment-option input:checked + .option-content {
    color: var(--white);
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
}

.option-name {
    font-weight: 500;
    font-size: 1rem;
}

.option-price {
    font-weight: 600;
}

.option-time,
.option-desc {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.order-summary-checkout {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item-name {
    color: var(--white);
}

.order-item-qty {
    color: var(--gray);
    font-size: 0.9rem;
}

.order-item-price {
    color: var(--white);
    font-weight: 500;
}

.summary-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.security-notice i {
    font-size: 1.5rem;
    color: var(--white);
}

/* ===============================
   ABOUT PAGE SPECIFIC
================================ */
.about-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
}

.brand-story {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-text {
    color: var(--gray);
    line-height: 1.7;
}

.craftsmanship-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.craftsmanship-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craftsmanship-content {
    padding-right: 2rem;
}

.craftsmanship-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.craftsmanship-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.craftsmanship-image {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.craftsmanship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.member-role {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

.about-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-cta-text {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===============================
   CONTACT PAGE SPECIFIC
================================ */
.contact-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.contact-content {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.social-links-contact {
    display: flex;
    gap: 1.5rem;
}

.social-links-contact a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links-contact a:hover {
    opacity: 0.7;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.faq-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    display: none;
}

.faq-answer.active {
    display: block;
}

.contact-newsletter {
    padding: 6rem 0;
    text-align: center;
}

/* ===============================
   POLICY PAGES SPECIFIC
================================ */
.policy-hero,
.terms-hero {
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.policy-hero-title,
.terms-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.policy-hero-subtitle,
.terms-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.policy-content,
.terms-content {
    padding: 4rem 0 6rem;
}

.policy-container,
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-intro,
.terms-intro {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.policy-section p,
.terms-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section ul,
.terms-section ul {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li,
.terms-section li {
    margin-bottom: 0.8rem;
}

/* ===============================
   MODAL STYLES
================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.modal-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
================================ */
@media (max-width: 1024px) {
    .product-container {
        gap: 3rem;
    }
    
    .story-container,
    .craftsmanship-container {
        gap: 3rem;
    }
    
    .cart-container,
    .checkout-container,
    .contact-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .shop-hero-title,
    .about-hero-title,
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .product-container,
    .cart-container,
    .checkout-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .story-container,
    .craftsmanship-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .policy-container,
    .terms-container {
        padding: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image {
        height: 400px;
    }
    
    .cart-summary,
    .order-summary-checkout {
        position: static;
    }
}

@media (max-width: 576px) {
    .shop-hero-title,
    .about-hero-title,
    .contact-hero-title,
    .policy-hero-title,
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .controls-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-container {
        padding: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-btn,
    .wishlist-btn {
        min-width: auto;
        width: 100%;
    }
}