/* ========================================
   DESITEASE - CLEAN VERSION V10
   Colored categories + mega-glow-wrapper with custom settings
======================================== */

@property --hue { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --rotate { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --bg-y { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --bg-x { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --glow-translate-y { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --glow-opacity { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --glow-blur { syntax: "<number>"; inherits: true; initial-value: 0; }
@property --glow-scale { syntax: "<number>"; inherits: true; initial-value: 2; }
@property --glow-radius { syntax: "<number>"; inherits: true; initial-value: 2; }

:root {
    --primary: #0984e3;
    --primary-dark: #0652a8;
    --gold: #f39c12;
    --crimson: #dc143c;
    --orange: #ff9500;
    --purple: #a855f7;
    --tease-red: #e74c3c;
    --header-dark: #2d1b1b;
    --card-color: hsl(260deg 100% 3%);
    --text-color: hsl(260deg 10% 55%);
    --card-radius: 20px;
    --hue: 0;
    --hue-speed: 1;
    --rotate: 0;
    --animation-speed: 4s;
    --glow-scale: 1.5;
    --glow-blur: 6;
    --glow-opacity: 1;
    --glow-radius: 100;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, 
        rgba(255, 183, 77, 0.12) 0%, 
        rgba(255, 183, 77, 0.06) 25%,
        rgba(168, 85, 247, 0.12) 35%,
        rgba(168, 85, 247, 0.06) 60%,
        rgba(220, 20, 60, 0.12) 70%,
        rgba(220, 20, 60, 0.06) 85%,
        rgba(255, 255, 255, 1) 100%
    );
    color: #2d3436;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0 0 100px;
}

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

/* ===== DARK HEADER WITH RED SEPARATOR ===== */
header {
    background: var(--header-dark);
    text-align: center;
    padding: 30px 15px 25px;
    margin-bottom: 0;
    border-bottom: 3px solid var(--tease-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    header {
        padding: 25px 15px 20px;
    }
}

.logo {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.8rem;
    }
}

.logo .desi { color: white; }
.logo .tease { color: var(--tease-red); }

.tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    color: var(--gold);
}

/* ===== CATEGORY SECTIONS ===== */
.category-section {
    padding: 40px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 25px;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .cat-title {
        font-size: 1.3rem;
    }
}

/* COLORED CATEGORY TITLES WITH GRADIENTS */
.cat-title.cat1-title {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat-title.cat2-title {
    background: linear-gradient(135deg, #a855f7, #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat-title.cat3-title {
    background: linear-gradient(135deg, #dc143c, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* COLORED TEXT ICONS */
.cat-icon {
    font-style: normal;
    font-weight: 900;
    font-size: 1.8rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .cat-icon {
        font-size: 1.4rem;
    }
}

.cat-icon.cat1-icon {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat-icon.cat2-icon {
    background: linear-gradient(135deg, #a855f7, #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat-icon.cat3-icon {
    background: linear-gradient(135deg, #dc143c, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* GRADIENT BUNDLE BUTTONS */
.cat-bundle-btn {
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cat-bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.cat-bundle-btn:active {
    transform: scale(0.98);
}

.cat-bundle-btn[data-cat="cat1"] {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
}

.cat-bundle-btn[data-cat="cat2"] {
    background: linear-gradient(135deg, #a855f7, #c026d3);
}

.cat-bundle-btn[data-cat="cat3"] {
    background: linear-gradient(135deg, #dc143c, #e74c3c);
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 0;
}

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

/* ===== PACK CARDS ===== */
.card {
    background: white;
    border: 2px solid rgba(240, 245, 250, 1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    z-index: 3;
    isolation: isolate;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card:active {
    transform: scale(0.98);
}

.card.cat-orange {
    border-color: rgba(255, 149, 0, 0.4);
}

.card.cat-purple {
    border-color: rgba(168, 85, 247, 0.4);
}

.card.cat-crimson {
    border-color: rgba(220, 20, 60, 0.4);
}

.card-info-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-img-wrap:hover .card-info-icon {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.card-img-wrap {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    cursor: pointer;
}

@media (min-width: 768px) {
    .card-body {
        padding: 15px;
    }
}

.card-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

@media (min-width: 768px) {
    .card-name {
        font-size: 1.15rem;
    }
}

.card-text {
    font-size: 0.75rem;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
    flex: 1;
}

@media (min-width: 768px) {
    .card-text {
        font-size: 0.8rem;
        line-height: 1.4;
        height: 2.8em;
    }
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-top: auto;
}

.price-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.old-price {
    font-size: 0.7rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 3px;
}

@media (min-width: 768px) {
    .old-price {
        font-size: 0.75rem;
    }
}

.price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
}

@media (min-width: 768px) {
    .price {
        font-size: 1.4rem;
    }
}

.btn-add {
    background: linear-gradient(135deg, #0984e3, #0652a8);
    border: none;
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.3);
    color: white;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .btn-add {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

.btn-add:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(9, 132, 227, 0.4);
}

.btn-add.active {
    background: linear-gradient(135deg, #00b894, #00916d);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.btn-add.active:hover {
    box-shadow: 0 6px 18px rgba(0, 184, 148, 0.4);
}

/* ===== MEGA-GLOW-WRAPPER (ANIMATED ULTIMATE BUNDLE) - CUSTOM SETTINGS ===== */
.mega-glow-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    isolation: isolate;
    position: relative;
    z-index: 1;
}

.mega-glow-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1.5/1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all 0.5s ease;
    isolation: isolate;
}

@media (max-width: 768px) {
    .mega-glow-card {
        aspect-ratio: 1.3/1;
    }
}

.mega-glow-card:hover .mega-glow-content {
    mix-blend-mode: darken;
    --text-color: white;
    box-shadow: 0 0 40px 6px rgb(255 255 255 / 15%);
}

.mega-glow-card:hover .mega-glow-content::before {
    animation-play-state: paused;
}

.mega-glow-card:hover .glow {
    --glow-blur: 1.5;
    --glow-opacity: 0.6;
    --glow-scale: 2.5;
    --glow-radius: 0;
    --rotate: 900;
    animation-play-state: paused;
}

.mega-glow-card:hover .glow::after {
    --glow-translate-y: 0;
    animation-play-state: paused;
}

/* USER CUSTOM SETTINGS APPLIED */
.mega-glow-content {
    border: 2px solid #ffffff;
    position: absolute;
    width: 100%;
    max-width: 360px;
    background: var(--card-color);
    border-radius: calc(var(--card-radius) * 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: var(--text-color);
    text-align: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .mega-glow-content {
        padding: 25px 20px;
    }
}

.mega-glow-content::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    border-radius: calc(var(--card-radius) * 0.9);
    box-shadow: 0 0 20px black;
    mix-blend-mode: color-burn;
    z-index: -1;
    background: hsl(0deg 0% 16%) 
        radial-gradient(
            30% 30% at calc((var(--bg-x) * 1%) ) calc((var(--bg-y) * 1%) ),
            hsl(calc((var(--hue) * var(--hue-speed)) * 1deg) 100% 90% / 0%),
            hsl(calc((var(--hue) * var(--hue-speed)) * 1deg) 100% 80% / 20%),
            hsl(calc((var(--hue) * var(--hue-speed)) * 1deg) 100% 60% / 40%),
            transparent 100%
        );
    animation: 
        hue-animation var(--animation-speed) linear infinite,
        rotate-bg var(--animation-speed) linear infinite;
}

.glow {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    animation: rotate var(--animation-speed) linear infinite;
    transform: rotateZ(calc(var(--rotate) * 1deg));
    transform-origin: center;
    border-radius: calc(var(--glow-radius) * 10vw);
    z-index: 0;
}

.glow::after {
    content: "";
    display: block;
    z-index: -1;
    filter: blur(calc(var(--glow-blur) * 10px));
    width: 130%;
    height: 130%;
    left: -15%;
    top: -15%;
    background: hsl(calc((var(--hue) * var(--hue-speed)) * 1deg) 100% 60%);
    position: absolute;
    border-radius: calc(var(--glow-radius) * 10vw);
    animation: hue-animation var(--animation-speed) linear infinite;
    transform:
        scaleY(calc(var(--glow-scale) * 1.1))
        scaleX(calc(var(--glow-scale) * 1.2))
        translateY(calc(var(--glow-translate-y) * 1%));
    opacity: var(--glow-opacity);
    will-change: transform, filter;
}

/* USER CUSTOM BADGE STYLING */
.mega-discount-badge {
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.8s ease, text-shadow 0.8s ease;
    color: #e74b3b;
    text-shadow: 0 0 12px rgba(255, 94, 87, 0.5);
}

@media (max-width: 768px) {
    .mega-discount-badge {
        gap: 6px;
    }
}

/* USER CUSTOM SUBTITLE STYLING */
.mega-subtitle {
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mega-subtitle {
        margin-bottom: 8px;
    }
}

.mega-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .mega-price-row {
        gap: 8px;
        margin-bottom: 10px;
    }
}

/* USER CUSTOM PRICE STYLING */
.mega-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

@media (max-width: 768px) {
    .mega-price {
        font-size: 1.8rem;
    }
}

/* USER CUSTOM OLD PRICE STYLING */
.mega-old-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mega-old-price {
        font-size: 0.85rem;
    }
}

/* USER CUSTOM CTA BUTTON STYLING */
.mega-cta-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    max-width: 280px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
    width: 100%;
}

@media (max-width: 768px) {
    .mega-cta-btn {
        max-width: 240px;
    }
}

.mega-cta-btn:hover {
    transform: translateY(-2px);
}

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

@keyframes rotate-bg {
    0% { --bg-x: 0; --bg-y: 0; }
    25% { --bg-x: 100; --bg-y: 0; }
    50% { --bg-x: 100; --bg-y: 100; }
    75% { --bg-x: 0; --bg-y: 100; }
    100% { --bg-x: 0; --bg-y: 0; }
}

@keyframes rotate {
    from { --rotate: -70; --glow-translate-y: -65; }
    to { --rotate: 290; --glow-translate-y: -65; }
}

@keyframes hue-animation {
    0% { --hue: 0; }
    100% { --hue: 360; }
}

/* ===== STICKY CART ===== */
.sticky-cart {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #2d3436;
    padding: 14px 20px;
    border-radius: 16px;
    width: calc(100% - 32px);
    max-width: 500px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    gap: 12px;
    border: 2px solid #e0e0e0;
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-clear-btn-inside {
    background: rgba(220, 20, 60, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    color: rgba(220, 20, 60, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
    flex-shrink: 0;
}

.cart-clear-btn-inside:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.5);
    color: var(--crimson);
    transform: scale(1.05);
}

.checkout-arrow {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: none;
    box-shadow: 0 4px 20px rgba(9, 132, 227, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.checkout-arrow:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(9, 132, 227, 0.4);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.detail-box {
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.detail-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.detail-content {
    padding: 25px;
}

.detail-content h2 {
    margin-bottom: 12px;
    font-family: 'Baloo 2';
    color: #2d3436;
}

.detail-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #636e72;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    background: rgba(9, 132, 227, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.spec-label {
    font-size: 0.65rem;
    color: #95a5a6;
    font-weight: 700;
    margin-bottom: 5px;
}

.spec-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
}

.detail-close-btn {
    width: 100%;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #2d3436;
    transition: all 0.3s ease;
}

.detail-close-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary);
}

/* ===== CHECKOUT MODAL DESIGN ===== */
.checkout-box {
    background: #fff;
    color: #000;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 25px;
    margin: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.co-title {
    color: #e55039;
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.co-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.co-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: #f1f2f6;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.co-tab.active {
    background: #fff;
    border-color: #e55039;
    color: #e55039;
}

.co-section {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.co-section.active {
    display: block;
}

.order-summary {
    background: #fff9c4;
    border: 1px solid #f0e68c;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 5px;
}

.order-summary::-webkit-scrollbar {
    width: 5px;
}

.order-summary::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.order-summary::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding: 8px 5px;
}

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

.summary-remove {
    color: #d63031;
    cursor: pointer;
    margin-left: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 0 5px;
}

.summary-remove:hover {
    color: #ff0000;
    transform: scale(1.2);
}

.bundle-tag {
    color: #20bf6b;
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.co-total {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #e55039;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.co-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
}

.co-help {
    font-size: 0.75rem;
    color: #888;
    text-align: left;
    margin: -4px 0 10px;
}

.co-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.85rem;
    text-align: left;
    color: #2d3436;
}

.co-btn {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: #e55039;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(229, 80, 57, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.co-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(229, 80, 57, 0.4);
}

.co-btn-inline {
    background: white;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #2d3436;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.co-btn-inline:hover {
    background: #f8f9fa;
    border-color: #e55039;
    transform: scale(1.05);
}

.crypto-code {
    display: block;
    background: rgba(9, 132, 227, 0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    word-break: break-all;
    margin: 10px 0;
    border: 1px solid rgba(9, 132, 227, 0.2);
    color: #2d3436;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

footer p {
    color: #636e72;
}

/* ========================================
   CATEGORY SEPARATORS & FOOTER STYLING
   ======================================== */

/* ADD THIN SEPARATOR LINES BETWEEN CATEGORIES */
.category-section {
    padding: 40px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible; /* Keep this for cards but mega bundle is contained */
}

.category-section:last-of-type {
    border-bottom: none;
}

/* FOOTER - MATCH HEADER DARK THEME */
footer {
    background: var(--header-dark);
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 0;
    border-top: 3px solid var(--tease-red);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10; /* ADD THIS - Footer above everything */
    isolation: isolate; /* ADD THIS */
}

footer .logo {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 900;
}

footer .logo .desi {
    color: white;
}

footer .logo .tease {
    color: var(--tease-red);
}

footer .tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* SOCIAL LINKS - SIDE BY SIDE ON ALL DEVICES */
footer .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    flex-wrap: nowrap;
}

footer .social-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer .social-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: var(--tease-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

footer .social-btn i {
    font-size: 1.2rem;
}

footer .footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* MOBILE RESPONSIVE - KEEP BUTTONS SIDE BY SIDE */
@media (max-width: 768px) {
    footer {
        padding: 35px 15px 25px;
    }
    
    footer .logo {
        font-size: 2rem;
    }
    
    footer .tagline {
        font-size: 0.85rem;
    }
    
    footer .social-links {
        gap: 10px;
    }
    
    footer .social-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }
}

/* FIX WHITE SPACE - REMOVE BODY PADDING BOTTOM */
body {
    background: linear-gradient(180deg,
    rgba(255, 183, 77, 0.12) 0%,
    rgba(255, 183, 77, 0.06) 25%,
    rgba(168, 85, 247, 0.12) 35%,
    rgba(168, 85, 247, 0.06) 60%,
    rgba(220, 20, 60, 0.12) 70%,
    rgba(220, 20, 60, 0.06) 85%,
    rgba(255, 255, 255, 1) 100%
    );
    color: #2d3436;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0;
}

/* ========================================
   PREMIUM CARDS - SECRET VAULT & ACTRESS
   ======================================== */

/* SECRET VAULT - DARK GREEN VIP THEME */
.card[data-id="secret"] {
    background: linear-gradient(145deg, #0d2818, #1a4d2e, #0f3d26);
    border: 2px solid #27ae60;
    position: relative;
    overflow: hidden;
}

.card[data-id="secret"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
    animation: secretGlow 4s ease-in-out infinite;
    pointer-events: none; /* ADD THIS LINE */
}

@keyframes secretGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(10px, 10px) scale(1.1); opacity: 0.5; }
}

.card[data-id="secret"] .card-name {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    font-weight: 900;
}

.card[data-id="secret"] .card-text {
    color: rgba(255, 255, 255, 0.8);
}

.card[data-id="secret"] .price {
    color: #f1c40f;
    text-shadow: 0 0 8px rgba(241, 196, 15, 0.4);
}

.card[data-id="secret"] .old-price {
    color: rgba(255, 255, 255, 0.5);
}

.card[data-id="secret"] .type-badge {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #000;
    font-weight: 900;
    border: 1px solid rgba(241, 196, 15, 0.5);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
}

.card[data-id="secret"] .card-info-icon {
    background: rgba(241, 196, 15, 0.2);
    border: 1px solid rgba(241, 196, 15, 0.4);
    color: #f1c40f;
}

.card[data-id="secret"] .card-price-row {
    border-top: 1px solid rgba(39, 174, 96, 0.3);
}

.card[data-id="secret"] .btn-add {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.card[data-id="secret"] .btn-add:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
    transform: scale(1.08);
}

/* ACTRESS EXCLUSIVE - LUXURY GOLD THEME */
.card[data-id="actress"] {
    background: linear-gradient(145deg, #2c1810, #3d2416, #4a2c1b);
    border: 2px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.card[data-id="actress"]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: actressGlow 4s ease-in-out infinite;
    pointer-events: none; /* ADD THIS LINE */
}

@keyframes actressGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-10px, 10px) scale(1.1); opacity: 0.5; }
}

.card[data-id="actress"] .card-name {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: 900;
}

.card[data-id="actress"] .card-text {
    color: rgba(255, 255, 255, 0.85);
}

.card[data-id="actress"] .price {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.card[data-id="actress"] .old-price {
    color: rgba(255, 255, 255, 0.5);
}

.card[data-id="actress"] .type-badge {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #000;
    font-weight: 900;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.card[data-id="actress"] .card-info-icon {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.card[data-id="actress"] .card-price-row {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.card[data-id="actress"] .btn-add {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.card[data-id="actress"] .btn-add:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.08);
}

/* HOVER EFFECTS FOR PREMIUM CARDS */
.card[data-id="secret"]:hover,
.card[data-id="actress"]:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ========================================
   PREMIUM MODAL STYLING - SECRET & ACTRESS
   ======================================== */

/* SECRET VAULT MODAL - DARK GREEN THEME */
.detail-box[data-pack-id="secret"] {
    background: linear-gradient(145deg, #0d2818, #1a4d2e, #0f3d26);
    border: 2px solid #27ae60;
    position: relative;
    overflow: hidden;
}

.detail-box[data-pack-id="secret"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
    animation: secretGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.detail-box[data-pack-id="secret"] .detail-content {
    position: relative;
    z-index: 1;
}

.detail-box[data-pack-id="secret"] .detail-content h2 {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.detail-box[data-pack-id="secret"] .detail-content p {
    color: rgba(255, 255, 255, 0.85);
}

.detail-box[data-pack-id="secret"] .spec-item {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.detail-box[data-pack-id="secret"] .spec-label {
    color: #f1c40f;
}

.detail-box[data-pack-id="secret"] .spec-val {
    color: #27ae60;
    text-shadow: 0 0 5px rgba(39, 174, 96, 0.3);
}

.detail-box[data-pack-id="secret"] .detail-close-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    border: 2px solid #27ae60;
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.detail-box[data-pack-id="secret"] .detail-close-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
}

/* ACTRESS EXCLUSIVE MODAL - LUXURY GOLD THEME */
.detail-box[data-pack-id="actress"] {
    background: linear-gradient(145deg, #2c1810, #3d2416, #4a2c1b);
    border: 2px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.detail-box[data-pack-id="actress"]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: actressGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.detail-box[data-pack-id="actress"] .detail-content {
    position: relative;
    z-index: 1;
}

.detail-box[data-pack-id="actress"] .detail-content h2 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.detail-box[data-pack-id="actress"] .detail-content p {
    color: rgba(255, 255, 255, 0.85);
}

.detail-box[data-pack-id="actress"] .spec-item {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.detail-box[data-pack-id="actress"] .spec-label {
    color: #ffd700;
}

.detail-box[data-pack-id="actress"] .spec-val {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.detail-box[data-pack-id="actress"] .detail-close-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border: 2px solid #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.detail-box[data-pack-id="actress"] .detail-close-btn:hover {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

footer {
    margin-top: 40px; /* Space above footer */
}


/* PayPal Button Styling */
.paypal-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.paypal-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.5);
}

.paypal-btn:active {
    transform: translateY(0);
}

.paypal-btn i {
    font-size: 1.3rem;
}



/* ========== CRYPTO ACCORDION ========== */
.crypto-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.crypto-main {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border: 2px solid #d0d7de;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-main:hover {
    border-color: #0984e3;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.15);
}

.crypto-main.expanded {
    border-color: #0984e3;
    background: linear-gradient(135deg, #e8f4fd 0%, #d6eeff 100%);
}

.crypto-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-icon {
    font-size: 2rem;
    font-weight: 900;
    min-width: 40px;
    text-align: center;
}

.crypto-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2px;
}

.crypto-info span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

.crypto-chevron {
    font-size: 1.2rem;
    color: #0984e3;
    transition: transform 0.3s ease;
}

.crypto-main.expanded .crypto-chevron {
    transform: rotate(180deg);
}

.crypto-networks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.crypto-main.expanded .crypto-networks {
    max-height: 500px;
}

.crypto-networks-inner {
    padding: 0 15px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.network-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.network-btn:hover {
    border-color: #0984e3;
    background: #f8fbff;
    transform: translateX(3px);
}

.network-btn:active {
    transform: scale(0.98);
}

.network-left {
    display: flex;
    flex-direction: column;
}

.network-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2px;
}

.network-desc {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
}

.network-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.network-badge.best {
    background: #00b894;
    color: white;
}

.network-badge.cheap {
    background: #fdcb6e;
    color: #000;
}

.network-badge.popular {
    background: #fd79a8;
    color: white;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #00b894;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
