/* ===================================
   ALPHA GUMMY - MODERN GRADIENT THEME
   Mobile-First Responsive Design
   =================================== */

/* CSS RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-size: 16px; /* Prevent zoom on iOS */
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* GRADIENT UTILITIES */
.gradient-bg {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION MENU
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.nav-cta {
    background: white;
    color: #4F46E5;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-link {
        color: #1a202c;
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
        color: white;
        transform: none;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
        color: white;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s ease;
}

.product-hero {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.3));
}

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

.animate-float {
    animation: animate-float 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    min-height: 56px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

.cta-large {
    font-size: 20px;
    padding: 18px 40px;
}

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

.pulse-animation {
    animation: pulse-animation 2s ease-in-out infinite;
}

/* Desktop Hero */
@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .hero-image {
        max-width: 500px;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #4F46E5;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 40px;
    }
}

/* ===================================
   WHAT IS SECTION
   =================================== */
.what-is {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.what-is-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.what-is-text {
    flex: 1;
}

.what-is-text h2 {
    margin-bottom: 30px;
}

.what-is-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.what-is-image {
    width: 100%;
    max-width: 500px;
}

.what-is-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

@media (min-width: 768px) {
    .what-is-content {
        flex-direction: row;
    }
    
    .what-is-text p {
        font-size: 18px;
    }
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #4F46E5;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    cursor: pointer;
    min-height: 48px;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(79, 70, 229, 0.1);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #4F46E5;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 20px;
        padding: 24px;
    }
    
    .accordion-content p {
        padding: 0 24px 24px;
        font-size: 18px;
    }
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.review-card.animate {
    animation: slideUp 0.6s ease forwards;
}

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

.animate-slide-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-slide-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-slide-up:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4F46E5;
}

.review-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.review-location {
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

.star-rating {
    width: 100px;
}

.star-rating img {
    width: 100%;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: 60px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.timer-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 48px;
    font-weight: 800;
}

.timer-box {
    background: white;
    color: #4F46E5;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.timer-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 48px;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: #1a202c;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 4px solid #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a202c;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.pricing-label {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-supply {
    font-size: 16px;
    color: #718096;
    margin-bottom: 20px;
}

.pricing-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
}

.pricing-image img {
    width: 100%;
}

.pricing-price {
    margin-bottom: 15px;
}

.price-per {
    font-size: 48px;
    font-weight: 800;
    color: #4F46E5;
}

.price-text {
    display: block;
    font-size: 14px;
    color: #718096;
}

.pricing-total {
    margin-bottom: 20px;
}

.price-old {
    font-size: 24px;
    color: #718096;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 32px;
    font-weight: 800;
    color: #10B981;
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-bonus,
.badge-shipping {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-button {
    display: block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: scale(1.05);
}

.pricing-button img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.payment-logos {
    max-width: 250px;
    margin: 0 auto;
}

.payment-logos img {
    width: 100%;
}

.rating-section {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.rating-section img {
    width: 150px;
    margin: 0 auto 10px;
}

.rating-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:nth-child(2) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card:nth-child(2) {
        grid-column: auto;
        max-width: none;
    }
}

/* ===================================
   INGREDIENTS SECTION
   =================================== */
.ingredients {
    padding: 60px 0;
    background: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4F46E5;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.ingredient-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ===================================
   SCIENTIFIC EVIDENCE
   =================================== */
.scientific-evidence {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.evidence-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.evidence-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 15px;
}

.evidence-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

@media (min-width: 768px) {
    .evidence-section p {
        font-size: 18px;
    }
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee {
    padding: 60px 0;
    background: white;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.guarantee-image {
    width: 100%;
    max-width: 400px;
}

.guarantee-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.guarantee-text {
    flex: 1;
}

.guarantee-item {
    margin-bottom: 30px;
}

.guarantee-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

@media (min-width: 768px) {
    .guarantee-content {
        flex-direction: row;
    }
    
    .guarantee-item h3 {
        font-size: 24px;
    }
    
    .guarantee-item p {
        font-size: 18px;
    }
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.check-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    stroke: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 5px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 60px 0;
    background: white;
}

.faq-accordion {
    max-width: 900px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.final-cta-image {
    width: 100%;
    max-width: 400px;
}

.final-cta-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.final-cta-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.final-cta-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.final-price-old {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price-new {
    font-size: 48px;
    font-weight: 800;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
        text-align: left;
    }
    
    .final-cta-text h2 {
        font-size: 40px;
    }
    
    .final-price-new {
        font-size: 56px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #1a202c;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06B6D4;
}

.footer-separator {
    color: #4a5568;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    transform: translateY(-5px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #718096;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   PURCHASE NOTIFICATION
   =================================== */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: 998;
    max-width: calc(100% - 60px);
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.notification-text {
    font-size: 14px;
    color: #1a202c;
}

.notification-text strong {
    color: #4F46E5;
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        bottom: 20px;
    }
    
    .purchase-notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

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

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

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

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

/* INTERSECTION OBSERVER ANIMATIONS */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===================================
   MOBILE-SPECIFIC OPTIMIZATIONS
   =================================== */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Ensure all touch targets are at least 48px */
    button,
    a.cta-button,
    .nav-link,
    .accordion-header {
        min-height: 48px;
    }
    
    /* Prevent text from being too small */
    p,
    li,
    span {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .scroll-top,
    .purchase-notification,
    .countdown-timer {
        display: none;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
