/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-dark: #1a1410;
    --neon-green: #39FF14;
    --ice-white: #FFF8F0;
    --muted-gray: #b8a898;
    --dim-grey: #a0a0a0;
    --border: #3d3028;
    --surface: #121212;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--ice-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    animation: pageFade 0.8s ease;
}

a {
    text-decoration: none;
}

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: var(--ice-white);
    transition: 0.3s;
}

nav ul a:hover {
    color: var(--neon-green);
}

/* ==========================================================================
   3. HERO CAROUSEL
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.slide-content h1,
.slide-content p,
.neon-btn {
    opacity: 0;
    transform: translateY(40px);
    animation: heroFade 1s ease forwards;
}

.slide-content p {
    animation-delay: 0.3s;
}

.neon-btn {
    animation-delay: 0.6s;
}

/* Typography inside Hero */
.neon-text-white {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--ice-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.15;
    text-shadow: 0 0 10px rgba(240, 248, 255, 0.3);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 12px var(--neon-green), 0 0 30px rgba(57, 255, 20, 0.35);
    animation: floatGlow 4s ease-in-out infinite;
}

.slide-content p {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 16px 0 30px;
}

/* Carousel Controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    color: var(--neon-green);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s;
    user-select: none;
}

.carousel-arrow:hover {
    background: rgba(57, 255, 20, 0.15);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #444;
    border: 1px solid #666;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--neon-green);
    border-color: var(--neon-green);
}

/* ==========================================================================
   4. BUTTONS & COMPONENTS
   ========================================================================== */
.neon-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.4s;
    box-shadow: 0 0 10px var(--neon-green);
    text-transform: uppercase;
    font-weight: 600;
}

.neon-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--neon-green);
}

/* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    color: #000;
    padding: 10px 0;
    font-weight: 700;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 45s linear infinite;
}

/* ==========================================================================
   5. SECTIONS & GRIDS
   ========================================================================== */
section {
    padding: 40px 5%;
    overflow: hidden;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 2px;
}

/* Circular Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.circle-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.4s ease;
    background: #1a1a1a;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .circle-wrapper {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.card:hover .category-img {
    transform: scale(1.1);
}

.card p {
    margin-top: 12px;
    color: var(--ice-white);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card:hover p {
    color: var(--neon-green);
}

/* Product Grid (Square Cards) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    background: white;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.product-card h3 {
    font-size: 0.9rem;
    color: #000;
    margin: 10px 0 5px 0;
    letter-spacing: 1px;
}

.product-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-card:hover .product-img {
    transform: scale(1.1);
}

/* Info & FAQ */
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: #161616;
    padding: 60px 40px;
    border-radius: 20px;
    border-left: 5px solid var(--neon-green);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.02);
}

.faq-item h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.footer {
    background: #080808;
    color: var(--ice-white);
    padding: 60px 10% 20px;
    border-top: 1px solid #222;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--neon-green);
    position: relative;
    text-transform: uppercase;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--neon-green);
    margin-top: 6px;
}

.footer-col p,
.footer-col a {
    color: var(--dim-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--neon-green);
    padding-left: 6px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--neon-green);
    color: #121212;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #1a1a1a;
    font-size: 14px;
    color: #444;
}

/* ==========================================================================
   7. WHATSAPP FLOAT & ANIMATIONS
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: whatsappBounce 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

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

@keyframes floatGlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(.17, .67, .83, .67);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets / Small Laptops */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .circle-wrapper {
        width: 130px;
        height: 130px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 70vh;
    }

    .neon-text-white {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .circle-wrapper {
        width: 110px;
        height: 110px;
    }

    .footer {
        padding: 50px 6% 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .neon-text-white,
    .neon-text-green {
        font-size: 1.5rem;
    }

    .gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .circle-wrapper {
        width: 250px;
        height: 250px;
    }

    .product-grid {
        display: flex;
        flex-direction: column;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}
/* Price Styling */
.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 14px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.discount-badge {
    background: var(--neon-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}