
        
        /* ====== BASE VARIABLES ====== */
:root {
    /* Primary Colors */
    --primary: #F68320;
    --primary-light: #ff9a44;
    --primary-dark: #dd612d;
    
    /* Secondary Colors */
    --secondary: #4f74b0;
    --secondary-light: #6b8fd8;
    --secondary-dark: #3a5a8c;
    
    /* Background & Text */
    --bg-light: #FAE9CD;
    --bg-dark: #17191C;
    --card-light: #ffffff;
    --card-dark: #23252a;
    --text-light: #17191C;
    --text-dark: #ffffff;
    --text-secondary-light: #5a5d64;
    --text-secondary-dark: #b0b2b8;
    
    /* Borders & Shadows */
    --border-light: #e0d4c2;
    --border-dark: #3a3c42;
    --shadow-light: rgba(246, 131, 32, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

/* Dark Theme */
.dark-theme {
    --bg: var(--bg-dark);
    --card: var(--card-dark);
    --text: var(--text-dark);
    --text-secondary: var(--text-secondary-dark);
    --border: var(--border-dark);
    --shadow: var(--shadow-dark);
}

/* Light Theme */
body:not(.dark-theme) {
    --bg: var(--bg-light);
    --card: var(--card-light);
    --text: var(--text-light);
    --text-secondary: var(--text-secondary-light);
    --border: var(--border-light);
    --shadow: var(--shadow-light);
}

/* ====== BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ====== SECTION TITLE ====== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary);
}

/* ====== NAVBAR STYLES ====== */
#mainHeader {
    background: var(--card) !important;
    border-bottom: 2px solid var(--border) !important;
    box-shadow: 0 2px 10px var(--shadow) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--text) !important;
    transition: all 0.3s;
}

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

.mobile-nav-link {
    color: var(--text) !important;
    border-bottom: 1px solid var(--border) !important;
}

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

/* Logo Styles */
.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Theme Switcher */
.theme-switcher {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.theme-switcher:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.theme-switcher i {
    font-size: 1.1rem;
}

/* ====== MOBILE OFFER HEADER FIX ====== */
.mobile-only .offer-header {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    margin-right: 0;
    width: 100%;
}

.mobile-only .offer-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-only .offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-only .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mobile-only .discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(246, 131, 32, 0.3);
    margin-top: 0.5rem;
}

/* ====== MOBILE COUPON SECTION FIX ====== */
.mobile-only .coupon-section {
    background: var(--card);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
    width: 100%;
}

.mobile-only .coupon-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}

.mobile-only .coupon-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-only .coupon-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-align: center;
    background: var(--bg);
    color: var(--text);
    letter-spacing: 1px;
}

.mobile-only .copy-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.mobile-only .copy-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
}

/* ====== DESKTOP LAYOUT ====== */
@media (min-width: 992px) {
    .desktop-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .desktop-main-content {
        grid-column: 1;
    }
    
    .desktop-sidebar {
        grid-column: 2;
        position: sticky;
        top: 2rem;
        height: fit-content;
    }
}

/* ====== DESKTOP OFFER HEADER ====== */
.desktop-only .offer-header {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.desktop-only .offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.desktop-only .tag {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-only .tag-category {
    background: rgba(246, 131, 32, 0.1);
    color: var(--primary);
    border: 2px solid rgba(246, 131, 32, 0.3);
}

.desktop-only .tag-event {
    background: rgba(79, 116, 176, 0.1);
    color: var(--secondary);
    border: 2px solid rgba(79, 116, 176, 0.3);
}

.desktop-only .offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-only .offer-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.desktop-only .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Discount Badge */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(246, 131, 32, 0.3);
}

/* Desktop Discount Badge in Coupon Box */
.coupon-box .discount-badge {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

/* ====== DESKTOP COUPON SECTION ====== */
.desktop-only .coupon-box {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
}

.desktop-only .coupon-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}

.desktop-only .coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.desktop-only .coupon-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-align: center;
    background: var(--bg);
    color: var(--text);
    letter-spacing: 1px;
}

.desktop-only .copy-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    justify-content: center;
}

.desktop-only .copy-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
}

.desktop-only .copy-btn i {
    font-size: 1rem;
}

/* Expired State */
.expired .coupon-section,
.expired .coupon-box {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

/* ====== PACKAGES SECTION ====== */
.packages-section {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Package Card Styles */
.package-card {
    position: relative;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-main-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-main-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

.package-main-btn .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

/* Fix Package Dropdown Display */
.package-dropdown {
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--card);
    max-height: 400px;
    overflow-y: auto;
}

.package-card.active .package-dropdown {
    display: flex !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure package links are visible */
.package-link {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(246, 131, 32, 0.1);
    color: var(--primary) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(246, 131, 32, 0.2);
    width: 100%;
}

.package-link:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* ====== ORDER BUTTON ====== */
.order-section {
    margin-bottom: 2rem;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(246, 131, 32, 0.3);
}

.expired .order-btn {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
}

.expired .order-btn:hover {
    transform: none;
    box-shadow: none;
}

/* ====== CONTENT SECTIONS LAYOUT ====== */
.content-section {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
    width: 100%;
}

/* Desktop Content Sections */
@media (min-width: 992px) {
    .content-section {
        margin-right: 0;
        max-width: none;
    }
    
    .offer-main-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem; 
    }
    
    .desktop-only .offer-header-row {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .desktop-only .offer-main-content {
        grid-column: 1;
        margin-right: 0;
    }
    
    .desktop-only .offer-sidebar {
        grid-column: 2;
    }
    
    .offer-main-content .content-section {
        margin-right: 0;
        width: 100%;
    }
}

/* Mobile Content Sections */
@media (max-width: 991px) {
    .content-section {
        padding: 1.5rem;
    }
    
    .mobile-only .content-section {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Sidebar fixed position */
.offer-sidebar {
    grid-column: 2;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

/* Desktop grid layout */
@media (min-width: 992px) {
    .container {
        position: relative;
    }
    
    .desktop-only .offer-header-row {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .desktop-only .offer-main-content {
        grid-column: 1;
    }
    
    .desktop-only .offer-sidebar {
        grid-column: 2;
    }
}

/* ====== SPECIFICATIONS ====== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.spec-item {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.spec-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.spec-value {
    color: var(--text-secondary);
}

/* ====== STEPS ====== */
.steps-container {
    counter-reset: step-counter;
}

.step-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-desc {
    color: var(--text-secondary);
}

/* ====== VIDEO ====== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ====== SCREENSHOTS ====== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.screenshot-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

/* ====== FEATURES ====== */
.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ====== TRUST BADGES ====== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

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

@media (max-width: 767px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.badge-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.badge-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.badge-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ====== SIDEBAR DETAILS ====== */
.offer-details {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.detail-value {
    font-weight: 700;
    color: var(--text);
}

/* ====== SHOW/HIDE SECTIONS ====== */
/* Mobile only sections */
.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .mobile-only {
        display: block;
    }
}

/* Desktop only sections */
.desktop-only {
    display: block;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }
}

/* ====== ALERT ====== */
.alert {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert.show {
    top: 20px;
}

.alert.error {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.alert.success {
    background: linear-gradient(135deg, #10b981, #34d399);
}

/* ====== FOOTER ====== */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ====== MOBILE SPECIFIC STYLES ====== */
@media (max-width: 991px) {
    /* Mobile offer header */
    .mobile-only .offer-header {
        padding: 1.25rem;
        margin-top: 0.5rem;
    }
    
    .mobile-only .offer-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .mobile-only .offer-meta {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .mobile-only .meta-item {
        font-size: 0.85rem;
    }
    
    /* Mobile coupon section */
    .mobile-only .coupon-section {
        padding: 1rem;
    }
    
    .mobile-only .coupon-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .mobile-only .coupon-input {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .mobile-only .copy-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Mobile content sections */
    .mobile-only .content-section {
        padding: 1.25rem;
    }
    
    .mobile-only .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile specifications */
    .mobile-only .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mobile-only .spec-item {
        padding: 0.75rem;
    }
    
    /* Mobile steps */
    .mobile-only .step-item {
        padding-left: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .mobile-only .step-item::before {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    /* Mobile video */
    .mobile-only .video-wrapper {
        margin: 0;
        width: 100%;
    }
    
    /* Mobile screenshots */
    .mobile-only .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .mobile-only .screenshot-item img {
        height: 120px;
    }
    
    /* Mobile features */
    .mobile-only .feature-item {
        padding: 0.5rem 0;
        gap: 0.75rem;
    }
    
    .mobile-only .feature-icon {
        font-size: 1rem;
    }
    
    /* Mobile trust badges */
    .mobile-only .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .mobile-only .badge-item {
        padding: 1rem;
    }
    
    .mobile-only .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-only .badge-title {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .mobile-only .badge-desc {
        font-size: 0.75rem;
    }
    
    /* Mobile offer details */
    .mobile-only .offer-details {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .mobile-only .detail-row {
        padding: 0.5rem 0;
    }
    
    .mobile-only .detail-label,
    .mobile-only .detail-value {
        font-size: 0.9rem;
    }
    
    /* Mobile packages */
    .mobile-only .packages-section {
        padding: 1.25rem;
    }
    
    .mobile-only .package-main-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .mobile-only .package-dropdown {
        padding: 1rem;
    }
    
    .mobile-only .package-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Mobile order button */
    .mobile-only .order-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ====== THEME SWITCHER FIX ====== */
/* Base Theme Styles */
body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

body:not(.dark-theme) {
    background-color: var(--bg-light);
    color: var(--text-light);
}

/* Theme Switcher Container */
.theme-switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

/* Theme Switch Label */
.theme-switch-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
}

/* Theme Switch Toggle */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-switch:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    background: white;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Dark theme toggle position */
.dark-theme .theme-switch:before {
    transform: translateX(30px);
}

/* Theme Icons */
.theme-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.theme-icon.sun {
    left: 8px;
    color: #f59e0b;
}

.theme-icon.moon {
    right: 8px;
    color: #4f74b0;
}

/* Dark theme icon colors */
.dark-theme .theme-icon.sun {
    color: #8b9bb4;
}

.dark-theme .theme-icon.moon {
    color: #f5f5f5;
}

/* Mobile Theme Toggle */
.mobile-theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

@media (max-width: 768px) {
    .mobile-theme-toggle {
        display: block;
    }
    
    .theme-switch-container {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .theme-switch-label {
        display: none;
    }
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow);
}

.theme-toggle-btn i {
    transition: transform 0.3s ease;
}

.dark-theme .theme-toggle-btn i {
    transform: rotate(180deg);
}

/* Fix for Theme Switch in Navbar */
.navbar .theme-switch-container {
    margin: 0;
}

@media (min-width: 769px) {
    .navbar .theme-switch-container {
        margin-left: 15px;
    }
}

/* ====== FIX SPECIFIC STYLES FOR OFFER PAGE ====== */
/* Ensure all elements respect theme */
.offer-header,
.coupon-section,
.coupon-box,
.packages-section,
.content-section,
.offer-details,
.badge-item,
.spec-item,
.step-item,
.feature-item,
.package-card,
.package-dropdown {
    background-color: var(--card) !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

/* Fix text colors */
.offer-title,
.section-title,
.spec-label,
.step-title,
.badge-title,
.detail-value,
.package-main-btn,
.coupon-label {
    color: var(--text) !important;
}

/* Fix secondary text */
.spec-value,
.step-desc,
.badge-desc,
.detail-label,
.meta-item,
.text-secondary {
    color: var(--text-secondary) !important;
}

/* Fix borders */
.tag-category,
.tag-event,
.coupon-input,
.package-link,
.screenshot-item,
.spec-item,
.badge-item,
.feature-item {
    border-color: var(--border) !important;
}

/* Fix shadows */
.offer-header,
.coupon-section,
.coupon-box,
.packages-section,
.content-section,
.offer-details,
.badge-item {
    box-shadow: 0 4px 20px var(--shadow) !important;
}

/* Fix hover states */
.badge-item:hover,
.package-link:hover,
.screenshot-item:hover,
.order-btn:hover,
.copy-btn:hover {
    box-shadow: 0 8px 25px var(--shadow) !important;
}

/* Fix gradients for dark theme */
.dark-theme .offer-title,
.dark-theme .logo-text {
    background: linear-gradient(135deg, #F68320, #5d8bd6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Fix coupon input background */
.coupon-input {
    background-color: var(--bg) !important;
}

/* Fix package dropdown background */
.package-dropdown {
    background-color: var(--card) !important;
}

/* Fix package link background */
.package-link {
    background: rgba(246, 131, 32, 0.1) !important;
    color: var(--primary) !important;
}

.dark-theme .package-link {
    background: rgba(246, 131, 32, 0.15) !important;
}

.package-link:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* Fix video wrapper background */
.video-wrapper {
    background: var(--bg) !important;
}

/* Fix scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ====== RESPONSIVE UTILITIES ====== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-only .offer-header {
        padding: 1rem;
    }
    
    .mobile-only .offer-title {
        font-size: 1.35rem;
    }
    
    .mobile-only .section-title {
        font-size: 1.1rem;
    }
    
    .mobile-only .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .mobile-only .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-only .specs-grid {
        grid-template-columns: 1fr;
    }
}

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

.content-section {
    animation: slideIn 0.5s ease-out;
}

/* ====== LOADING STATES ====== */
.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}

/* ====== PRINT STYLES ====== */
@media print {
    .navbar,
    .footer,
    .coupon-section,
    .coupon-box,
    .order-btn,
    .theme-switcher,
    .mobile-theme-toggle {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .offer-header,
    .content-section,
    .offer-details {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
