/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121212; /* Dark background */
    color: white;
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
    scroll-behavior: smooth; /* Smooth scroll */
}

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

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

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

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo-text span {
    color: #a100f2;
    text-shadow: 0 0 8px rgba(161, 0, 242, 0.5);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #a100f2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-menu ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover {
    color: #a100f2;
    transform: translateY(-2px);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a100f2;
    transition: width 0.3s ease;
}

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

/* Icons (Login/Signup Buttons) */
.icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn {
    background: linear-gradient(135deg, #6a0dad, #a100f2);
    color: white;
}

.signup-btn {
    background: linear-gradient(135deg, #ff00ff, #a100f2);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(161, 0, 242, 0.4);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
    }

    .icons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .btn {
        width: 150px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 5%;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1rem; /* Reduced from 1.2rem for smaller appearance */
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .logo {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 0.9rem; /* Even smaller for very small screens */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/landingpage.jpeg') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: #a100f2; /* Neon Purple */
    text-shadow: 0 0 10px #a100f2;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin: 15px 0 30px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #a100f2;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.primary {
    background-color: #a100f2;
    color: #fff;
    box-shadow: 0 0 15px #a100f2;
}

.primary:hover {
    background-color: transparent;
    color: #a100f2;
}

.secondary {
    background-color: transparent;
    color: #a100f2;
}

.secondary:hover {
    background-color: #a100f2;
    color: #fff;
    box-shadow: 0 0 15px #a100f2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Voucher Section */
.voucher-section {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

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

.voucher-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.voucher-section h2 span {
    background: linear-gradient(135deg, #a100f2, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(161, 0, 242, 0.5));
}

.voucher-section > p {
    font-size: 20px;
    color: #c0c0c0;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.voucher-card {
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9), rgba(40, 40, 70, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(161, 0, 242, 0.2);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a100f2, #ff00ff, #a100f2);
    animation: shimmer 3s linear infinite;
}

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

.voucher-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 2px rgba(161, 0, 242, 0.3);
}

.voucher-card .voucher-left {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 2px rgba(161, 0, 242, 0.3);
}

.voucher-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(161, 0, 242, 0.4);
    border-color: rgba(161, 0, 242, 0.5);
}

.voucher-card .voucher-header {
    background: linear-gradient(135deg, rgba(161, 0, 242, 0.1), rgba(255, 0, 255, 0.1));
    padding: 25px 30px 20px;
    border-bottom: 1px dashed rgba(161, 0, 242, 0.3);
    position: relative;
}

.voucher-card .voucher-body {
    padding: 25px 30px;
}

.voucher-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff, #a100f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.voucher-card h3::before {
    content: '🎟️';
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(161, 0, 242, 0.5));
}

.voucher-card .discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a100f2, #ff00ff);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(161, 0, 242, 0.4);
    animation: pulse 2s infinite;
}

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

.voucher-card p {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 300;
}

.voucher-card .expiry-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.voucher-card .expiry-info::before {
    content: '⏰';
    font-size: 16px;
}

.voucher-card .btn.primary {
    width: 100%;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #a100f2, #ff00ff);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.voucher-card .btn.primary::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;
}

.voucher-card .btn.primary:hover::before {
    left: 100%;
}

.voucher-card .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 0, 242, 0.5);
}

.voucher-card .btn.primary:active {
    transform: translateY(0);
}

/* Modern dotted separator */
.voucher-separator {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(161, 0, 242, 0.3) 50%, transparent 100%);
    margin: 20px 0;
    overflow: visible;
}

.voucher-separator::before {
    content: '✂';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a2e;
    color: #a100f2;
    padding: 5px;
    font-size: 14px;
}

/* Empty state styling */
.voucher-grid p {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-size: 18px;
    padding: 40px;
    background: rgba(30, 30, 50, 0.5);
    border-radius: 12px;
    border: 1px dashed rgba(161, 0, 242, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .voucher-section {
        padding: 60px 5%;
    }
    
    .voucher-section h2 {
        font-size: 32px;
    }
    
    .voucher-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .voucher-card h3 {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .voucher-card .voucher-header,
    .voucher-card .voucher-body {
        padding: 20px 25px;
    }
    
    .voucher-card .btn.primary {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .voucher-grid {
        grid-template-columns: 1fr;
    }
    
    .voucher-card .voucher-header,
    .voucher-card .voucher-body {
        padding: 18px 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .voucher-card {
        padding: 20px;
    }
    .voucher-card h3 {
        font-size: 22px;
    }
    .voucher-card .btn.primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* About Us Section */
.about-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background: #1a1a2e;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.about-content h2 span {
    color: #a100f2; /* Neon Purple */
    text-shadow: 0 0 10px #a100f2;
}

.about-content p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
}

        /* Modern About Us Section */
        .about-us {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 100px 8%;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Animated background elements */
        .about-us::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(161, 0, 242, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
            z-index: 1;
        }

        .about-us::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite reverse;
            z-index: 1;
        }

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

        .about-content {
            z-index: 2;
            position: relative;
            animation: slideInLeft 1s ease-out;
        }

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

        .about-content h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #a100f2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .about-content h2 span {
            background: linear-gradient(135deg, #a100f2 0%, #00ffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .about-content h2 span::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #a100f2, #00ffff);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 10px #a100f2; }
            to { box-shadow: 0 0 20px #00ffff; }
        }

        .about-content p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 24px;
            line-height: 1.8;
            font-weight: 400;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 16px 32px;
            background: linear-gradient(135deg, #a100f2 0%, #6a0572 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #00ffff 0%, #a100f2 100%);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(161, 0, 242, 0.3);
        }

        /* Modern Slideshow Container */
        .about-image {
            z-index: 2;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

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

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .slideshow-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1.1);
            filter: brightness(0.8) contrast(1.1);
        }

        .slideshow-image.active {
            opacity: 1;
            transform: scale(1);
        }

        .slideshow-image.next {
            opacity: 0;
            transform: scale(0.95);
        }

        /* Overlay gradient for better text visibility */
        .slideshow-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(161, 0, 242, 0.1) 0%,
                transparent 30%,
                transparent 70%,
                rgba(0, 255, 255, 0.1) 100%
            );
            z-index: 2;
            pointer-events: none;
        }

        /* Progress indicator */
        .slideshow-progress {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .progress-dot.active {
            background: linear-gradient(135deg, #a100f2, #00ffff);
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(161, 0, 242, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-us {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 80px 6%;
            }

            .slideshow-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .about-us {
                padding: 60px 4%;
                gap: 40px;
            }

            .slideshow-container {
                height: 300px;
            }

            .about-content p {
                font-size: 1rem;
            }
        }

        /* Loading animation */
        .slideshow-container.loading {
            background: linear-gradient(90deg, #1a1a2e 25%, #2a2a3e 50%, #1a1a2e 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

/* Featured Section */
.featured {
    text-align: center;
    padding: 60px 10%;
    background: #1a1a2e;
}

.featured h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}

.featured h2 span {
    color: #a100f2; /* Neon Purple */
    text-shadow: 0 0 10px #a100f2;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Product Cards */
.product-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(161, 0, 242, 0.3);
}

.product-card:hover {
    box-shadow: 0 0 20px rgba(161, 0, 242, 0.6);
}

.product-card img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.product-card h3 {
    margin: 15px 0 10px;
    font-size: 22px;
    color: #a100f2;
}

.product-card p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

/* Limited-Time Deals Section */
.limited-deals {
    text-align: center;
    padding: 60px 10%;
    background: #1a1a2e;
}

.limited-deals h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.limited-deals h2 span {
    color: #a100f2; /* Neon Purple */
    text-shadow: 0 0 10px #a100f2;
}

.limited-deals p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 20px;
}

/* Countdown Timer */
#countdown {
    font-size: 32px;
    font-weight: bold;
    color: #a100f2;
    text-shadow: 0 0 15px #a100f2;
    margin-bottom: 30px;
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Deal Cards */
.deal-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(161, 0, 242, 0.3);
}

.deal-card:hover {
    box-shadow: 0 0 20px rgba(161, 0, 242, 0.6);
}

.deal-card img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.deal-card h3 {
    margin: 15px 0 10px;
    font-size: 22px;
    color: #a100f2;
}

.deal-card p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.deal-card .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.deal-card .new-price {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 10px #a100f2;
}

.customer-reviews {
    position: relative;
    padding: 100px 5% 80px;
    overflow: hidden;
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
    align-items: center; /* Add this to center children */
}

        /* Animated Background Elements */
        .customer-reviews::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(161, 0, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 0, 150, 0.08) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(2deg); }
        }

        .reviews-header {
            position: relative;
            z-index: 2;
            text-align: center; /* This is already present and centers the h2 and p */
            margin-bottom: 60px;
            animation: fadeInUp 1s ease-out;
            display: flex; /* Add this to use flexbox for vertical centering if needed */
            flex-direction: column; /* Stack the h2 and p vertically */
            align-items: center; /* Ensure horizontal centering */
            justify-content: center; /* Ensure vertical centering if the container has a height */
        }

        .reviews-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #a100f2 50%, #00ffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .reviews-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #a100f2, #00ffff);
            border-radius: 2px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
            50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.2); }
        }

        .reviews-header p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Reviews Grid */
        .reviews-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Review Card */
        .review-card {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 32px 28px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

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

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(161, 0, 242, 0.1), rgba(0, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

        .review-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(161, 0, 242, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(161, 0, 242, 0.4);
        }

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

        /* Profile Image */
        .profile-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .review-card img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .profile-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #a100f2, #00ffff, #ff0096);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: rotate 3s linear infinite;
        }

        .review-card:hover .profile-container::before {
            opacity: 1;
        }

        .review-card:hover img {
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* User Name */
        .review-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #ffffff, #a100f2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        /* Review Text */
        .review-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 2;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-text::before,
        .review-text::after {
            content: '"';
            font-size: 2rem;
            color: rgba(161, 0, 242, 0.4);
            font-family: Georgia, serif;
            position: absolute;
        }

        .review-text::before {
            top: -10px;
            left: -5px;
        }

        .review-text::after {
            bottom: -20px;
            right: -5px;
        }

        /* Star Ratings */
        .stars-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
            margin-top: 16px;
        }

        .star {
            font-size: 1.4rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .star.filled {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
            animation: starGlow 2s ease-in-out infinite;
        }

        .star.empty {
            color: rgba(255, 255, 255, 0.2);
        }

        .review-card:hover .star.filled {
            transform: scale(1.2);
            animation: starBounce 0.6s ease-in-out;
        }

        @keyframes starGlow {
            0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
            50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.9); }
        }

        @keyframes starBounce {
            0%, 100% { transform: scale(1.2); }
            50% { transform: scale(1.4); }
        }

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

        /* No Reviews State */
        .no-reviews {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .customer-reviews {
                padding: 60px 5% 50px;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .review-card {
                padding: 24px 20px;
            }
            
            .reviews-header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .review-card {
                padding: 20px 16px;
            }
            
            .review-card img {
                width: 70px;
                height: 70px;
            }
        }

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 60px 10%;
    background: #1a1a2e;
}

.why-choose-us h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.why-choose-us h2 span {
    color: #a100f2; /* Neon Purple */
    text-shadow: 0 0 10px #a100f2;
}

.why-choose-us p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 30px;
}

/* Trust Signals Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Trust Cards */
.trust-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(161, 0, 242, 0.3);
}

.trust-card:hover {
    box-shadow: 0 0 20px rgba(161, 0, 242, 0.6);
    transform: translateY(-5px);
}

.trust-card i {
    font-size: 40px;
    color: #a100f2;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #a100f2;
}

.trust-card h3 {
    font-size: 20px;
    color: #a100f2;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    color: #bbb;
}

/* Footer Section */
footer {
    background: #1a1a2e;
    padding: 40px 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-about h2 {
    font-size: 28px;
    color: #fff;
}

.footer-about h2 span {
    color: #a100f2;
    text-shadow: 0 0 10px #a100f2;
}

.footer-about p {
    font-size: 14px;
    color: #bbb;
    margin-top: 10px;
}

/* Footer Links */
.footer-links h3,
.footer-social h3 {
    font-size: 20px;
    color: #a100f2;
    text-shadow: 0 0 10px #a100f2;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #a100f2;
    text-shadow: 0 0 10px #a100f2;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 20px;
    color: #ddd;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #a100f2;
    text-shadow: 0 0 15px #a100f2;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}

/* Carousel Styles */
:root {
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;
}

.carousel {
    position: relative;
    height: 800px;
    overflow: hidden;
    margin-top: -50px;
    background: #1a1a2e;
}

.carousel .list {
    position: absolute;
    width: 1140px;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.carousel .list .item {
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}

.carousel .list .item:nth-child(n + 5) {
    opacity: 0;
}

.carousel .list .item:nth-child(2) {
    z-index: 10;
    transform: translateX(0);
}

.carousel .list .item img {
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
    border-radius: 10px;
}

.carousel .list .item .introduce {
    opacity: 0;
    pointer-events: none;
}

.carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s;
}

.carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
    color: #a100f2;
}

.carousel .list .item .introduce .topic {
    font-size: 4em;
    font-weight: 500;
    color: #fff;
}

.carousel .list .item .introduce .des {
    font-size: small;
    color: #bbb;
}

.carousel .list .item .introduce .seeMore {
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #a100f2;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 3px;
    transition: background 0.5s;
    color: #a100f2;
}

.carousel .list .item .introduce .seeMore:hover {
    background: #333;
}

.carousel .list .item:nth-child(1) {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}

.carousel .list .item:nth-child(3) {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}

.carousel .list .item:nth-child(4) {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}

.carousel .list .item:nth-child(5) {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}

/* Animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore {
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

@keyframes showContent {
    from {
        transform: translateY(-30px);
        filter: blur(10px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

.carousel .list .item:nth-child(2) .introduce .topic {
    animation-delay: 1.2s;
}

.carousel .list .item:nth-child(2) .introduce .des {
    animation-delay: 1.4s;
}

.carousel .list .item:nth-child(2) .introduce .seeMore {
    animation-delay: 1.6s;
}

/* Next click */
.carousel.next .item:nth-child(1) {
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}

@keyframes transformFromPosition2 {
    from {
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}

.carousel.next .item:nth-child(2) {
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

@keyframes transformFromPosition3 {
    from {
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}

.carousel.next .item:nth-child(3) {
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}

@keyframes transformFromPosition4 {
    from {
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}

.carousel.next .item:nth-child(4) {
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}

@keyframes transformFromPosition5 {
    from {
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}

/* Previous */
.carousel.prev .list .item:nth-child(5) {
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}

.carousel.prev .list .item:nth-child(4) {
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

.carousel.prev .list .item:nth-child(3) {
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}

.carousel.prev .list .item:nth-child(2) {
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}

@keyframes transformFromPosition1 {
    from {
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}

/* Detail */
.carousel .list .item .detail {
    opacity: 0;
    pointer-events: none;
}

/* Show Detail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4) {
    left: 100%;
    opacity: 0;
    pointer-events: none;
}

.carousel.showDetail .list .item:nth-child(2) {
    width: 100%;
}

.carousel.showDetail .list .item:nth-child(2) .introduce {
    opacity: 0;
    pointer-events: none;
}

.carousel.showDetail .list .item:nth-child(2) img {
    right: 50%;
}

.carousel.showDetail .list .item:nth-child(2) .detail {
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}

.carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 4em;
    color: #a100f2;
}

.carousel.showDetail .list .item:nth-child(2) .detail .des {
    color: #bbb;
}

.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}

.carousel.showDetail .list .item:nth-child(2) .detail .specifications div {
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}

.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1) {
    font-weight: bold;
    color: #fff;
}

.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(2) {
    color: #a100f2;
}

.carousel.showDetail .list .item:nth-child(2) .checkout button,
.carousel.showDetail .list .item:nth-child(2) .checkout a {
    font-family: Poppins;
    background-color: transparent;
    border: 1px solid #5555;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #fff;
}

.carousel.showDetail .list .item:nth-child(2) .checkout button.primary,
.carousel.showDetail .list .item:nth-child(2) .checkout a.primary {
    background-color: #a100f2;
    color: #fff;
}

.carousel.showDetail .list .item:nth-child(2) .detail .title,
.carousel.showDetail .list .item:nth-child(2) .detail .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

.carousel.showDetail .list .item:nth-child(2) .detail .des {
    animation-delay: 1.2s;
}

.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    animation-delay: 1.4s;
}

.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
    animation-delay: 1.6s;
}

/* Unified Arrows Styling */
.arrows {
    position: absolute;
    bottom: 10px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}

#prev,
#next,
#deals-prev,
#deals-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #a100f2;
    font-size: large;
    background-color: #222;
    color: #a100f2;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#prev,
#deals-prev {
    left: 10%;
}

#next,
#deals-next {
    right: 10%;
    left: unset;
}

#prev:hover,
#next:hover,
#deals-prev:hover,
#deals-next:hover {
    background-color: #a100f2;
    color: #fff;
}

#back,
#deals-back {
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #a100f2;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    color: #a100f2;
    transition: opacity 0.5s, color 0.3s;
}

#back:hover,
#deals-back:hover {
    color: #fff;
    background-color: #333;
}

.carousel.showDetail #back,
.carousel.showDetail #deals-back {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.carousel.showDetail #prev,
.carousel.showDetail #next,
.carousel.showDetail #deals-prev,
.carousel.showDetail #deals-next {
    opacity: 0;
    pointer-events: none;
}

.carousel::before {
    width: 500px;
    height: 300px;
    content: '';
    background-image: linear-gradient(70deg, #a100f2, #6a0dad);
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}

.carousel.showDetail::before {
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}

@media screen and (max-width: 991px) {
    /* Tablets */
    .carousel .list .item {
        width: 90%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .title {
        font-size: 2em;
    }
}

@media screen and (max-width: 767px) {
    /* Mobile */
    .carousel {
        height: 600px;
    }
    .carousel .list .item {
        width: 100%;
        font-size: 10px;
    }
    .carousel .list {
        height: 100%;
    }
    .carousel .list .item:nth-child(2) .introduce {
        width: 50%;
    }
    .carousel .list .item img {
        width: 40%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail {
        backdrop-filter: blur(10px);
        font-size: small;
    }
    .carousel .list .item:nth-child(2) .introduce .des,
    .carousel.showDetail .list .item:nth-child(2) .detail .des {
        height: 100px;
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .checkout {
        display: flex;
        width: max-content;
        float: right;
    }
}

html {
    scroll-behavior: smooth;
}