/* ========================================
   GOKU GENKI DAMA LANDING PAGE
   Dark Mode Premium Design
   ======================================== */

/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-bg-card: #151515;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-text-light: #cccccc;
    --color-cyan: #00d4ff;
    --color-cyan-glow: rgba(0, 212, 255, 0.4);
    --color-orange: #ff6b35;
    --color-orange-glow: rgba(255, 107, 53, 0.4);
    --color-gold: #ffd700;
    --color-gradient: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-orange) 100%);
    --font-main: 'Outfit', sans-serif;
    --shadow-glow-cyan: 0 0 40px var(--color-cyan-glow);
    --shadow-glow-orange: 0 0 40px var(--color-orange-glow);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* SVG Icon Styling */
.trust-icon svg,
.feature-icon svg,
.payment-icon svg,
.stock-icon svg,
.urgency-icon svg,
.whatsapp-icon svg,
.excl-icon {
    width: 28px;
    height: 28px;
    stroke: var(--color-cyan);
}

.inline-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.check svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-cyan);
}

.final-payment .icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-light);
}

.excl-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150%;
    background: radial-gradient(circle at 30% 30%, var(--color-cyan-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--color-orange-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-image {
    max-width: 500px;
    width: 100%;
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-image.active {
    opacity: 1;
    animation: float 4s ease-in-out infinite;
}

.hero-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-dots .dot.active {
    background: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-exclusive {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 8, 68, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tag-limited {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-small {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.title-main {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--color-cyan);
}

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text);
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.stock-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
}

.stock-icon {
    font-size: 1.5rem;
}

.stock-text {
    display: flex;
    flex-direction: column;
}

.stock-text strong {
    color: var(--color-orange);
    font-size: 0.9rem;
}

.stock-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Payment Methods */
.payment-methods {
    background: var(--color-bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods h3 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-info strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.payment-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--color-gradient);
    color: white;
    box-shadow: 0 4px 30px var(--color-cyan-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--color-cyan-glow);
}

.cta-button.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: var(--transition);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.large {
    padding: 22px 48px;
    font-size: 1.1rem;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 60px 0;
    background: var(--color-bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--color-cyan);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ========================================
   SHIPPING SECTION
   ======================================== */
.shipping-section {
    padding: 80px 0;
}

.shipping-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 48px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.shipping-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 150px;
    background: var(--color-gradient);
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-glow-cyan);
}

.shipping-badge .hours {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.shipping-badge .text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.shipping-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.shipping-info .highlight {
    color: var(--color-cyan);
}

.shipping-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.shipping-features .check {
    color: var(--color-cyan);
    font-weight: bold;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-cyan);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-bg-card);
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.section-header.light h2 {
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-gradient);
    transition: height 0.4s ease;
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.showcase-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.showcase-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
    background: rgba(0, 212, 255, 0.2);
}

.showcase-label {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.showcase-overlay p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ========================================
   EXCLUSIVITY SECTION
   ======================================== */
.exclusivity-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.exclusivity-card {
    position: relative;
    background: var(--color-bg-card);
    padding: 60px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    overflow: hidden;
}

.excl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.excl-content {
    position: relative;
    z-index: 1;
}

.excl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.excl-icon {
    font-size: 1.2rem;
}

.exclusivity-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.excl-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.excl-text strong {
    color: var(--color-text);
}

.excl-text em {
    color: var(--color-orange);
    font-style: normal;
}

.availability-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.counter-item.available .counter-number {
    color: var(--color-cyan);
    text-shadow: 0 0 20px var(--color-cyan-glow);
}

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.counter-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-message p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: 100px 0;
}

.final-cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg) 100%);
    padding: 80px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    background-clip: padding-box;
    text-align: center;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--color-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-content>p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.final-price-block {
    margin-bottom: 24px;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.final-price-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.final-payment-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.final-payment {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.final-payment .icon {
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-info {
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .price-block {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shipping-card {
        flex-direction: column;
        text-align: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-item.large {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item.large {
        grid-column: auto;
        aspect-ratio: 16/9;
    }

    .exclusivity-card {
        padding: 40px 24px;
    }

    .counter-number {
        font-size: 3rem;
    }

    .final-cta-card {
        padding: 40px 24px;
    }

    .final-price {
        font-size: 3rem;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .availability-counter {
        gap: 24px;
    }

    .final-payment-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .price-block {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .shipping-badge {
        min-width: 120px;
        height: 120px;
    }

    .shipping-badge .hours {
        font-size: 2.5rem;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
}

.final-cta-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, var(--color-cyan-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-content>p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.final-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-price-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note a {
    color: var(--color-cyan);
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* ========================================
   PAYMENT FORM STYLES
   ======================================== */

.payment-form-container {
    margin-top: 32px;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.payment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--color-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-muted);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.payment-tab svg {
    width: 20px;
    height: 20px;
}

.payment-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.payment-tab.active {
    border-color: var(--color-cyan);
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-text);
}

.payment-tab.active svg {
    stroke: var(--color-cyan);
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-form.hidden {
    display: none;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-row input {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-row input::placeholder {
    color: var(--color-text-muted);
}

.form-row input:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-row.two-cols {
    flex-direction: row;
    gap: 12px;
}

.form-row.two-cols>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-element {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    transition: var(--transition);
}

.card-element:focus-within {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.card-errors {
    color: #ff6b6b;
    font-size: 0.85rem;
    min-height: 20px;
    margin-top: 4px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.security-badges .badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-cyan);
}

.security-badges .stripe-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
}

.security-badges .stripe-badge strong {
    color: #635bff;
    margin-left: 4px;
}

#submit-button {
    margin-top: 8px;
    position: relative;
}

#submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner.hidden,
.hidden {
    display: none !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cod-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-top: 8px;
}

.cod-info svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-cyan);
    flex-shrink: 0;
}

.cod-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.payment-success {
    text-align: center;
    padding: 40px 20px;
}

.payment-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
}

.payment-success .success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-cyan);
}

.payment-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.payment-success p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.payment-success .order-id {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    margin-top: 8px;
}

/* Mobile responsiveness for payment form */
@media (max-width: 768px) {
    .payment-tabs {
        flex-direction: column;
    }

    .form-row.two-cols {
        flex-direction: column;
    }

    .security-badges {
        gap: 12px;
    }
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */

.checkout-page {
    min-height: 100vh;
    background: var(--color-bg);
}

.checkout-header {
    background: var(--color-bg-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-cyan);
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    padding: 60px 24px;
    max-width: 1200px;
}

/* Product Summary Sidebar */
.checkout-summary {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.checkout-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image {
    width: 100%;
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-features {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Price Breakdown */
.price-breakdown {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.price-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.price-row .free {
    color: var(--color-cyan);
    font-weight: 600;
}

.price-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.trust-item-small svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-cyan);
}

/* Checkout Forms Section */
.checkout-forms {
    max-width: 600px;
}

.checkout-forms h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.checkout-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.help-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 32px;
}

.help-text a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-cyan);
    font-weight: 600;
    transition: var(--transition);
}

.help-text a:hover {
    text-decoration: underline;
}

.help-text svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design for Checkout */
@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 350px 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }

    .checkout-summary {
        position: static;
        order: 2;
    }

    .checkout-forms {
        order: 1;
    }

    .checkout-forms h1 {
        font-size: 1.5rem;
    }

    .product-card {
        padding: 16px;
    }

    .price-breakdown {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .checkout-header {
        padding: 16px 0;
    }

    .checkout-container {
        padding: 24px 16px;
    }

    .payment-tab {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .payment-tab svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

.thank-you-page {
    min-height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thank-you-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.success-animation {
    margin-bottom: 32px;
    animation: slideDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--color-cyan-glow);
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px var(--color-cyan-glow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 60px var(--color-cyan-glow);
    }
}

.success-circle svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.order-details {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-details h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--color-text);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--color-text);
    font-weight: 600;
}

.whats-next {
    margin-bottom: 48px;
}

.whats-next h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--color-cyan);
    transform: translateX(8px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.thank-you-product {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 48px;
    display: flex;
    gap: 32px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-thumb {
    width: 200px;
    border-radius: var(--border-radius-sm);
}

.product-remind {
    flex: 1;
    text-align: left;
}

.product-remind h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-remind ul {
    list-style: none;
    padding: 0;
}

.product-remind li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 8px 0;
    line-height: 1.6;
}

.thank-you-support {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.thank-you-support h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.thank-you-support p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.thank-you-support .cta-button {
    display: inline-flex;
}

.back-to-home {
    display: inline-block;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-to-home:hover {
    color: var(--color-cyan);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile responsive for thank you page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-subtitle {
        font-size: 1.1rem;
    }

    .success-circle {
        width: 80px;
        height: 80px;
    }

    .success-circle svg {
        width: 40px;
        height: 40px;
    }

    .order-details,
    .thank-you-product,
    .thank-you-support {
        padding: 24px;
    }

    .thank-you-product {
        flex-direction: column;
        text-align: center;
    }

    .product-thumb {
        width: 150px;
    }

    .product-remind {
        text-align: center;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
