/* ===================================
   Sugar Nature Drops - Professional CSS
   Medical Professional Theme
   Mobile-First Responsive Design
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors - Medical Professional Theme */
    --primary-color: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --secondary-color: #93C5FD;
    --accent-color: #10B981;
    --accent-orange: #F59E0B;
    --danger-color: #EF4444;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* === GLOBAL 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: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.125rem;
    }
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* === NAVIGATION === */
.navbar {
    padding: 1rem 0;
    background: var(--white) !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color) !important;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 1.125rem;
    }
    
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        background: var(--white);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .cta-btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* === HERO SECTION === */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    animation: productFloat 3s infinite ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

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

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.badge-fda {
    top: 10%;
    left: -5%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
}

.badge-gmp {
    bottom: 20%;
    right: -5%;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: var(--white);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #059669 0%, var(--accent-color) 100%);
}

.hero-guarantee {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
}

.hero-guarantee i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .floating-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* === SECTION STYLES === */
section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
    background: var(--white);
}

.badge-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 50%;
    padding: 1rem;
}

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

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .badge-card {
        padding: 1.5rem;
    }
    
    .badge-icon {
        width: 80px;
        height: 80px;
    }
}

/* === WHAT IS SECTION === */
.what-is-section {
    background: var(--gray-50);
}

.content-wrapper {
    padding-right: 2rem;
}

.content-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.image-wrapper img {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* === HOW IT WORKS SECTION === */
.how-it-works-section {
    background: var(--white);
}

.accordion-item {
    border: none;
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
    border: none;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(0) invert(1);
}

.accordion-button i {
    font-size: 1.5rem;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-button i {
        font-size: 1.25rem;
        margin-right: 0.5rem !important;
    }
}

/* === REVIEWS SECTION === */
.reviews-section {
    background: var(--gray-50);
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.reviewer-location {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.review-rating {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-rating i {
    margin-right: 0.25rem;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}

/* === PRICING SECTION === */
.pricing-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.countdown-timer {
    background: linear-gradient(135deg, var(--danger-color) 0%, #DC2626 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.timer-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.timer-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.timer-unit {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.timer-separator {
    font-size: 3rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .countdown-timer {
        padding: 1.5rem 1rem;
    }
    
    .timer-label {
        font-size: 1rem;
    }
    
    .timer-box {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    .timer-separator {
        font-size: 2rem;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-popular {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow);
}

.pricing-label {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pricing-package {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-supply {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.pricing-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-image img {
    max-width: 200px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    vertical-align: super;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-per {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-total {
    text-align: center;
    margin-bottom: 1rem;
}

.total-old {
    font-size: 1.25rem;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.total-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.badge-bonus {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #D97706 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
}

.badge-shipping {
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
}

.btn-pricing {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

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

.btn-cart-icon {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.btn-pricing-popular {
    animation: pulse 2s infinite;
}

.payment-logos {
    text-align: center;
    opacity: 0.8;
}

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

.rating-image {
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* === BONUSES SECTION === */
.bonuses-section {
    background: var(--white);
}

.bonus-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.bonus-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--danger-color) 0%, #DC2626 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
}

.bonus-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    transition: var(--transition);
}

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

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bonus-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === INGREDIENTS SECTION === */
.ingredients-section {
    background: var(--gray-50);
}

.ingredient-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.ingredient-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.ingredient-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ingredient-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === SCIENTIFIC EVIDENCE SECTION === */
.scientific-section {
    background: var(--white);
}

/* === GUARANTEE SECTION === */
.guarantee-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.guarantee-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-point {
    display: flex;
    gap: 1.5rem;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.point-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* === BENEFITS SECTION === */
.benefits-section {
    background: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--gray-50);
}

/* === FINAL CTA SECTION === */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-image img {
    animation: bounce 2s infinite;
}

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

.pulse-animation {
    animation: pulse 2s infinite;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
}

.final-cta-pricing {
    margin-bottom: 2rem;
}

.regular-price {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-strike {
    text-decoration: line-through;
    opacity: 0.7;
}

.special-price {
    font-size: 2rem;
    font-weight: 800;
}

.price-highlight {
    color: var(--accent-orange);
}

.final-cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.btn-final-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-final-cta:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #059669 0%, var(--accent-color) 100%);
}

.stock-warning {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1rem;
}

.stock-warning i {
    margin-right: 0.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    .special-price {
        font-size: 1.5rem;
    }
    
    .btn-final-cta {
        width: 100%;
        font-size: 1rem;
    }
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--white);
}

.link-separator {
    color: var(--gray-600);
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .link-separator {
        display: none;
    }
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* === EXIT POPUP === */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.active {
    display: flex;
}

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

.exit-popup-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--danger-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    background: #DC2626;
    transform: rotate(90deg);
}

.exit-popup-body {
    padding: 3rem 2rem;
    text-align: center;
}

.exit-popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.exit-popup-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.exit-popup-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn-popup-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-popup-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .exit-popup-content {
        width: 95%;
    }
    
    .exit-popup-body {
        padding: 2rem 1.5rem;
    }
    
    .exit-popup-title {
        font-size: 1.5rem;
    }
    
    .exit-popup-text {
        font-size: 1rem;
    }
    
    .btn-popup-cta {
        width: 100%;
    }
}

/* === PURCHASE NOTIFICATION === */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 1rem 1.5rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 350px;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.notification-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.customer-name {
    font-weight: 700;
    color: var(--primary-color);
}

.customer-location {
    font-weight: 600;
}

@media (max-width: 768px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        bottom: 20px;
        max-width: calc(100% - 20px);
    }
}

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

.text-justify {
    text-align: justify;
}

.mb-0 {
    margin-bottom: 0 !important;
}

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

/* === PRINT STYLES === */
@media print {
    .navbar,
    .scroll-top-btn,
    .exit-popup,
    .purchase-notification {
        display: none !important;
    }
}
