/* =============================================
   AMIRO COUPON LANDING PAGE - STYLES
   CouponMaza-style Design
   ============================================= */

/* CSS Reset & Variables */
:root {
    --primary-blue: #1a73e8;
    --primary-red: #e53935;
    --dark-red: #c62828;
    --orange: #ff6d00;
    --green: #43a047;
    --pink: #ec407a;
    --purple: #7c4dff;
    --dark-text: #1a1a2e;
    --gray-text: #5f6368;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   TOP NAVIGATION
   ============================================= */
.top-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4fd 100%);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-text);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.top-badge .separator {
    opacity: 0.5;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
    margin-bottom: 24px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.hero-features li i {
    color: var(--green);
    font-size: 12px;
}

.price-section {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-text);
    font-size: 18px;
    margin-right: 12px;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cta-button.primary {
    background: var(--primary-red);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.countdown-section {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-block {
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.time-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
}

.time-separator {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
}

/* Hero Right - Product Image */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-image-container.full-width {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.hero-image-container.full-width .hero-product-image {
    max-height: 420px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.satisfaction-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.satisfaction-badge i {
    color: #ffd700;
}

/* =============================================
   COUPONS SECTION - PREMIUM DESIGN
   ============================================= */
.coupons-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--pink));
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-text);
    margin-top: 16px;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Premium Coupon Card Design */
.coupon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: none;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coupon-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.coupon-card:hover::before {
    opacity: 1;
}

.coupon-card.highlight {
    background: linear-gradient(145deg, #fff 0%, #fff5f7 100%);
}

.coupon-card.highlight::before {
    background: linear-gradient(90deg, var(--primary-red), var(--pink));
}

/* Discount Badge - Eye-catching design */
.coupon-badge {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px auto 0;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.coupon-badge.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.coupon-badge.orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.coupon-badge.green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: var(--white);
}

.coupon-badge.pink {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    color: var(--white);
}

/* Badge icons */
.coupon-badge i {
    margin-right: 6px;
    font-size: 12px;
}

/* Brand Logo Area */
.coupon-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 20px;
    padding: 16px 24px;
    position: relative;
}

.coupon-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: var(--transition);
}

.coupon-card:hover .brand-logo {
    transform: scale(1.05);
}

/* Offer Title */
.coupon-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 20px 12px;
    line-height: 1.5;
    min-height: auto;
    display: block;
}

/* Description */
.coupon-description {
    font-size: 13px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
    min-height: auto;
}

/* Coupon Code Box - Premium Style */
.coupon-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f6f8fc 0%, #eef1f7 100%);
    border: 2px dashed #c5cee0;
    border-radius: 12px;
    margin: 0 20px 20px;
    padding: 12px 16px;
    position: relative;
    flex-wrap: wrap;
}

.coupon-code-box::before {
    content: '✂';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #bbb;
}

.coupon-code-box .code-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.coupon-code-box .code-value {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1px;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    white-space: nowrap;
}

.coupon-code-box.no-code {
    border: 2px solid #4caf50;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.coupon-code-box.no-code::before {
    content: '✓';
    color: var(--green);
}

.coupon-code-box.no-code .code-label {
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
}

.coupon-code-box .auto-apply {
    font-size: 10px;
    color: var(--white);
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(67, 160, 71, 0.3);
    white-space: nowrap;
}

/* Premium CTA Button */
.coupon-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 24px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-btn::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: left 0.5s ease;
}

.coupon-btn:hover::before {
    left: 100%;
}

.coupon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.coupon-btn i {
    margin-right: 8px;
    font-size: 13px;
}

.coupon-btn.free-shipping {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
}

.coupon-btn.free-shipping:hover {
    box-shadow: 0 10px 30px rgba(67, 160, 71, 0.4);
}

/* Decorative Elements */
.coupon-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.coupon-card:hover::after {
    transform: scale(1.5);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .coupon-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .coupon-code-box .code-value {
        font-size: 14px;
    }
}

/* =============================================
   FEATURED PRODUCTS SECTION
   ============================================= */
.products-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

/* Product Gallery - Perfect Uniform Grid */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0,115,230,0.3), rgba(220,53,69,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.3) 100%);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-blue), #4facfe);
    color: white;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0,115,230,0.4);
    animation: badgePulse 2s infinite ease-in-out;
}

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

.gallery-badge.hot {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    box-shadow: 0 4px 15px rgba(238,9,121,0.4);
}

.gallery-badge.sale {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 4px 15px rgba(17,153,142,0.4);
}

.gallery-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    line-height: 1.3;
}

.gallery-cta {
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    padding: 10px 18px;
    border-radius: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(220,53,69,0.4);
}

.gallery-item:hover .gallery-cta {
    opacity: 1;
    transform: translateY(0);
}

.gallery-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-cta i {
    transform: translateX(4px);
}

/* View All Button */
.products-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.4);
}

.view-all-btn i {
    font-size: 18px;
}

/* Responsive Gallery - Uniform Sizing */
@media (max-width: 1200px) {
    .product-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .gallery-badge {
        padding: 6px 12px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gallery-title {
        font-size: 14px;
    }
    
    .gallery-overlay {
        padding: 16px;
    }
    
    .gallery-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .gallery-badge {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        border-radius: 14px;
    }
    
    .gallery-badge {
        padding: 4px 8px;
        font-size: 8px;
        top: 10px;
        right: 10px;
    }
    
    .gallery-title {
        font-size: 13px;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-cta {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .view-all-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Legacy Product Card Styles (keeping for compatibility) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 2px solid var(--primary-blue);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.hot {
    background: var(--primary-red);
}

.product-badge.sale {
    background: var(--green);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.product-card:hover .product-cta {
    gap: 12px;
}

.product-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-cta i {
    transform: translateX(4px);
}

/* Responsive Products Grid */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 180px;
    }
}

/* =============================================
   POPULAR CODES TABLE
   ============================================= */
.popular-codes-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.popular-codes-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.codes-table-wrapper {
    overflow-x: auto;
}

.codes-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.codes-table th,
.codes-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.codes-table th {
    background: var(--dark-text);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.codes-table td {
    font-size: 14px;
    color: var(--gray-text);
}

.codes-table tbody tr:hover {
    background: #f8f9fa;
}

.codes-table tbody tr:last-child td {
    border-bottom: none;
}

.code-highlight {
    background: #e3f2fd;
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 13px;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 60px 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pricing-subtitle h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.pricing-subtitle p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.social-proof {
    color: var(--green) !important;
    font-size: 14px !important;
}

.social-proof i {
    margin-right: 6px;
}

.pricing-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-left {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid #ffd54f;
}

.save-badge {
    margin-bottom: 20px;
}

.save-percent {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
}

.save-text {
    font-size: 14px;
    color: var(--gray-text);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.toggle-label {
    font-size: 14px;
    color: var(--gray-text);
}

.toggle-label.active {
    color: var(--dark-text);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.pricing-note {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 16px;
}

.pricing-note i {
    margin-right: 6px;
}

.view-all-link {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-link:hover {
    background: #1557b0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.pricing-card .price {
    margin-bottom: 8px;
}

.pricing-card .original {
    text-decoration: line-through;
    color: var(--gray-text);
    font-size: 16px;
    margin-right: 8px;
}

.pricing-card .current {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
}

.pricing-card .period {
    font-size: 14px;
    color: var(--gray-text);
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.pricing-btn:hover {
    background: #1557b0;
}

.pricing-btn.featured-btn {
    background: var(--primary-red);
}

.pricing-btn.featured-btn:hover {
    background: var(--dark-red);
}

.plan-note {
    font-size: 12px;
    color: var(--gray-text);
}

/* =============================================
   HOW TO SECTION
   ============================================= */
.how-to-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gray-text);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.disclosure {
    max-width: 800px;
    margin: 0 auto 24px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.disclosure p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* =============================================
   MODAL
   ============================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: var(--gray-text);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-text);
}

.modal-body {
    text-align: center;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.coupon-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--light-gray);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary-blue);
    margin-bottom: 16px;
}

#modal-coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.copy-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: #1557b0;
}

.copy-btn.copied {
    background: var(--green);
}

.modal-note {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.shop-now-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.shop-now-btn:hover {
    background: var(--dark-red);
}

.shop-now-btn i {
    margin-left: 8px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-left {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-features {
        display: inline-block;
        text-align: left;
    }
    
    .countdown-section {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image-container {
        padding: 20px;
    }
    
    .hero-product-image {
        max-height: 250px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .codes-table th,
    .codes-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .pricing-subtitle h3 {
        font-size: 26px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .top-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .time-block {
        padding: 6px 10px;
    }
    
    .time-value,
    .time-separator {
        font-size: 16px;
    }
    
    .coupon-card {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    #modal-coupon-code {
        font-size: 18px;
    }
}

/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .top-nav,
    .countdown-section,
    .modal {
        display: none !important;
    }
}
