/* Global Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
    transition: all 0.3s ease;
}

.audio-control:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #4a6bff 0%, #2bdcfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
} */
 .logo img {
    height: 40px; /* Adjust this value to your preferred height */
    width: auto; /* This maintains aspect ratio */
    transition: var(--transition); /* Optional: if you want smooth resizing */
}

/* Optional: Make the logo slightly smaller when header is scrolled */
.header.scrolled .logo img {
    height: 35px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.nav-icons a {
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--primary);
}

.cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cart-count {
    /* Make sure this matches your existing styles */
    display: none;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}
/* Add to Cart Button Styles */
.add-to-cart-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #4CAF50; /* Green background */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* If the button is inside a product card */
.product-card .add-to-cart-btn {
    margin-top: 10px;
}

#menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.search-form {
    position: absolute;
    top: 110%;
    right: 2rem;
    width: 50rem;
    height: 5rem;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
    opacity: 0;
}

.search-form.active {
    transform: scaleY(1);
    opacity: 1;
}

.search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--dark);
    padding: 0 1.5rem;
    border: none;
    outline: none;
}

.search-form label {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.search-form label:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
    position: relative;
}

/* Animated Tech Circles */
.tech-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}
.tech-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}
.tech-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}
.tech-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--success);
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

/* Animated Tech Particles */
.tech-particle {
    position: absolute;
    background-color: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
    z-index: 0;
}
.tech-particle-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}
.tech-particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 25s;
}
.tech-particle-3 {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 18s;
}

/* Tech Grid Animation */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: circuitMove 60s linear infinite;
    z-index: 0;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-5%, 5%);
    }
    50% {
        transform: translate(5%, -5%);
    }
    75% {
        transform: translate(-5%, -5%);
    }
}

@keyframes circuitMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-50px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(40px);
        opacity: 1;
    }
    75% {
        transform: translateY(50px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
}

/* Ensure content stays above animations */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Existing hero content styles */
.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}
.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}
.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}
.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}


/* Categories Section - Enhanced */
.categories {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffff 0%, #ffff 100%);
    font-family: 'Poppins', sans-serif;
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    padding: 25px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-img {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.category-card p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4a6bff 0%, #3a56d4 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(74, 107, 255, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #3a56d4 0%, #2a42b4 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 107, 255, 0.4);
}

@media (max-width: 768px) {
    .categories {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .categories {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}
/* Categories Footer Styles */
.categories-footer {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.tech-dots {
    position: absolute;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    animation: moveDots 60s linear infinite;
}

.tech-dots-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.tech-dots-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation-direction: reverse;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 10px);
    }
    50% {
        transform: translate(0, 20px);
    }
    75% {
        transform: translate(-10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.tech-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".1"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".3"/></svg>');
    background-size: cover;
    animation: wave 10s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: #6e8efb;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #f8fafc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--danger);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.product-badge.sale {
    background-color: var(--secondary);
}

.product-badge.new {
    background-color: var(--success);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.product-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.product-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: var(--primary); /* Change to your primary color */
}

.product-action-btn:hover::after {
    opacity: 1;
}

.product-action-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.product-action-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.product-action-btn:hover i {
    transform: scale(1.1);
}

/* Tooltip on hover */
.product-action-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    margin-bottom: 8px;
}

.product-action-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: var(--secondary);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--gray);
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-dark);
}

/* Banner Section */
.banner {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    scroll-snap-align: start;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 20px;
    color: var(--secondary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.customer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer h4 {
    font-size: 1rem;
    color: var(--dark);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #2a5c6b 0%, #1d4b58 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232,192,125,0.2) 0%, rgba(232,192,125,0) 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.newsletter form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.newsletter input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.newsletter .btn {
    background-color: #e8c07d;
    color: #1a1a1a;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(232,192,125,0.3);
}

.newsletter .btn:hover {
    background-color: #f0d08a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(232,192,125,0.4);
}
.newsletter input.error {
    border: 2px solid #f44336 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Beautiful Message Styles */
.message-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
    pointer-events: none;
}

.message {
    background: white;
    color: #2a5c6b;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.message:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e8c07d, #2a5c6b);
    animation: progress 4s linear forwards;
}

.message.visible {
    transform: translateY(0);
    opacity: 1;
}

.message.success {
    background: white;
    border-left: 4px solid #4CAF50;
}

.message.error {
    background: white;
    border-left: 4px solid #f44336;
}

.message-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.message.success .message-icon {
    color: #4CAF50;
}

.message.error .message-icon {
    color: #f44336;
}

.message-content {
    text-align: left;
}

.message-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.message-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Confetti effect */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #e8c07d;
    opacity: 0;
}

@media (max-width: 768px) {
    .newsletter {
        padding: 60px 20px;
    }
    
    .newsletter form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter input,
    .newsletter .btn {
        width: 100%;
    }
    
    .message {
        padding: 15px 20px;
        max-width: 90%;
    }
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    margin-bottom: 20px;
    color: var(--gray);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: white;
}

/* Specific colors for each social media on hover */
.social-icon:nth-child(1):hover { background: #3b5998; } /* Facebook */
.social-icon:nth-child(2):hover { background: #0a0a0a; } /* Twitter x*/
.social-icon:nth-child(3):hover { background: #E1306C; } /* Instagram */
.social-icon:nth-child(4):hover { background: #0c58e3; } /* linkedin */

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--gray);
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Login Form */
.login-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.login-form-container.active {
    opacity: 1;
    visibility: visible;
}

.login-form-container form {
    background: white;
    width: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.login-form-container.active form {
    transform: scale(1);
}

.login-form-container form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

.login-form-container form .box {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.login-form-container form .box:focus {
    border-color: var(--primary);
}

.login-form-container form .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.login-form-container form .remember-forgot a {
    color: var(--primary);
    transition: var(--transition);
}

.login-form-container form .remember-forgot a:hover {
    text-decoration: underline;
}

.login-form-container form .btn {
    width: 100%;
    margin-bottom: 15px;
}

.login-form-container form p {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.login-form-container form p a {
    color: var(--primary);
    transition: var(--transition);
}

.login-form-container form p a:hover {
    text-decoration: underline;
}

#close-login-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

#close-login-btn:hover {
    color: var(--danger);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .search-form {
        width: 90%;
        right: 5%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter button {
        border-radius: 5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .login-form-container form {
        width: 90%;
    }
}