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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #f59e0b;
    --success: #10b981;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* NAV STYLES */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s;
}

.logo:hover { transform: scale(1.02); }

.logo img {
    height: 55px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

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

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.cart-icon:hover { transform: scale(1.1); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* BREADCRUMB */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    color: var(--dark);
    font-weight: 600;
}

/* ENHANCED HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Beams Background Effect - Light Beams */
.beams-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.7;
}

/* Vertical Beams */
.beam-vertical {
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(59, 130, 246, 0.8) 30%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(59, 130, 246, 0.8) 70%,
        transparent 100%
    );
    filter: blur(2px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    animation: beamVerticalMove 8s ease-in-out infinite;
}

@keyframes beamVerticalMove {
    0%, 100% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
    }
}

/* Diagonal Beams */
.beam-diagonal {
    position: absolute;
    width: 2px;
    height: 150%;
    top: -50%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(34, 211, 238, 0.7) 30%,
        rgba(59, 130, 246, 0.7) 50%,
        rgba(34, 211, 238, 0.7) 70%,
        transparent 100%
    );
    filter: blur(3px);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
    animation: beamDiagonalMove 10s linear infinite;
}

@keyframes beamDiagonalMove {
    0% {
        transform: translateX(-100%) translateY(-50%) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(200%) translateY(-50%) rotate(45deg);
        opacity: 0;
    }
}

/* Horizontal Beams */
.beam-horizontal {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.6) 30%,
        rgba(236, 72, 153, 0.6) 50%,
        rgba(139, 92, 246, 0.6) 70%,
        transparent 100%
    );
    filter: blur(2px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: beamHorizontalMove 12s ease-in-out infinite;
}

@keyframes beamHorizontalMove {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(100%);
    }
}

/* Radial Beam Bursts */
.beam-radial {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(59, 130, 246, 0.9),
        transparent
    );
    filter: blur(1px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform-origin: left center;
    animation: beamRadialRotate 15s linear infinite;
}

@keyframes beamRadialRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

/* Pulse Glow Effect */
.beam-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.3),
        transparent 70%
    );
    animation: beamGlowPulse 4s ease-in-out infinite;
}

@keyframes beamGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        transparent
    );
    filter: blur(1px);
    animation: shootingStar 3s linear infinite;
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(300px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }
}

/* Floating Gradient Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #1d4ed8;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content { 
    position: relative; 
    z-index: 2;
    max-width: 1200px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(100, 180, 255, 0.1);
    border: 1px solid rgba(100, 180, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64b4ff;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInScale 0.6s ease-out;
}

.hero-badge::before {
    content: '✨';
    font-size: 1rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #64b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: clamp(1.125rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    color: #a8b2d1;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Enhanced CTA Button with Shimmer Effect */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    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.3), transparent);
    transition: left 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* SECTIONS */
section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 800;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1.2rem auto;
    border-radius: 3px;
}

/* CATEGORIES GRID */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    text-decoration: none;
    color: var(--dark);
    opacity: 0;
    transform: translateY(30px);
}

.category-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
}

.category-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.category-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

/* ENHANCED PRODUCTS SECTION */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 3D Tilt Effect on Hover */
.product-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine Effect on Product Images */
.product-card:hover .product-image { 
    transform: scale(1.1);
}

.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.product-card:hover .product-image-container::after {
    left: 100%;
}

.product-info { padding: 2rem; }

.product-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 700;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price-primary {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    display: block;
}

.price-secondary {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 600;
    display: block;
    margin-top: 0.3rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.quantity-display {
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    color: var(--dark);
}

/* Pulse Animation for Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ENHANCED FEATURES SECTION */
.features {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Glowing Feature Cards */
.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Glow Effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.7;
}

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

/* Animated Icon on Hover */
.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ABOUT SECTION WITH SCROLL ANIMATIONS */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
}

.about-text.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.3;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(30px);
}

.about-image.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

/* CONTACT SECTION */
.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    opacity: 0;
    transform: scale(0.9);
}

.contact-box.visible {
    animation: fadeInScale 0.6s ease-out forwards;
}

.contact-box p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-box strong {
    min-width: 120px;
    opacity: 0.9;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.modal.active { display: flex; }

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: var(--light);
    color: var(--dark);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light);
    align-items: center;
    transition: background 0.3s;
}

.cart-item:hover { background: var(--light); }

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

.cart-item-info { flex: 1; }

.cart-item-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-remove {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.cart-total {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid var(--light);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: right;
    color: var(--primary);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

.empty-cart h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

footer h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
}

footer a:hover { color: var(--secondary); }

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: var(--primary);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--secondary);
}

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

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem;
        min-height: 90vh;
    }
    
    .hero h1 { 
        font-size: 2.2rem;
    }
    
    .hero p { 
        font-size: 1.1rem; 
    }
    
    .about-content { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .nav-links { 
        gap: 1.5rem; 
        font-size: 0.9rem; 
    }
    
    .products-grid, .categories-grid { 
        grid-template-columns: 1fr; 
    }

    .floating-shape {
        display: none;
    }
}
