:root {
    --cream: #f8f4e9;
    --blush: #f3e1e1;
    --pastel-pink: #fadadd;
    --soft-gold: #d4af37;
    --dark-text: #333;
    --light-text: #666;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --neumorphic-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
    --neumorphic-shadow-active: 4px 4px 8px #d1d9e6, -4px -4px 8px #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--cream);
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--soft-gold), #f3d27a, var(--soft-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    letter-spacing: 1px;
    line-height: 1.3;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    100% {
        text-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
    }
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

h1:hover::after, h2:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.8px;
}

p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid with Hover Navigation */
.products-grid-hover {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar */
    -ms-overflow-style: none;
    padding: 10px 0;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.hover-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-arrow.left {
    left: 10px;
}

.hover-arrow.right {
    right: 10px;
}

.products-grid-hover:hover .hover-arrow {
    opacity: 1;
}

.hover-arrow:hover {
    background: white;
}

/* New Arrivals Square Cards - Larger Size */
#bestsellers .products-scroll .product-card {
    width: 380px;
    height: 480px;
    min-width: 380px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#bestsellers .products-scroll .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

#bestsellers .products-scroll .product-image {
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f4e9;
}

#bestsellers .products-scroll .product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#bestsellers .products-scroll .product-card:hover .product-image img {
    transform: scale(1.08);
}

#bestsellers .products-scroll .product-info {
    padding: 25px 20px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

#bestsellers .products-scroll .product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--dark-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    line-height: 1.3;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    text-align: center;
    word-wrap: break-word;
    padding: 0 10px;
}

#bestsellers .products-scroll .product-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
}

#bestsellers .products-scroll .btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 500;
}

/* Women's Collection Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    width: 100%;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

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

/* Neumorphic button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--cream);
    color: var(--dark-text);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: var(--neumorphic-shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--soft-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--neumorphic-shadow-active);
}

.btn:hover::before {
    opacity: 0.2;
}

.btn-primary {
    background: var(--soft-gold);
    color: white;
}

.btn-primary::before {
    background: linear-gradient(45deg, white, transparent);
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 20px;
}
/* Hero section styles */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1483985988355-763728e1935b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: white;
}

.btn-hero {
    background-color: var(--soft-gold);
    padding: 15px 30px;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero .subtitle {
        font-size: 1rem;
    }
}
/* Product showcase styles */
.products {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-text);
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: 'NEW ARRIVALS';
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(90deg,
        #ff0000,
        #00ff00,
        #0000ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rgbFlash 2s linear infinite;
    z-index: -1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    opacity: 0.8;
}

@keyframes rgbFlash {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.2);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.5);
    }
    100% {
        background-position: 0% 50%;
        filter: brightness(1.2);
    }
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.silk-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff3366, #ff6600);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Product images - compact size */
.product-image {
    height: 280px;
    overflow: hidden;
}

/* Remove collection-specific sizing */

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Product image styling - prevent top cropping */
.product-card:nth-child(2) .product-image img, /* Designer Kurti */
.product-card:nth-child(4) .product-image img, /* Evening Dress */
.product-card:nth-child(3) .product-image img, /* Wrapper */
.product-card:nth-child(5) .product-image img { /* Silk Saree */
    object-position: top;
    object-fit: contain;
    height: 100%;
    width: 100%;
    background: var(--cream);
}

/* Maintain cover for other images */
.product-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.price {
    font-size: 1.2rem;
    color: var(--soft-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.category-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.add-to-cart {
    width: 100%;
}

/* View More button responsive styles */
.view-more {
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 16px;
}

/* View More button specific styling for New Arrivals section */
#bestsellers .products-scroll .view-more {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .product-image {
        height: 250px;
    }
    
    /* Responsive View More buttons */
    .view-more {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* Responsive View More for New Arrivals */
    #bestsellers .products-scroll .view-more {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .product-image {
        height: 200px;
    }
    
    /* Mobile View More buttons */
    .view-more {
        min-width: 80px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    /* Mobile View More for New Arrivals */
    #bestsellers .products-scroll .view-more {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}
/* Header and Navigation styles */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.main-header:hover {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Right arrow positioning for Wrapper card */
#bestsellers .product-info {
    position: relative;
    padding-right: 50px;
}

#bestsellers .product-info .slider-arrow.right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
}

#bestsellers .product-info .slider-arrow.right:hover {
    background: white;
}

.nav-menu a:hover {
    color: var(--soft-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--soft-gold);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--soft-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: var(--dark-text);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-right: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 30px;
        gap: 15px;
    }

    .nav-menu a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-toggle span {
        width: 20px;
        background: var(--dark-text);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: var(--soft-gold);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: var(--soft-gold);
    }
}
/* About section styles */
.about {
    padding: 80px 0;
    background-color: var(--blush);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}
/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--blush);
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 350px;
}

.review-content p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--soft-gold);
}

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

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 40px 0;
    }
    .review-card {
        min-width: 250px;
    }
}

/* Footer styles */
.main-footer {
    background-color: var(--dark-text);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--soft-gold);
}

.social-links svg {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-contact h3,
    .footer-social h3 {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 15px;
    }
}
/* Product detail page styles */
.product-detail {
    padding: 80px 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.main-image img {
    width: 120%;
    height: auto;
    margin-left: -10%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.price {
    font-size: 1.8rem;
    color: var(--soft-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.size-selection {
    margin-bottom: 30px;
}

.size-selection h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.size-option:hover {
    border-color: var(--soft-gold);
}

.size-option.active {
    background: var(--soft-gold);
    color: white;
    border-color: var(--soft-gold);
}

.product-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--soft-gold);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
}

@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .product-info h1 {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-detail {
        padding: 40px 0;
    }
}
/* Enhanced animations and transitions */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a {
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

.product-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.size-option {
    transition: all 0.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page transition effects */
body {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Add animation classes to elements */
.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.product-card:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.product-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.product-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

/* Popup Modal Styles */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--soft-gold);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #c19b2e;
    transform: scale(1.1);
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    display: block;
}