/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFF5F8;
    font-weight: 400;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(252, 108, 133, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-brand .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.logo-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #FF6B6B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.nav-search {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #FC6C85;
    box-shadow: 0 0 0 3px rgba(252, 108, 133, 0.2);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon {
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.cart-icon:hover {
    color: #FC6C85;
    background: rgba(252, 108, 133, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 108, 133, 0.2);
}

.search-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.4);
}

.search-container {
    position: relative;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-container:hover {
    background: rgba(252, 108, 133, 0.1);
    transform: translateY(-2px);
}

.search-icon {
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-container:hover .search-icon {
    color: #FC6C85;
    transform: scale(1.1);
}

.user-container {
    position: relative;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-container:hover {
    background: rgba(252, 108, 133, 0.1);
    transform: translateY(-2px);
}

.user-container i {
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}

.user-container:hover i {
    color: #FC6C85;
    transform: scale(1.1);
}

#userMenu {
    position: absolute;
    top: calc(100% + 10px);
    right: -10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 180px;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.profile-link:hover {
    background: #FC6C85;
    color: white;
    transform: translateX(5px);
}

.profile-link i {
    font-size: 16px;
    color: #FC6C85;
}

.profile-link:hover i {
    color: white;
}

.sign-out-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sign-out-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(252, 108, 133, 0.4);
}

.login-btn {
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 108, 133, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 50%, #000000 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Premium Hero Section */
.premium-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #8B0000 0%, #DAA520 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.7;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(218, 165, 32, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-backdrop {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 60px 50px;
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.title-elegance {
    color: #fff;
}

.title-redefined {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.btn-explore,
.btn-shop {
    font-family: 'Poppins', sans-serif;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    text-align: center;
}

.btn-explore {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border-color: #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-shop {
    background: rgba(255, 255, 255, 0.95);
    color: #8B0000;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-explore:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.btn-shop:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 1);
    border-color: #FFD700;
}

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

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

@keyframes blurReveal {
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elegant Decorative Animations */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlitter 8s infinite linear;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.5) 0%, transparent 70%);
}

.paisley-motifs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.paisley-motifs::before,
.paisley-motifs::after {
    content: '❀';
    position: absolute;
    font-size: 24px;
    color: rgba(255, 215, 0, 0.15);
    animation: floatPaisley 12s infinite ease-in-out;
}

.paisley-motifs::before {
    top: 30%;
    right: 8%;
    animation-delay: -3s;
}

.paisley-motifs::after {
    bottom: 25%;
    left: 12%;
    color: rgba(255, 182, 193, 0.12);
    animation-delay: -7s;
}

/* Silk Flow Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.02) 25%, 
        transparent 50%, 
        rgba(255, 182, 193, 0.02) 75%, 
        transparent 100%);
    background-size: 400% 400%;
    animation: silkFlow 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Section Fade-in Animations */
.featured-sarees,
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFadeIn 1s ease-out forwards;
}

.featured-sarees {
    animation-delay: 0.5s;
}

.cta-section {
    animation-delay: 0.8s;
}

@keyframes floatGlitter {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes floatPaisley {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.08;
    }
}

@keyframes silkFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes sectionFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce animations on mobile for performance */
@media (max-width: 768px) {
    .floating-particles::before,
    .floating-particles::after {
        animation-duration: 12s;
    }
    
    .paisley-motifs::before,
    .paisley-motifs::after {
        font-size: 18px;
        animation-duration: 15s;
    }
    
    body::before {
        animation-duration: 30s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-particles,
    .paisley-motifs,
    body::before {
        animation: none;
    }
}

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

@media (max-width: 768px) {
    .premium-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .text-backdrop {
        padding: 50px 35px;
        border-radius: 20px;
        max-width: 90%;
        margin: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-explore,
    .btn-shop {
        width: 220px;
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .premium-hero {
        height: 65vh;
        min-height: 450px;
        padding: 20px 0;
    }
    
    .text-backdrop {
        padding: 40px 25px;
        margin: 0 15px;
        max-width: calc(100vw - 30px);
        border-radius: 18px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-explore,
    .btn-shop {
        padding: 14px 28px;
        font-size: 14px;
        width: 180px;
        min-width: 180px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Decorative ethnic elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="paisley" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,5 Q30,10 25,20 Q20,30 10,25 Q5,15 20,5" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23paisley)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Featured Categories */
.featured-categories {
    padding: 60px 0;
    background: #FFF0F4;
}

.featured-categories h2 {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #000000;
    position: relative;
}

.featured-categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FC6C85 0%, #B76E79 100%);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(252, 108, 133, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(252, 108, 133, 0.25);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    padding: 24px 24px 12px;
    font-size: 1.6rem;
    color: #000000;
    font-weight: 600;
}

.category-card p {
    padding: 0 20px 20px;
    color: #666;
}

.category-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 40px 0;
    padding: 0 10px;
}

.product-card {
    background: linear-gradient(135deg, #F7CAC9 0%, #FFD6C2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 108, 133, 0.1) 0%, rgba(247, 202, 201, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #F7CAC9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(247, 202, 201, 0.4);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FC6C85;
    margin-bottom: 16px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #333333;
}

.stars {
    color: #FFD700;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 108, 133, 0.4);
}

/* Collections Page Styles */
.collections-main {
    padding: 40px 0;
    background: #FFF0F4;
}

.breadcrumb {
    margin-bottom: 30px;
    color: #666;
}

.breadcrumb a {
    color: #FF6B6B;
    text-decoration: none;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.collections-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.filters-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(252, 108, 133, 0.1);
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-section h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.3rem;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 15px;
    color: #555;
}

.price-range {
    margin-bottom: 15px;
}

.price-slider {
    width: 100%;
    margin-bottom: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.color-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.color-option:hover,
.color-option.active {
    border-color: #FF6B6B;
    transform: scale(1.1);
}

.clear-filters-btn {
    width: 100%;
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-filters-btn:hover {
    background: #5a6268;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(252, 108, 133, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.load-more-section {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #e55a5a;
    transform: translateY(-2px);
}

/* Product Details Page */
.product-main {
    padding: 40px 0;
    background: #FFF0F4;
}

/* Color Variants Styles */
.color-variants {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.color-variants h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.variant-swatches {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.variant-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-width: 80px;
}

.variant-swatch:hover {
    border-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.variant-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.variant-info {
    text-align: center;
}

.variant-price {
    font-size: 12px;
    font-weight: 600;
    color: #FF6B6B;
}

/* Category Section Styles */
.category-section {
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 35px;
    padding-bottom: 12px;
    border-bottom: 3px solid #FC6C85;
    display: inline-block;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-images {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    cursor: zoom-in;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.product-info h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rating-text {
    font-weight: 600;
    color: #333;
}

.reviews-count {
    color: #666;
}

.product-price {
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FC6C85;
    margin-right: 15px;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
}

.discount {
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

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

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-group h4 {
    margin-bottom: 15px;
    color: #333;
}

.color-options,
.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.color-option,
.size-option {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    line-height: 1;
}

.color-option:hover,
.size-option:hover,
.color-option.active,
.size-option.active,
.color-option.selected,
.size-option.selected {
    border-color: #FF6B6B;
    background: #FF6B6B;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: #FF6B6B;
    color: #FF6B6B;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.add-to-cart-btn,
.buy-now-btn,
.wishlist-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn {
    background: #FC6C85;
    color: white;
}

.buy-now-btn {
    background: linear-gradient(135deg, #F7CAC9 0%, #FFD6C2 100%);
    color: #000000;
}

.wishlist-btn {
    background: white;
    color: #FC6C85;
    border: 2px solid #FC6C85;
}

.add-to-cart-btn:hover,
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wishlist-btn:hover {
    background: #FF6B6B;
    color: white;
}

.product-highlights {
    margin-bottom: 30px;
}

.product-highlights h4 {
    margin-bottom: 15px;
    color: #333;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.product-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.delivery-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    font-size: 24px;
    color: #FF6B6B;
}

.delivery-item strong {
    color: #333;
}

.delivery-item p {
    color: #666;
    margin: 0;
}

/* Product Tabs */
.product-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #FC6C85;
    border-bottom: 2px solid #FC6C85;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 20px;
    color: #333;
}

/* Cart Page Styles */
.cart-main {
    padding: 40px 0;
    background: #FFF0F4;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cart-items {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.clear-cart-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-cart-btn:hover {
    background: #c82333;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    margin-bottom: 10px;
    color: #333;
}

.cart-item-price {
    color: #FF6B6B;
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.cart-item-total {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.continue-shopping-btn {
    display: inline-block;
    background: #FF6B6B;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #e55a5a;
    transform: translateY(-2px);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.summary-card h3 {
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.summary-row.total-row {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.discount-row {
    color: #28a745;
}

.checkout-btn {
    width: 100%;
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background: #e55a5a;
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.secure-checkout {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.secure-checkout i {
    color: #28a745;
    margin-right: 5px;
}

/* Coupon Section */
.coupon-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.coupon-section h4 {
    margin-bottom: 20px;
    color: #333;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.apply-coupon-btn {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-coupon-btn:hover {
    background: #e55a5a;
}

.coupon-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupon-tag {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-tag:hover {
    background: #FF6B6B;
    color: white;
}

/* Address Page Styles */
.address-main {
    padding: 40px 0;
    background: #FFF0F4;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.address-form-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    margin-bottom: 20px;
    color: #555;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    color: white;
    border-color: #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border-color: #6c757d;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border-color: #E85A4F;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    border-color: #5a6268;
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    position: sticky;
    top: 100px;
}

.saved-addresses {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.saved-addresses h4 {
    margin-bottom: 20px;
    color: #333;
}

.add-new-address-btn {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-new-address-btn:hover {
    background: #218838;
}

/* Security Notice */
.security-notice {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.security-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.security-content i {
    font-size: 3rem;
    color: #28a745;
}

.security-content h3 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Checkout Page Styles */
.checkout-main {
    padding: 40px 0;
    background: #FFF0F4;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step.active:not(:last-child):after {
    background: #FF6B6B;
}

.step:nth-child(3):after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

.step.active .step-number {
    background: #FF6B6B;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.step-title {
    font-weight: 600;
    color: #333;
}

.step-desc {
    font-size: 14px;
    color: #666;
}

.checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-method-section,
.order-review-section,
.terms-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #FF6B6B;
    background: #f8f9fa;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.payment-icon {
    font-size: 2rem;
    color: #FF6B6B;
}

.payment-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.payment-info p {
    color: #666;
    margin: 0;
}

.card-payment-form,
.upi-payment-form,
.netbanking-payment-form {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.place-order-btn {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-btn:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Security Features */
.security-features {
    margin-top: 60px;
}

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

.security-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.security-item i {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 20px;
}

.security-item h4 {
    margin-bottom: 15px;
    color: #333;
}

.security-item p {
    color: #666;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #e0e0e0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 30px;
}

.success-icon {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.modal-body h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.modal-body p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.order-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.order-number,
.order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.next-steps h4 {
    margin-bottom: 15px;
    color: #333;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF6B6B;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Recently Viewed */
.recently-viewed {
    margin-top: 60px;
}

.recently-viewed h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Continue Shopping */
.continue-shopping {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.continue-shopping-content h3 {
    margin-bottom: 15px;
    color: #333;
}

.continue-shopping-content p {
    color: #666;
    margin-bottom: 30px;
}

.category-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trending Sarees */
.trending-sarees {
    padding: 60px 0;
    background: #FFF0F4;
}

.trending-sarees h2 {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #000000;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-sections-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-sections-row .footer-section {
    flex: 1;
    text-align: left;
}

.footer-section h3 {
    color: #FF6B6B;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #FF6B6B;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.footer-contact div {
    color: #ecf0f1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    justify-content: flex-start;
    line-height: 1.5;
}

.footer-contact i {
    color: #FF6B6B;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-social a {
    color: #ecf0f1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.footer-social a:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 14px;
}

/* Mobile Footer Styles - Optimized Layout */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px !important;
        margin-top: 40px !important;
    }
    
    .footer-container {
        padding: 0 15px !important;
    }
    
    .footer-sections-row {
        display: flex !important;
        justify-content: space-between !important;
        gap: 25px !important;
    }
    
    .footer-sections-row .footer-section {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .footer-sections-row .footer-section h4 {
        margin-bottom: 15px !important;
        text-align: left !important;
    }
    
    .footer-contact div {
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 8px !important;
    }
    
    .footer-contact i {
        margin-top: 3px !important;
        width: 16px !important;
    }
    
    /* First section - Company info (centered) */
    .footer-section:first-child {
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    
    .footer-section:first-child h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-section:first-child p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
    }
    
    .footer-sections-row {
        display: flex !important;
        justify-content: space-between !important;
        gap: 15px !important;
    }
    
    .footer-sections-row .footer-section {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }
    
    .footer-links {
        text-align: left !important;
    }
    
    .footer-links a {
        display: block !important;
        text-align: left !important;
        padding: 2px 0 !important;
    }
    
    .footer-contact {
        text-align: left !important;
    }
    
    .footer-contact div {
        justify-content: flex-start !important;
        text-align: left !important;
        font-size: 14px !important;
    }
    
    /* Follow Us section (centered) */
    .footer-section:nth-child(4) {
        text-align: center !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    
    .footer-section:nth-child(4) h4 {
        text-align: center !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-bottom {
        padding-top: 15px !important;
    }
    
    .footer-bottom p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 12px !important;
    }
    
    .footer-container {
        padding: 0 12px !important;
    }
    
    .footer-sections-row {
        flex-direction: row !important;
        gap: 15px !important;
    }
    
    .footer-sections-row .footer-section {
        flex: 1 !important;
    }
    
    .footer-contact div {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
    }
    
    .footer-section h3 {
        font-size: 1.2rem !important;
    }
    
    .footer-section h4 {
        font-size: 1rem !important;
    }
    
    .footer-section p {
        font-size: 13px !important;
    }
    
    .footer-contact div {
        font-size: 13px !important;
    }
    
    .footer-social a {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.3rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FFF5F8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
}

/* Selection styling */
::selection {
    background: rgba(252, 108, 133, 0.3);
    color: #000000;
}

/* Focus styles */
*:focus {
    outline: 2px solid rgba(252, 108, 133, 0.6);
    outline-offset: 2px;
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATIONS ===== */

/* Mobile Navigation */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .navbar {
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 15px;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .nav-actions {
        order: 2;
        gap: 12px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        padding: 10px 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
        white-space: nowrap;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 80px 20px 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Categories Section */
    .categories-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .category-card {
        height: 280px;
        margin-bottom: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-rating {
        margin-bottom: 12px;
    }
    
    .stars {
        font-size: 12px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Collections Page */
    .collections-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        order: 2;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .products-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .sort-select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    /* Category Filters */
    .category-filters {
        flex-wrap: wrap;
        gap: 8px;
        margin: 20px 0 30px;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    /* Cart Page */
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-items {
        padding: 20px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 10px;
    }
    
    .quantity-controls {
        gap: 8px;
    }
    
    .quantity-controls button {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .remove-item-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .cart-summary {
        position: static;
        margin-top: 20px;
    }
    
    .summary-card {
        padding: 20px;
    }
    
    /* Address & Checkout */
    .address-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .address-form-section {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .step {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .step-number {
        margin-right: 15px;
    }
    
    /* Product Details */
    .product-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .main-image {
        height: 350px;
    }
    
    .thumbnail-images {
        gap: 10px;
        justify-content: center;
    }
    
    .thumbnail-images img {
        width: 60px;
        height: 60px;
    }
    
    .product-info h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .add-to-cart-btn,
    .buy-now-btn,
    .wishlist-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    
    .color-options,
    .size-options {
        gap: 8px;
    }
    
    .color-option,
    .size-option {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        display: block !important;
        padding: 0 20px;
    }
    
    .footer-section:first-child {
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: inline-block !important;
        width: 48% !important;
        vertical-align: top !important;
        text-align: left !important;
        margin-bottom: 20px !important;
    }
    
    .footer-section:nth-child(2) {
        margin-right: 4% !important;
    }
    
    .footer-section:nth-child(4) {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Modal Improvements */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .modal-footer .btn-primary,
    .modal-footer .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 8px 10px;
    }
    
    .nav-links {
        gap: 10px;
        padding: 8px 0;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero {
        padding: 70px 15px 50px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .categories-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
        padding: 0 5px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .add-to-cart-btn {
        padding: 8px;
        font-size: 12px;
    }
    
    .category-card {
        height: 240px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .main-image {
        height: 280px;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.4rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    button,
    .btn,
    .nav-link,
    .product-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .add-to-cart-btn,
    .buy-now-btn,
    .btn-primary,
    .btn-secondary {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    /* Mobile touch button improvements */
    .mobile-touch-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        user-select: none;
        -webkit-user-select: none;
        cursor: pointer;
        position: relative;
        z-index: 10;
    }
    
    .mobile-touch-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .featured-buttons {
        pointer-events: auto;
        position: relative;
        z-index: 15;
    }
    
    .featured-card .featured-buttons button {
        pointer-events: auto;
        touch-action: manipulation;
    }
}

/* ===== MOBILE NAVBAR IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Fixed header for mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .nav-actions {
        order: 2;
        gap: 15px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 8px;
        padding: 10px 0 5px 0;
        border-top: 1px solid #f0f0f0;
        margin-top: 10px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
        white-space: nowrap;
        border-radius: 20px;
        background: #f8f9fa;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-right: 8px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #FF6B6B;
        color: white;
        transform: translateY(-1px);
    }
    
    .logo-text {
        font-size: 16px;
        white-space: nowrap;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .cart-icon {
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .cart-icon:hover {
        background: rgba(255, 107, 107, 0.1);
        color: #FF6B6B;
    }
    
    .cart-count {
        top: -6px;
        right: -6px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    /* User menu mobile adjustments */
    .user-container {
        padding: 8px;
        border-radius: 8px;
    }
    
    #userMenu {
        right: -5px;
        min-width: 160px;
        padding: 12px;
    }
    
    .profile-link {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .sign-out-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
    }
    
    .nav-links {
        gap: 5px;
        padding: 8px 0 5px 0;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
        margin-right: 5px;
    }
    
    .logo-text {
        font-size: 14px;
        white-space: nowrap;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Address Display Styles */
.address-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.address-info h4 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.address-info p {
    color: #666;
    margin: 5px 0;
    font-size: 14px;
}

.address-actions {
    margin-top: 15px;
}

.address-actions .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.address-actions .btn-secondary:hover {
    background: #5a6268;
}

/* Checkout Button Styles */
.checkout-btn:disabled,
.place-order-btn:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.checkout-btn:not(:disabled),
.place-order-btn:not(:disabled) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:not(:disabled):hover,
.place-order-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Delivery Address Section */
.delivery-address-section {
    margin-bottom: 30px;
}

.delivery-address-section .form-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.delivery-address-section h2 {
    color: #333;
    margin: 0 0 20px 0;
    font-size: 20px;
}

/* Order Items Display */
.order-items {
    margin-top: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fafafa;
}

.order-item:last-child {
    margin-bottom: 0;
}

.item-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.item-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.item-price {
    font-weight: 600;
    color: #667eea;
}

.item-total {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-left: 20px;
}

.no-items {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Place Order Button Improvements */
.place-order-btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-btn:not(:disabled) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.place-order-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.place-order-btn:disabled {
    background: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.place-order-btn.disabled {
    background: #f5f5f5 !important;
    color: #999 !important;
    border: 2px dashed #ddd;
}

/* Modal Improvements */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.success-icon {
    text-align: center;
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 60px;
    color: #28a745;
}

.modal-body h3 {
    text-align: center;
    color: #333;
    margin: 0 0 15px 0;
    font-size: 22px;
}

.modal-body p {
    text-align: center;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.order-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.order-number, .order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.order-number:last-child, .order-total:last-child {
    margin-bottom: 0;
}

.next-steps {
    margin-top: 25px;
}

.next-steps h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-footer .btn-primary,
.modal-footer .btn-secondary {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-footer .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Order Summary Section */
.order-summary-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.order-summary-section h2 {
    color: #333;
    margin: 0 0 25px 0;
    font-size: 20px;
    text-align: center;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fafafa;
}

.order-item:last-child {
    margin-bottom: 0;
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.item-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 12px;
}

.item-price {
    font-weight: 600;
    color: #667eea;
}

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-left: 15px;
}

.order-totals {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.total-row.total-final {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}

.no-items {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Razorpay Payment Styles */
.razorpay-info {
    text-align: center;
    padding: 30px;
}

.payment-gateway h3 {
    color: #333;
    margin-bottom: 15px;
}

.payment-gateway p {
    color: #666;
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-badge {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.payment-badge i {
    color: #FF6B6B;
    margin-right: 5px;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #28a745;
    font-size: 14px;
    margin-top: 20px;
}

.security-info i {
    font-size: 16px;
}

/* Pay Now Section */
.pay-now-section {
    margin-top: 30px;
}

.pay-now-content {
    text-align: center;
    padding: 40px 20px;
}

.pay-now-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    margin-bottom: 20px;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.secure-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #28a745;
    font-size: 14px;
}

.secure-info i {
    font-size: 16px;
}
/* Related Products Section */
.related-products {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-products h2 {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #000000;
    position: relative;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FC6C85 0%, #B76E79 100%);
    border-radius: 2px;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    background: linear-gradient(135deg, #F7CAC9 0%, #FFD6C2 100%);
    font-weight: 600;
    width: 40%;
    color: #000000;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Product Navigation Enhancements */
.product-card {
    will-change: transform, box-shadow;
}

.product-card .product-image {
    will-change: transform;
}

/* Loading States */
.product-image[style*="opacity: 0.5"] {
    filter: blur(2px);
}

.product-image[style*="opacity: 1"] {
    filter: none;
}

/* Smooth Navigation Indicators */
.product-card:active {
    transform: scale(0.98);
}

/* Enhanced Hover Effects for Better UX */
.product-card:hover .product-name {
    color: #FC6C85;
}

.product-card:hover .product-price {
    transform: scale(1.05);
}
/* Smooth Product Navigation */
.product-details {
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(252, 108, 133, 0.25);
}

.product-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-info > * {
    animation: fadeInUp 0.6s ease forwards;
}

.product-info > *:nth-child(1) { animation-delay: 0.1s; }
.product-info > *:nth-child(2) { animation-delay: 0.2s; }
.product-info > *:nth-child(3) { animation-delay: 0.3s; }
.product-info > *:nth-child(4) { animation-delay: 0.4s; }

/* Image Loading */
.main-image {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}
/* Product Card Button Styles */
.see-more-btn {
    width: 100%;
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.buy-now-btn {
    flex: 1;
    background: linear-gradient(135deg, #F7CAC9 0%, #FFD6C2 100%);
    color: #000000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #F5B7B1 0%, #FFCAB0 100%);
    transform: translateY(-2px);
}

.product-info .add-to-cart-btn {
    flex: 1;
    margin-bottom: 0;
}
/* Ensure buttons are properly styled and functional */
.product-card button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.product-card .action-buttons button:hover {
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.3);
}

.product-card .see-more-btn:active,
.product-card .buy-now-btn:active,
.product-card .add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(252, 108, 133, 0.2);
}

/* Prevent card click when clicking buttons */
.product-card .product-info {
    position: relative;
    z-index: 5;
}

.product-card .action-buttons {
    position: relative;
    z-index: 15;
}
/* Product Card Button Styles */
.see-more-btn {
    width: 100%;
    padding: 10px;
    margin: 10px 0 8px 0;
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.see-more-btn:hover {
    background: #e55555;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.add-to-cart-btn, .buy-now-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background: white;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.add-to-cart-btn:hover {
    background: #FF6B6B;
    color: white;
}

.buy-now-btn {
    background: #333;
    color: white;
}

.buy-now-btn:hover {
    background: #555;
}
/* Product Card Button Styles */
.pro-btn {
    margin-top: 10px;
}

.see-more-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.see-more-btn:hover {
    background: #e55555;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.add-to-cart-btn, .buy-now-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background: white;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.add-to-cart-btn:hover {
    background: #FF6B6B;
    color: white;
}

.buy-now-btn {
    background: #333;
    color: white;
}

.buy-now-btn:hover {
    background: #555;
}

/* ===== RESET AND BODY STYLES ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 140px;
}

/* Ensure footer consistency across all pages */
.footer {
    background: #2c3e50 !important;
    color: white !important;
    padding: 40px 0 20px !important;
    margin-top: 60px !important;
}

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

/* ===== ELEGANT HOMEPAGE STYLES ===== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line.accent {
    color: #FFD700;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #FF6B6B;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #FF6B6B;
    transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    color: #C8A2C8;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    height: 350px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.silk-card {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.cotton-card {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.bridal-card {
    background: linear-gradient(135deg, #C8A2C8 0%, #B19CD9 100%);
}

.designer-card {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.card-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.card-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-btn:hover::after {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #C8A2C8 0%, #B19CD9 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .categories-section, .cta-section {
        padding: 60px 0;
    }
}
/* ===== UI IMPROVEMENTS ===== */

/* Global button visibility improvements */
.add-to-cart-btn,
.buy-now-btn,
.see-more-btn,
.category-btn,
.cta-btn,
.continue-shopping-btn,
.checkout-btn,
.place-order-btn,
.apply-coupon-btn,
.clear-cart-btn,
.load-more-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%) !important;
    color: white !important;
    border: 2px solid #FF6B6B !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
    min-height: 44px !important;
}

.add-to-cart-btn:hover,
.buy-now-btn:hover,
.see-more-btn:hover,
.category-btn:hover,
.cta-btn:hover,
.continue-shopping-btn:hover,
.checkout-btn:hover:not(:disabled),
.place-order-btn:hover:not(:disabled),
.apply-coupon-btn:hover,
.clear-cart-btn:hover,
.load-more-btn:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
    border-color: #E85A4F !important;
}

/* Secondary button style for specific cases */
.buy-now-btn {
    background: linear-gradient(135deg, #333 0%, #555 100%) !important;
    border-color: #333 !important;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3) !important;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #555 0%, #777 100%) !important;
    border-color: #555 !important;
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4) !important;
}

/* Navigation link improvements */
.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #FC6C85;
    background: rgba(252, 108, 133, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #FC6C85;
    font-weight: 600;
    background: rgba(252, 108, 133, 0.15);
    border-bottom: 3px solid #FC6C85;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #FC6C85;
    border-radius: 2px;
}

/* Enhanced hero subtitle for better readability */
.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 700px !important;
    margin: 0 auto 2.5rem auto !important;
    opacity: 0.95 !important;
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .nav-actions {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}
/* ===== SEARCH BAR STYLES ===== */
.search-section {
    background: linear-gradient(135deg, #FFF5F8 0%, #F8F9FA 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(252, 108, 133, 0.1);
    position: relative;
    z-index: 998;
    backdrop-filter: blur(10px);
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(252, 108, 133, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: #FC6C85;
    box-shadow: 0 6px 25px rgba(252, 108, 133, 0.25);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: transparent;
    color: #333;
    outline: none;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #FC6C85 0%, #B76E79 100%);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    min-width: 52px;
    height: 52px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.search-btn:hover {
    background: linear-gradient(135deg, #E85A75 0%, #A05D68 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(252, 108, 133, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
}

.search-btn i {
    font-size: 18px;
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(252, 108, 133, 0.2);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(252, 108, 133, 0.05);
    transform: translateX(5px);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.search-result-price {
    color: #FC6C85;
    font-weight: 600;
    font-size: 14px;
}

.search-result-category {
    color: #666;
    font-size: 12px;
    text-transform: capitalize;
    margin-top: 2px;
}

.no-results {
    padding: 30px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
    
    .search-section {
        padding: 15px 0;
        position: static;
    }
    
    .search-container {
        max-width: 100%;
        margin: 0 15px;
        border-radius: 25px;
        min-height: 50px;
    }
    
    .search-input {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
        box-sizing: border-box;
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    .search-btn {
        padding: 14px 18px;
        min-width: 48px;
        height: 48px;
        min-height: 48px;
        flex-shrink: 0;
    }
    
    .search-results {
        margin: 10px 15px 0 15px;
        left: 0;
        right: 0;
        border-radius: 15px;
        position: absolute;
        z-index: 1001;
    }
    
    .search-result-item {
        padding: 12px 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .search-result-name {
        font-size: 14px;
    }
    
    .search-result-price {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 130px;
    }
    
    .search-section {
        padding: 12px 0;
        position: static;
    }
    
    .search-container {
        margin: 0 10px;
        min-height: 48px;
    }
    
    .search-input {
        padding: 12px 18px;
        font-size: 16px;
        min-height: 44px;
        box-sizing: border-box;
    }
    
    .search-btn {
        padding: 12px 16px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }
    
    .search-btn i {
        font-size: 16px;
    }
    
    .search-results {
        margin: 10px 10px 0 10px;
    }
}

/* ===== FINAL BUTTON VISIBILITY FIXES ===== */

/* Ensure all buttons have proper contrast and visibility */
button,
.btn,
.btn-primary,
.btn-secondary,
.add-to-cart-btn,
.buy-now-btn,
.see-more-btn,
.category-btn,
.cta-btn,
.continue-shopping-btn,
.checkout-btn,
.place-order-btn,
.apply-coupon-btn,
.clear-cart-btn,
.load-more-btn,
.add-new-address-btn,
.pay-now-btn,
.btn-add-cart,
.btn-buy-now {
    min-height: 44px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Primary button style (main actions) */
.btn-primary,
.add-to-cart-btn,
.checkout-btn,
.place-order-btn,
.apply-coupon-btn,
.btn-add-cart {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    color: white;
    border-color: #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover,
.add-to-cart-btn:hover,
.checkout-btn:hover:not(:disabled),
.place-order-btn:hover:not(:disabled),
.apply-coupon-btn:hover,
.btn-add-cart:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    border-color: #E85A4F;
}

/* Secondary button style */
.btn-secondary,
.buy-now-btn,
.clear-cart-btn,
.btn-buy-now {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    border-color: #333;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.btn-secondary:hover,
.buy-now-btn:hover,
.clear-cart-btn:hover,
.btn-buy-now:hover {
    background: linear-gradient(135deg, #555 0%, #777 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
    border-color: #555;
}

/* Category and CTA buttons */
.category-btn,
.cta-btn,
.continue-shopping-btn,
.see-more-btn,
.load-more-btn {
    background: linear-gradient(135deg, #C8A2C8 0%, #B19CD9 100%);
    color: white;
    border-color: #C8A2C8;
    box-shadow: 0 4px 15px rgba(200, 162, 200, 0.3);
}

.category-btn:hover,
.cta-btn:hover,
.continue-shopping-btn:hover,
.see-more-btn:hover,
.load-more-btn:hover {
    background: linear-gradient(135deg, #B19CD9 0%, #9B59B6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 162, 200, 0.4);
    border-color: #B19CD9;
}

/* Special buttons */
.add-new-address-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.add-new-address-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border-color: #218838;
}

.pay-now-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    font-size: 16px;
    padding: 16px 32px;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border-color: #218838;
}

/* Disabled state */
button:disabled,
.btn:disabled {
    background: #e0e0e0 !important;
    color: #999 !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Focus states for accessibility */
button:focus,
.btn:focus {
    outline: 2px solid rgba(255, 107, 107, 0.5);
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    button,
    .btn {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 20px;
    }
}
/* Button visibility fix */
.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border: 2px solid #6c757d !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    color: white !important;
    border-color: #5a6268 !important;
}
/* Category Filter Styles */
.page-header {
    text-align: center;
    margin: 40px 0 30px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #f76b6a;
    background: transparent;
    color: #f76b6a;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #f76b6a;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}
/* Enhanced Product Card Styles */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f76b6a;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: #f76b6a;
    border: 2px solid #f76b6a;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #f76b6a;
    color: white;
    transform: scale(1.02);
}
/* Profile Page Styles */
.profile-main {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: fit-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    font-size: 4rem;
    color: #f76b6a;
    margin-bottom: 15px;
}

.profile-header h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.profile-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.profile-nav-link:hover,
.profile-nav-link.active {
    background: #f76b6a;
    color: white;
}

.profile-main-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-section {
    display: none;
}

.profile-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    margin: 0;
    color: #333;
}

.profile-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #f76b6a;
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #666;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.order-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.order-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.order-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.order-items {
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h5 {
    margin: 0 0 5px 0;
    color: #333;
}

.item-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.order-footer {
    text-align: right;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.empty-state p {
    margin: 0 0 30px 0;
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Color Palette Styles */
.color-palette {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 0.85rem;
}

.color-label {
    color: #666;
    font-weight: 500;
}

.color-dots {
    display: flex;
    gap: 4px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #FF6B6B;
}

.selected-color {
    background: #f8f9fa;
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}
/* Sort Section Styles */
.sort-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0 40px 0;
}

.sort-section label {
    font-weight: 600;
    color: #333;
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #f76b6a;
}

/* Action Buttons for Collections */
.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.action-buttons .add-to-cart-btn,
.action-buttons .buy-now-btn {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.action-buttons .add-to-cart-btn {
    background: #f76b6a;
    color: white;
    border: 2px solid #f76b6a;
}

.action-buttons .add-to-cart-btn:hover {
    background: #e55555;
    border-color: #e55555;
    transform: translateY(-1px);
}

.action-buttons .buy-now-btn {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.action-buttons .buy-now-btn:hover {
    background: #555;
    border-color: #555;
    transform: translateY(-1px);
}

/* Mobile Responsive for Sort and Buttons */
@media (max-width: 768px) {
    .sort-section {
        flex-direction: column;
        gap: 8px;
    }
    
    .sort-select {
        width: 200px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-buttons .add-to-cart-btn,
    .action-buttons .buy-now-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .action-buttons .add-to-cart-btn,
    .action-buttons .buy-now-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* Footer Feedback Section */
.footer-feedback {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #34495e;
    margin-bottom: 20px;
}

.feedback-message {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.feedback-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.feedback-btn:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.feedback-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .footer-feedback {
        padding: 20px 0;
    }
    
    .feedback-message {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .feedback-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-feedback {
        padding: 15px 0;
    }
    
    .feedback-message {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .feedback-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* Feedback Modal Styles */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal .modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feedback-modal .modal-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-modal .modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.feedback-modal .modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.feedback-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.feedback-modal .modal-body {
    padding: 25px;
}

.feedback-modal #feedbackText {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.feedback-modal #feedbackText:focus {
    outline: none;
    border-color: #FF6B6B;
}

.feedback-modal .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feedback-modal .submit-btn:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .feedback-modal .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .feedback-modal .modal-header {
        padding: 15px;
    }
    
    .feedback-modal .modal-body {
        padding: 20px;
    }
    
    .feedback-modal #feedbackText {
        min-height: 100px;
        font-size: 16px;
    }
}

/* Custom Amazon-style Scrollbar for Featured Sarees */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
}

.custom-scrollbar {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-wrapper:hover .custom-scrollbar {
    opacity: 1;
}

.scrollbar-track {
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.scrollbar-thumb {
    height: 4px;
    background: linear-gradient(135deg, #FF6B6B 0%, #E85A4F 100%);
    border-radius: 2px;
    position: absolute;
    left: 0;
    cursor: grab;
    transition: all 0.2s ease;
    min-width: 20px;
    width: 30%;
}

.scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E85A4F 0%, #D44638 100%);
    transform: scaleY(1.5);
}

.scrollbar-thumb:active {
    cursor: grabbing;
    transform: scaleY(1.8);
}

@media (max-width: 768px) {
    .carousel-track {
        gap: 20px;
    }
    
    .scrollbar-track {
        width: 150px;
    }
}