/* ============================================
   LANDING HERO SECTION - PERFECTLY RESPONSIVE
   ============================================ */

/* Hero Section Container */
.version2-hero {
    width: 100%;
    text-align: center;
    background-color: #0a0a0a;
}

/* Hero Content Wrapper */
.version2-hero-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 500px;
    margin: 0 auto;
    border-bottom: 1px solid #1e2329;
    overflow: hidden;
}

/* Gradient Overlay - Background Effect */
.gradient-overlay {
    position: absolute;
    width: 35%;
    right: 49%;
    min-width: 300px;
    max-width: 517px;
    aspect-ratio: 1.8 / 1;
    border-radius: 1000px;
    background: #ff5900;
    filter: blur(130px);
    bottom: -25%;
    transform: translateX(50%);
    pointer-events: none;
    z-index: 1;
}

/* Product Name Container */
.version2-product-name-container {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    z-index: 2;
    padding: 0 20px;
}

/* Product Name Image */
.version2-product-name {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
    opacity: 0.25;
}

/* Discount Badge */
.version2-product-name-discount {
    position: absolute;
    top: 8%;
    right: -5%;
    transform: rotate(45deg);
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    border-radius: 153.274px;
    border: 2.299px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(
            0deg,
            rgba(18, 18, 18, 0.3) 0%,
            rgba(18, 18, 18, 0.3) 100%
        ),
        rgba(248, 248, 248, 0.01);
    box-shadow: 0 0 12.262px 0 rgba(248, 248, 248, 0.25) inset,
        0 49.048px 36.786px -24.524px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(9.196428298950195px);
}

.version2-product-name-discount p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Icon Badge - Tag */
.version2-product-tag {
    position: absolute;
    left: 39%;
    bottom: 1%;
    transform: translateX(-150%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
    border-radius: 86.4px;
    background: radial-gradient(
        73.24% 95.71% at 50% 10%,
        #0b0e11 0%,
        #0b0e11 70%,
        #1d2024 100%
    );
    border: 2px solid #1e2329;
    box-shadow: 0 0 11.52px 0 rgba(248, 248, 248, 0.25) inset,
        0 46.08px 34.56px -23.04px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Icon Badge - Fire */
.version2-product-fire {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-350%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 86.4px;
    background: radial-gradient(
        90.17% 101.42% at 50% 10%,
        #000 0%,
        #f0870d 85%,
        #fff 100%
    );
    border: 2.16px solid #1e2329;
    box-shadow: 0 0 11.52px 0 rgba(248, 248, 248, 0.25) inset,
        0 46.08px 34.56px -23.04px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Icon Badge - Checked */
.version2-product-badge-checked {
    position: absolute;
    right: 50%;
    top: 60%;
    transform: translateX(350%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 86.4px;
    background: radial-gradient(
        90.17% 101.42% at 50% 10%,
        #000 0%,
        #f0870d 85%,
        #fff 100%
    );
    border: 2.16px solid #1e2329;
    box-shadow: 0 0 11.52px 0 rgba(248, 248, 248, 0.25) inset,
        0 46.08px 34.56px -23.04px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Hero Image - iPhone */
.version2-hero-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
    z-index: 5;
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .version2-hero-content {
        height: 600px;
    }

    .version2-product-name-container {
        max-width: 450px;
    }

    .version2-hero-img {
        max-width: 450px;
    }

    .version2-product-name-discount,
    .version2-product-tag,
    .version2-product-fire,
    .version2-product-badge-checked {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1200px - 1399px)
   ============================================ */
@media (max-width: 1399px) {
    .version2-hero-content {
        height: 500px;
    }

    .version2-product-name-container {
        max-width: 400px;
    }

    .version2-hero-img {
        max-width: 400px;
    }
}

/* ============================================
   RESPONSIVE - LAPTOP (992px - 1199px)
   ============================================ */
@media (max-width: 1199px) {
    .version2-hero {
    }

    .version2-hero-content {
        height: 450px;
    }

    .version2-product-name-container {
        max-width: 350px;
        top: 18%;
    }

    .version2-hero-img {
        max-width: 350px;
    }

    .gradient-overlay {
        min-width: 280px;
        filter: blur(110px);
    }

    .version2-product-name-discount,
    .version2-product-tag,
    .version2-product-fire,
    .version2-product-badge-checked {
        width: 36px;
        height: 36px;
    }

    .version2-product-name-discount p {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 991px)
   ============================================ */
@media (max-width: 991px) {
    .version2-hero {
    }

    .version2-hero-content {
        height: 400px;
    }

    .version2-product-name-container {
        max-width: 300px;
        top: 15%;
    }

    .version2-hero-img {
        max-width: 300px;
    }

    .gradient-overlay {
        min-width: 250px;
        filter: blur(100px);
        right: 45%;
    }

    .version2-product-name-discount {
        right: -8%;
        width: 34px;
        height: 34px;
    }

    .version2-product-tag {
        transform: translateX(-50%);
        width: 34px;
        height: 34px;
    }

    .version2-product-fire {
        transform: translateX(-300%);
        top: 18%;
        width: 34px;
        height: 34px;
    }

    .version2-product-badge-checked {
        transform: translateX(300%);
        top: 58%;
        width: 34px;
        height: 34px;
    }

    .version2-product-name-discount p {
        font-size: 10px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE LANDSCAPE (576px - 767px)
   ============================================ */
@media (max-width: 767px) {
    .version2-hero {
    }

    .version2-hero-content {
        height: 350px;
    }

    .version2-product-name-container {
        max-width: 250px;
        top: 12%;
    }

    .version2-hero-img {
        max-width: 250px;
    }

    .gradient-overlay {
        min-width: 200px;
        filter: blur(80px);
        right: 20%;
        bottom: -20%;
    }

    .version2-product-name-discount {
        right: -10%;
        top: 5%;
        width: 32px;
        height: 32px;
    }

    .version2-product-tag {
        transform: translateX(-110%);
        bottom: 12%;
        width: 32px;
        height: 32px;
    }

    .version2-product-fire {
        transform: translateX(-250%);
        top: 15%;
        width: 32px;
        height: 32px;
    }

    .version2-product-badge-checked {
        transform: translateX(250%);
        top: 55%;
        width: 32px;
        height: 32px;
    }

    .version2-product-name-discount p {
        font-size: 9px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE PORTRAIT (480px - 575px)
   ============================================ */
@media (max-width: 575px) {
    .version2-hero {
    }

    .version2-hero-content {
        height: 300px;
    }

    .version2-product-name-container {
        max-width: 200px;
        top: 10%;
    }

    .version2-hero-img {
        max-width: 200px;
    }

    .gradient-overlay {
        min-width: 180px;
        filter: blur(70px);
        right: 15%;
        bottom: -15%;
    }

    .version2-product-name-discount {
        right: -12%;
        top: 3%;
        width: 28px;
        height: 28px;
        padding: 2px 8px;
    }

    .version2-product-tag {
        transform: translateX(-100%);
        bottom: 15%;
        width: 28px;
        height: 28px;
    }

    .version2-product-fire {
        transform: translateX(-200%);
        top: 12%;
        width: 28px;
        height: 28px;
    }

    .version2-product-badge-checked {
        transform: translateX(200%);
        top: 52%;
        width: 28px;
        height: 28px;
    }

    .version2-product-name-discount p {
        font-size: 8px;
    }

    /* Scale down icon SVGs */
    .version2-product-tag svg,
    .version2-product-fire svg,
    .version2-product-badge-checked svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (360px - 479px)
   ============================================ */
@media (max-width: 479px) {
    .version2-hero {
        margin-top: 30px;
    }

    .version2-hero-content {
        height: 260px;
    }

    .version2-product-name-container {
        max-width: 170px;
        top: 8%;
    }

    .version2-hero-img {
        max-width: 170px;
    }

    .gradient-overlay {
        min-width: 150px;
        filter: blur(60px);
        right: 45%;
        bottom: -10%;
    }

    .version2-product-name-discount {
        right: -15%;
        top: 0%;
        width: 26px;
        height: 26px;
        padding: 2px 6px;
    }

    .version2-product-tag {
        transform: translateX(-90%);
        bottom: 18%;
        width: 26px;
        height: 26px;
    }

    .version2-product-fire {
        transform: translateX(-170%);
        top: 10%;
        width: 26px;
        height: 26px;
    }

    .version2-product-badge-checked {
        transform: translateX(170%);
        top: 50%;
        width: 26px;
        height: 26px;
    }

    .version2-product-name-discount p {
        font-size: 7px;
    }

    .version2-product-tag svg,
    .version2-product-fire svg,
    .version2-product-badge-checked svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE (< 360px)
   ============================================ */
@media (max-width: 359px) {
    .version2-hero {
        padding: 20px 8px;
    }

    .version2-hero-content {
        height: 220px;
    }

    .version2-product-name-container {
        max-width: 140px;
        top: 5%;
    }

    .version2-hero-img {
        max-width: 140px;
    }

    .gradient-overlay {
        min-width: 120px;
        filter: blur(50px);
        right: 5%;
        bottom: -8%;
    }

    .version2-product-name-discount {
        right: -18%;
        top: -2%;
        width: 24px;
        height: 24px;
        padding: 2px 4px;
    }

    .version2-product-tag {
        transform: translateX(-60%);
        bottom: 0%;
        width: 24px;
        height: 24px;
    }

    .version2-product-fire {
        transform: translateX(-150%);
        top: 8%;
        width: 24px;
        height: 24px;
    }

    .version2-product-badge-checked {
        transform: translateX(150%);
        top: 48%;
        width: 24px;
        height: 24px;
    }

    .version2-product-name-discount p {
        font-size: 6px;
    }

    .version2-product-tag svg,
    .version2-product-fire svg,
    .version2-product-badge-checked svg {
        width: 12px;
        height: 12px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .version2-product-name,
    .version2-hero-img,
    .gradient-overlay {
        transition: none;
        animation: none;
    }
}

/* High Performance - Disable blur on low-end devices */
@media (max-width: 575px) and (prefers-reduced-motion: reduce) {
    .gradient-overlay {
        filter: blur(40px);
    }
}

/* Print Styles */
@media print {
    .version2-hero {
        padding: 20px;
        page-break-inside: avoid;
    }

    .gradient-overlay {
        display: none;
    }
}
