    :root {
        --primary: #059669; 
        --primary-hover: #047857;
        --dark: #0f172a;
        --text-main: #334155;
        --text-muted: #64748b;
        --bg-light: #f8fafc;
        --border-color: #e2e8f0;
    }
    body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #ffffff; color: var(--text-main); }
    
    .text-primary { color: var(--primary) !important; }
    .bg-primary { background-color: var(--primary) !important; }
    
    /* ==========================================================================
   SIDEBAR ACTION BUTTONS (HIGH CONVERSION UI)
   ========================================================================== */

/* 1. Base Structure */
.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px; /* Tall, premium tap target */
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
    z-index: 1; /* Keeps text above the animated shine */
}

/* Icon Spacing & Setup */
.action-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 2. ADD TO CART (Ghost Style) */
.btn-cart-custom {
    background: transparent;
    color: var(--primary, #3b82f6);
    border: 2px solid var(--primary, #3b82f6);
}

.btn-cart-custom:hover {
    background: rgba(59, 130, 246, 0.08); /* Light blue tint on hover */
    transform: translateY(-3px); /* Smooth lift effect */
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.15);
}

/* Cart Icon rolls forward on hover */
.btn-cart-custom:hover i {
    transform: translateX(4px) rotate(-5deg);
}

/* 3. BUY NOW (Solid Gradient with Animations) */
.btn-buy-custom {
    background: linear-gradient(135deg, var(--primary, #3b82f6) 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    /* Idle animation: softly pulses the shadow to grab attention */
    animation: btnSubtlePulse 2.5s infinite;
}

.btn-buy-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.6);
    color: #ffffff;
    animation: none; /* Stops pulse while interacting */
}

/* Lightning Bolt scales up and turns gold on hover */
.btn-buy-custom:hover i {
    transform: scale(1.2);
    color: #fde047; 
}

/* 4. SHINE SWEEP EFFECT (Automated loop on the Buy Now button) */
.btn-buy-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    z-index: -1;
    /* Sweeps a beam of light across the button every 4 seconds */
    animation: btnShineSweep 4s infinite;
}

/* 5. CLICK PHYSICS (Physical squish feeling) */
.action-btn:active {
    transform: scale(0.97) translateY(0) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================================================
   KEYFRAMES FOR AUTOMATED ANIMATIONS
   ========================================================================== */

/* Animates the glass/light reflection */
@keyframes btnShineSweep {
    0% { left: -100%; }
    20% { left: 200%; } /* Finishes the sweep quickly */
    100% { left: 200%; } /* Waits before looping */
}

/* Animates the drop shadow for an idle "breathing" effect */
@keyframes btnSubtlePulse {
    0% { box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 99, 235, 0.7); }
    100% { box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); }
}
    
    /* Breadcrumb & Hero */
    .breadcrumb-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
    .hero-badge { color: #f59e0b; font-weight: 800; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }
    .hero-title { font-weight: 800; color: var(--dark); font-size: 2.6rem; line-height: 1.2; letter-spacing: -1px; }
    .hero-desc { font-size: 1.1rem; color: var(--text-main); line-height: 1.6; }
    
    /* Stats Row */
    .stats-row { display: flex; align-items: center; gap: 15px; font-size: 1.05rem; color: var(--dark); font-weight: 700; flex-wrap: wrap; margin-bottom: 30px; }
    .stats-row .star-rating { color: #fbbf24; font-size: 1.3rem; margin-right: 5px; }
    .stats-row .cart-icon { color: var(--primary); font-size: 1.2rem; margin-right: 5px; }
    .stats-row .check-icon { color: var(--primary); font-size: 1.2rem; margin-right: 5px; }
    .stats-row .divider { color: var(--border-color); font-weight: 300; font-size: 1.2rem; }
    .stats-row .text-muted { font-weight: 500; font-size: 0.95rem; }

    /* Cover Image */
    .product-cover-wrapper { position: relative; border-radius: 16px; overflow: hidden; background: var(--bg-light); border: 1px solid var(--border-color); padding: 20px; text-align: center; }
    /* Forces images to scale cleanly across devices and prevents bandwidth waste */
/* Force responsive image scaling to prevent bandwidth waste */
.product-cover-wrapper img, 
.main-header img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
}
    
    .play-btn-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; transition: 0.2s; z-index: 2; }
    .play-btn-overlay i { color: var(--dark); font-size: 20px; margin-left: 4px; }
    .play-btn-overlay:hover { transform: translate(-50%, -50%) scale(1.1); }
    
    .expand-btn { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 36px; height: 36px; color: var(--dark); cursor: pointer; transition: 0.2s; z-index: 2; }
    .expand-btn:hover { background: #fff; transform: scale(1.1); }
    
    /* Thumbnails */
    .thumb-slider { display: flex; gap: 10px; margin-top: 15px; align-items: center; justify-content: center; }
    .thumb-item { width: 65px; height: 50px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; object-fit: cover; opacity: 0.6; transition: 0.2s; background: var(--bg-light); }
    .thumb-item.active, .thumb-item:hover { border-color: var(--primary); opacity: 1; }
    .thumb-nav { background: #fff; border: 1px solid var(--border-color); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); }

    /* Features Grid */
    .feature-card { background: #f8fafc; border-radius: 20px; padding: 40px 20px; height: 100%; border: 1px solid #f1f5f9; transition: 0.3s; text-align: center; }
    .feature-card:hover { border-color: #e2e8f0; background: #fff; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); }
    .feature-icon-wrapper { width: 75px; height: 75px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; margin: 0 auto 25px auto; }
    
    /* How it Works */
    .hiw-step { text-align: center; margin-bottom: 30px; }
    .hiw-icon-circle { width: 85px; height: 85px; border-radius: 50%; border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--primary); margin: 0 auto 20px auto; background: #fff; position: relative; }
    .hiw-number { position: absolute; top: -5px; left: -5px; background: var(--primary); color: #fff; font-size: 13px; font-weight: 800; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .hiw-step code { background: rgba(5, 150, 105, 0.08); color: var(--primary); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; font-weight: 600; }

    /* Live Screenshots Grid */
    .screenshot-list-item { display: block; overflow: hidden; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: 0.3s; margin-bottom: 25px; }
    .screenshot-list-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
    .screenshot-list-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: var(--primary); }
    .screenshot-list-item:hover img { transform: scale(1.03); }

    /* Tabs */
    .custom-tabs { border-bottom: 2px solid var(--border-color); gap: 20px; }
    .custom-tabs .nav-link { border: none; border-bottom: 3px solid transparent; color: var(--text-muted); font-weight: 700; padding: 12px 5px; font-size: 1.05rem; }
    .custom-tabs .nav-link:hover { color: var(--primary); }
    .custom-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: transparent; }
    
    /* Beautiful Changelog Timeline */
    .changelog-timeline { position: relative; padding-left: 22px; }
    .changelog-timeline::before { content: ''; position: absolute; left: 6px; top: 5px; bottom: 10px; width: 2px; background: var(--border-color); }
    .cl-item { position: relative; margin-bottom: 22px; }
    .cl-item::before { content: ''; position: absolute; left: -22px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--primary); }
    .cl-version { font-weight: 800; color: var(--dark); font-size: 0.95rem; }
    .cl-date { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
    
    /* Document Cards */
    .doc-card-hover { transition: 0.3s ease; }
    .doc-card-hover:hover { border-color: var(--primary) !important; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.05) !important; }

    /* FAQ Text List */
    .faq-text-item { display: block; cursor: pointer; font-size: 1.1rem; color: var(--text-main); margin-bottom: 12px; line-height: 1.5; transition: 0.2s; padding-right: 15px; }
    .faq-text-item:hover { color: var(--primary); }

    /* Sidebar Wrapper */
    .sidebar-wrapper { margin-bottom: 30px; }

    /* Sidebar Content & Pricing */
    .sidebar-card { background: var(--bg-light); border-radius: 16px; border: 1px solid var(--border-color); padding: 30px; margin-bottom: 25px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .sidebar-title { font-size: 1.35rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
    .license-select { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; font-weight: 700; color: var(--dark); padding: 12px 15px; height: auto; box-shadow: 0 2px 4px rgba(0,0,0,0.02); font-size: 1.05rem;}
    
    .price-display { margin: 25px 0 20px 0; }
    .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; font-weight: 600; display: block; margin-bottom: 5px; }
    .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
    display: inline-block;
    margin-right: 12px;
    letter-spacing: -1px;
}

.save-badge {
    background: #dcfce7;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 10px;
    vertical-align: super;
}
    .limited-offer { color: #ef4444; font-weight: 700; font-size: 0.95rem; margin-top: 10px; display: block; }

    /* Dynamic Database License Feature List */
    .dynamic-license-features { margin-top: 25px; margin-bottom: 25px; }
    .dynamic-license-features ul { list-style: none; padding-left: 0; margin-bottom: 0; }
    .dynamic-license-features li { position: relative; padding-left: 35px; margin-bottom: 16px; font-size: 1.05rem; font-weight: 600; color: var(--dark); text-align: left; }
    .dynamic-license-features li i { position: absolute; left: 0; top: 4px; font-size: 18px; color: var(--primary); }
    
    /* AJAX & BUY NOW Buttons */
    .btn-buy-sidebar { background: var(--primary); color: #fff; font-weight: 800; font-size: 1.2rem; padding: 18px; border-radius: 12px; transition: 0.3s; box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3); width: 100%; border: none;}
    .btn-buy-sidebar:hover { background: var(--primary-hover); transform: translateY(-2px); color: #fff; box-shadow: 0 6px 15px rgba(5, 150, 105, 0.4);}
    .btn-ajax-cart { transition: 0.3s; }
    .btn-ajax-cart:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

    .trust-icons { display: flex; justify-content: space-between; text-align: center; margin-top: 25px; border-top: 1px solid var(--border-color); padding-top: 25px; }
    .trust-icons div { flex: 1; font-size: 0.8rem; font-weight: 700; color: var(--text-main); }
    .trust-icons i { display: block; font-size: 22px; margin-bottom: 8px; }
    
    .payment-logos { display: flex; justify-content: center; gap: 15px; margin-top: 25px; }

    /* Green Trust Banner */
    .green-trust-banner { background: #064e3b; border-radius: 16px; padding: 25px 40px; color: #fff; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 50px; margin-bottom: 50px; }
    .gtb-item { display: flex; align-items: center; gap: 15px; }
    .gtb-item i { font-size: 32px; opacity: 0.9; }
    .gtb-item h4 { font-size: 1.4rem; font-weight: 800; margin: 0; }
    .gtb-item p { font-size: 0.85rem; margin: 0; opacity: 0.8; }
    .gtb-badge { background: rgba(255,255,255,0.1); padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
    .gtb-badge i { color: #34d399; font-size: 20px; }