/* 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: #333;
    background-color: #fafafa;
}

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

/* Enhanced Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.6rem 0;
    max-height: 70px;
    min-height: 50px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    max-height: 60px !important;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Enhanced Brand Logo */
.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #059669 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
    position: relative;
}

.nav-brand::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.nav-brand:hover::after {
    opacity: 1;
    transform: translateY(-3px);
}

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

/* Enhanced Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: #5a67d8;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 20px;
        opacity: 1;
    }
}

/* Enhanced Action Buttons */
.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-btn,
.cart-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.search-btn::before,
.cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-btn:hover,
.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
}

.search-btn:hover::before,
.cart-btn:hover::before {
    opacity: 1;
}

.search-btn:active,
.cart-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Enhanced Cart Counter */
.cart-count {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 4px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    position: absolute;
    top: -8px;
    right: -8px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    }
}

.cart-btn {
    position: relative;
}

/* Mobile Menu Button (for future mobile menu implementation) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #4b5563;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #667ad1;
}

/* Scroll Effect Class */
.navbar-scroll-effect {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.navbar-scroll-effect.show {
    transform: translateY(0);
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.page.active {
    display: block;
}

/* Import additional Google Fonts for hero */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: linear-gradient(135deg, #1a0f3a 0%, #2d1b69 30%, #3d2991 50%, #1a0f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    overflow: hidden;
}

/* 3D Mountain-like background shapes */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%);
    clip-path: polygon(0% 100%, 25% 40%, 50% 60%, 75% 20%, 100% 50%, 100% 100%);
    transform: rotateX(70deg) translateZ(-100px);
    z-index: 1;
}

/* Animated stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars:before,
.stars:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 200px white,
        400px 250px white,
        1000px 180px white,
        950px 380px white,
        150px 280px white,
        450px 80px white,
        200px 150px white,
        600px 80px white,
        800px 200px white,
        1050px 250px white,
        750px 180px white,
        1100px 220px white,
        100px 350px white;
    animation: twinkle 3s infinite;
}

.stars:after {
    width: 1px;
    height: 1px;
    box-shadow: 
        200px 150px white,
        400px 250px white,
        600px 80px white,
        800px 200px white,
        1000px 120px white,
        100px 350px white,
        500px 180px white,
        700px 400px white,
        900px 50px white,
        1100px 220px white;
    animation: twinkle 2s infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* 3D Geometric shapes positioned like in the original */
.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 5;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    background: linear-gradient(45deg, #ec4899 0%, #f472b6 100%);
    transform: rotateX(45deg) rotateY(30deg) translateZ(50px);
    animation-delay: 0s;
    border-radius: 20px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 5%;
    background: linear-gradient(45deg, #10b981 0%, #34d399 100%);
    transform: rotateX(30deg) rotateY(45deg) translateZ(30px);
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 2%;
    background: linear-gradient(45deg, #f59e0b 0%, #fbbf24 100%);
    transform: rotateX(60deg) rotateY(15deg) translateZ(40px);
    animation-delay: 2s;
    border-radius: 15px;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 8%;
    background: linear-gradient(45deg, #3b82f6 0%, #60a5fa 100%);
    transform: rotateX(45deg) rotateY(-30deg) translateZ(60px);
    animation-delay: 3s;
}

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

.shape-5 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 12%;
    background: linear-gradient(45deg, #8b5cf6 0%, #a78bfa 100%);
    transform: rotateX(30deg) rotateY(-45deg) translateZ(35px);
    animation-delay: 1.5s;
    border-radius: 20px;
}

.shape-6 {
    width: 90px;
    height: 40px;
    bottom: 20%;
    left: 35%;
    background: linear-gradient(45deg, #06b6d4 0%, #67e8f9 100%);
    transform: rotateX(45deg) rotateY(60deg) translateZ(25px);
    animation-delay: 2.5s;
    border-radius: 50px;
}

.shape-7 {
    width: 50px;
    height: 50px;
    top: 8%;
    right: 25%;
    background: linear-gradient(45deg, #ef4444 0%, #f87171 100%);
    transform: rotateX(60deg) rotateY(-20deg) translateZ(45px);
    animation-delay: 3.5s;
}

/* Hero Content styles */
.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

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

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #ffa726, #42a5f5, #ab47bc);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.white-text {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.highlight {
    color: #42a5f5;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive design for hero section */
@media (min-width: 1400px) {
    .main-title {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    .shape {
        display: none;
    }
    
    .main-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Modern Featured Products Section */
.featured-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title .gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Products Container */
.products-container {
    position: relative;
    z-index: 2;
}

/* Scroll Navigation */
.scroll-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-50%);
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
    opacity: 0.8;
}

.scroll-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(102, 126, 234, 0.95);
    color: white;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-btn:active {
    transform: scale(1.05);
}

.scroll-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.scroll-btn:hover svg {
    transform: scale(1.1);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.products-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 2rem 0;
    scroll-behavior: smooth;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    -webkit-overflow-scrolling: touch; /* Better scrolling on iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.products-grid::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Modern Product Cards */
.product-card.modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.product-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

.product-card.modern:hover .card-glow {
    opacity: 1;
}

.product-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    min-width: 280px;
    flex-shrink: 0;
}

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

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optimize for actual uploaded images */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

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

.product-1 {
    background: linear-gradient(45deg, #f6d55c 0%, #ed8936 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, #ed8936 20px, transparent 20px),
        radial-gradient(circle at 80% 70%, #ed8936 15px, transparent 15px);
}

.product-2 {
    background: linear-gradient(45deg, #4a5568 0%, #e53e3e 100%);
    background-image: 
        radial-gradient(ellipse at center, #e53e3e 40%, transparent 60%);
}

.product-3 {
    background: linear-gradient(45deg, #065f46 0%, #059669 100%);
    background-image: 
        linear-gradient(90deg, #059669 50%, #065f46 50%);
}

.product-4 {
    background: linear-gradient(45deg, #e53e3e 0%, #fc8181 100%);
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.product-card .price {
    padding: 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
}

.add-to-cart {
    margin: 1rem;
    width: calc(100% - 2rem);
    background: #059669;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #047857;
    transform: translateY(-1px);
}

/* Authentication Styles */
.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #00027d 0%, #ffffff 100%);
}

.auth-form {
    width: 100%;
}

.profile-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.username-display {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.signout-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signout-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

/* Form Styles */
.form-container {
    max-width: 400px;
    margin: 2rem auto;
    background: rgb(3, 28, 102);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #01050a;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.forgot-password {
    color: #059669;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-button {
    width: 100%;
    background: #059669;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.form-footer a {
    color: #059669;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Checkout Styles */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.checkout-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

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

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.item-details {
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: 500;
    color: #374151;
}

.item-quantity {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    padding-top: 1rem;
}

/* Checkout Items Styles */
.checkout-items {
    margin-bottom: 1rem;
}

.checkout-empty {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.checkout-empty p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.checkout-summary {
    margin-top: 1rem;
}

/* Promo Code Styles */
.promo-code-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.promo-input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.1);
}

.promo-input:disabled {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.promo-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover:not(:disabled) {
    background: #047857;
    transform: translateY(-1px);
}

.promo-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.promo-message {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.promo-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.promo-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Price Breakdown Styles */
.price-breakdown {
    margin-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.price-row.discount-row {
    color: #059669;
    font-weight: 500;
}

.price-row.total-row {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Order Placed Styles */
.success-container {
    max-width: 500px;
    margin: 3rem auto;
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.success-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-container > p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.order-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.order-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
}

.label {
    color: #6b7280;
}

.value {
    font-weight: 600;
    color: #1f2937;
}

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

.secondary-button {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #059669;
    color: white;
    transform: translateY(-1px);
}

/* Cart Styles */
.cart-count {
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 4px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.cart-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    gap: 1rem;
}

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

.item-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.item-info .item-price {
    color: #6b7280;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-weight: 600;
    color: #059669;
    font-size: 1.1rem;
    text-align: right;
}

.remove-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: #fecaca;
    transform: scale(1.1);
}

.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cart-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cart-actions .form-button {
    flex: 1;
}

.cart-actions .secondary-button {
    flex: 1;
}

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

.search-modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

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

.search-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-right: 1rem;
}

#search-input::placeholder {
    color: #9ca3af;
}

.close-search {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.close-search:hover {
    background: #e5e7eb;
    color: #374151;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.search-suggestions {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.search-suggestions p {
    margin: 0;
    font-size: 0.9rem;
}

.search-results-header {
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1rem;
}

.search-results-header p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.search-result-item:hover {
    background: #f8fafc;
    border-color: #059669;
    transform: translateY(-1px);
}

.result-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.result-price {
    margin: 0;
    color: #059669;
    font-weight: 600;
}

.result-add-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.result-add-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.no-results p {
    margin: 0.5rem 0;
}

.search-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 3000;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.search-success p {
    margin: 0;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-brand {
        font-size: 1.25rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .search-btn,
    .cart-btn {
        min-width: 34px;
        height: 34px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .main-title,
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .success-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        min-width: 240px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .scroll-left {
        left: -20px;
    }
    
    .scroll-right {
        right: -20px;
    }
    
    .scroll-btn span {
        font-size: 1.2rem;
    }
    
    .products-scroll-container {
        gap: 0.5rem;
    }
    
    .cart-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .item-total {
        text-align: center;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .search-modal {
        padding-top: 20px;
    }
    
    .search-modal-content {
        width: 95%;
        margin: 0 auto;
    }
    
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .result-add-btn {
        align-self: stretch;
        text-align: center;
    }
    
    /* Shop page responsive styles */
    .shop-container {
        padding: 1rem 15px;
    }
    
    .filter-container {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    /* Product details responsive styles */
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-product-image {
        height: 300px;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-details-container {
        padding: 1rem 15px;
    }
    
    /* Promo code responsive styles */
    .promo-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .promo-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0 !important;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-menu {
        display: none; /* Hide on mobile - could implement hamburger menu */
    }
    
    .nav-brand {
        font-size: 1.15rem;
    }
    
    .nav-brand::after {
        display: none; /* Hide sparkle on mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-btn,
    .cart-btn {
        min-width: 50px;
        height: 29px;
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .cart-count {
        min-width: px;
        height: 14px;
        font-size: 0.6rem;
        top: 3px;
        right:0px;
    }
    
    .main-title,
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .hero {
        height: 60vh;
    }
    
    .featured-section {
        padding: 2rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }
    
    .product-card {
        min-width: 160px;
    }
    
    .product-card h3 {
        font-size: 1rem;
        padding: 0.75rem 0.75rem 0.5rem;
    }
    
    .product-card .price {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
    
    .add-to-cart {
        margin: 0.75rem;
        width: calc(100% - 1.5rem);
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .scroll-btn span {
        font-size: 1rem;
    }
    
    .products-scroll-container {
        gap: 0.25rem;
    }
    
    /* Shop page mobile styles */
    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .filter-container {
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Product details mobile styles */
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .main-product-image {
        height: 280px;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .main-product-image img {
        border-radius: 8px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .size-options {
        gap: 0.5rem;
    }
    
    .size-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Mobile menu toggle styles */
    .nav-menu.mobile-active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background:#1d1756;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-menu.mobile-active .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.mobile-active .nav-links a {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu.mobile-active .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-menu.mobile-active .nav-links a:hover {
        background: #f8fafc;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 0.75rem;
    }
    
    .product-card {
        min-width: 150px;
    }
    
    .product-card h3 {
        font-size: 0.9rem;
        padding: 0.75rem 0.75rem 0.5rem;
    }
    
    .product-card .price {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
    
    .add-to-cart {
        margin: 0.75rem;
        width: calc(100% - 1.5rem);
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Shop Page Styles */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: #f8fafc;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f1f5f9;
    border-color: #059669;
    color: #059669;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #059669;
    color: white;
    border-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.shop-results {
    min-height: 400px;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.no-products {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.no-products p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    grid-column: 1 / -1;
}

.loading-spinner p {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #059669;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Details Page Styles */
.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.product-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    background: hsl(208, 17%, 81%);
    color: #6b7280;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-1px);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.product-image-large {
    position: relative;
}

.main-product-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    background-color: #f5f5f5;
    /*align-items: center;*/
    /*justify-content: center;*/
    overflow: hidden;
}

.main-product-image:hover {
    transform: scale(1.02);
}

/* For actual image elements in product details */
.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
}

/* Mobile-specific styles for product image - must come after default styles */
@media (max-width: 768px) {
    .main-product-image {
        height: 300px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .main-product-image img {
        border-radius: 8px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .product-image-large {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 5px !important;
    }
    
    .main-product-image {
        height: 280px !important;
        width: 95% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        border-radius: 8px;
    }
    
    .main-product-image img {
        border-radius: 8px;
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

.product-info {
    padding: 1rem 0;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.original-price {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-description p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}


.product-options {
    margin-bottom: 2rem;
}

.size-selector,
.quantity-selector {
    margin-bottom: 1.5rem;
}

.size-selector h4,
.quantity-selector h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.size-options {
    display: flex;
    gap: 0.75rem;
}

.size-btn {
    background: #f8fafc;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.size-btn:hover {
    background: #f1f5f9;
    border-color: #059669;
    color: #059669;
}

.size-btn.active {
    background: #059669;
    color: white;
    border-color: #059669;
}

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

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.add-to-cart-btn:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

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

.buy-now-btn:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.25);
}

.product-tags {
    margin-top: 2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f1f5f9;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Make product images and titles clickable */
.product-image,
.product-card h3 {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.product-card h3:hover {
    color: #059669;
}


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

.page.active {
    animation: fadeIn 0.5s ease;
}

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

/* Product Details Page Styles */
.product-details-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.product-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.back-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-image-large {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

/* Main product image styling - consolidated above */
/* This duplicate section has been merged with the main styling */

.product-info {
    padding: 1rem 0;
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-price-section {
    margin-bottom: 2rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-right: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: #6b7280;
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-description p {
    color: #6b7280;
    line-height: 1.6;
}

.product-options {
    margin-bottom: 2rem;
}

.size-selector,
.quantity-selector {
    margin-bottom: 1.5rem;
}

.size-selector h4,
.quantity-selector h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.size-btn:hover,
.size-btn.active {
    background: #059669;
    color: white;
    border-color: #059669;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

.add-to-cart-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

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

.buy-now-btn:hover {
    background: #111827;
    transform: translateY(-1px);
}

.product-tags {
    margin-top: 2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shop Page Styles */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.filter-btn:hover,
.filter-btn.active {
    background: #059669;
    color: white;
    border-color: #059669;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.no-products p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6b7280;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #059669;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #f9fafb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #059669;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #d1d5db;
}

.contact-info a {
    color: #059669;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #d1d5db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #059669;
}

.social-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.brand-message {
    font-size: 1rem;
    color: #9ca3af;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.footer-legal {
    color: #6b7280;
    font-size: 0.8rem;
}

/* Policy Page Styles */
.policy-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.policy-container h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.policy-section h2 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-list {
    color: #4b5563;
    margin-left: 1.5rem;
    line-height: 1.7;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

.policy-steps {
    color: #4b5563;
    margin-left: 1.5rem;
    line-height: 1.7;
}

.policy-steps li {
    margin-bottom: 1rem;
}

.policy-section a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    color: #047857;
    text-decoration: underline;
}

/* Reviews Page Styles */
.reviews-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.reviews-container h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.reviews-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-list {
    margin-bottom: 3rem;
}

.review-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-title {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-form-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.review-form-section h2 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.review-form-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: #d1d5db;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #fbbf24;
}

.star-rating input[type="radio"]:checked ~ label {
    color: #fbbf24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .policy-container {
        padding: 0 1rem;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .reviews-container h1 {
        font-size: 2rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Enhanced Filter Dropdown Styles */
.filter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-toggle {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    min-width: 200px;
    justify-content: space-between;
}

.filter-toggle:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.filter-toggle.active {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.filter-icon {
    font-size: 1.1rem;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.filter-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 0.5rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.filter-dropdown-content.show {
    display: block;
    animation: dropdownOpen 0.3s ease;
}

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

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background: #f8fafc;
    color: #059669;
}

.filter-option.active {
    background: #ecfdf5;
    color: #059669;
    font-weight: 600;
}

.filter-option.active::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #059669;
    font-weight: bold;
}

.category-name {
    font-size: 0.95rem;
    text-transform: capitalize;
}

.category-count {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.filter-option.active .category-count {
    background: #d1fae5;
    color: #059669;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.active-filter-label {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.active-filter-label strong {
    color: #059669;
}

/* Mobile Responsiveness for Filter Dropdown */
@media (max-width: 768px) {
    .filter-toggle {
        min-width: 180px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .filter-dropdown-content {
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
    }
    
    .filter-option {
        padding: 0.75rem 1rem;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
    
    .category-count {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .filter-toggle {
        min-width: 160px;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .filter-dropdown-content {
        min-width: 180px;
    }
    
    .filter-option {
        padding: 0.65rem 0.875rem;
    }
    
    .active-filter-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* View All Products Button Styles */
.section-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.view-all-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(3px);
}

.view-all-btn span {
    position: relative;
    z-index: 2;
}

/* Alternative modern outlined style (comment out above and use this for outlined version) */
/*
.view-all-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s ease;
    z-index: 1;
}

.view-all-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover::before {
    width: 100%;
}

.view-all-btn span,
.view-all-btn svg {
    position: relative;
    z-index: 2;
}
*/

/* Responsive styles for View All button */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .section-footer {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .view-all-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 40px;
    }
    
    .section-footer {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #059669;
    outline-offset: 2px;
}
