/* =========================================
   PREMIUM 2050 DESIGN - PRODUCT PAGES
   ========================================= */

/* Hero Section Override */
/* Hero Section Override */
.hero.product-hero-mode {
    background: #000 !important;
    /* Deep Black */
    padding-top: 240px !important;
    /* Increased for safety on laptops */
    /* Ensure content starts below fixed header */
    padding-bottom: 5rem !important;
    min-height: 100vh;
    height: auto !important;
    /* Allow growing beyond viewport if content is tall */
    /* Full screen feel */
    position: relative;
    overflow: hidden !important;
    /* contain the background animation */
    align-items: flex-start !important;
    /* Prevent vertical centering */
}

/* Background Glow Effect */
.hero.product-hero-mode::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Container Z-index fix */
.hero.product-hero-mode .container {
    position: relative;
    z-index: 1;
}

/* Flex Container */
.product-hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Image Column */
.product-col:first-child {
    flex: 0 0 450px;
    /* Fixed width for image on desktop */
    max-width: 100%;
}

/* Image Styling - 2050 Neon Look */
.product-col img {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3),
        0 0 80px rgba(0, 184, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block !important;
}

.product-col img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.5),
        0 0 100px rgba(0, 184, 255, 0.3) !important;
}

/* Text Column */
.product-col:last-child {
    flex: 1;
    text-align: left;
    background: rgba(20, 20, 20, 0.6);
    /* Glassmorphism */
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Typography Overrides */
.product-col h1 {
    font-size: 3.5rem !important;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

/* Price Tag */
.product-price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem !important;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 1.5rem;
    display: block;
}

.product-price-tag span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    text-shadow: none;
}

/* Description Text */
.product-desc {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Buttons Container */
.product-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary CTA - WhatsApp */
.cta-button.whatsapp-btn {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

/* Secondary CTA - Email */
.secondary-button.email-btn {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    background: transparent !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
}

.secondary-button.email-btn:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #fff !important;
}

/* Features List */
.product-features-list {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-features-list li {
    font-size: 0.95rem;
    color: #ddd;
    display: flex;
    align-items: center;
}

.product-features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--primary-color);
}


/* =========================================
   MOBILE RESPONSIVENESS (Max-width: 992px)
   ========================================= */
@media (max-width: 992px) {
    .hero.product-hero-mode {
        padding-top: 220px !important;
        /* Increased from 140px to clear header safely */
        height: auto !important;
        align-items: flex-start !important;
        /* Prevent vertical centering issues */
    }

    .product-hero-flex {
        flex-direction: column;
        /* Stack vertically */
        gap: 2rem;
        margin-top: 20px;
        /* Extra safety margin */
    }

    /* Image on Mobile */
    .product-col:first-child {
        flex: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
        order: 1;
        /* Put image FIRST */
    }

    .product-col img {
        margin: 0 auto !important;
        max-width: 90% !important;
        /* Slightly smaller on mobile to fit screen */
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.2) !important;
    }

    /* Text Container on Mobile */
    .product-col:last-child {
        order: 2;
        /* Put text SECOND */
        width: 100%;
        padding: 1.5rem;
        /* Less padding */
        text-align: center;
        /* Center text for impact */
    }

    .product-col h1 {
        font-size: 2.2rem !important;
    }

    .product-price-tag {
        font-size: 2.5rem !important;
    }

    .product-buttons {
        justify-content: center;
        /* Center buttons */
        flex-direction: column;
    }

    .cta-button.whatsapp-btn,
    .secondary-button.email-btn {
        width: 100%;
        /* Full width buttons */
        justify-content: center;
    }

    .product-features-list {
        grid-template-columns: 1fr;
        /* 1 Column features */
        text-align: left;
        /* Keep features left aligned for readability */
    }
}