/* ==========================================================================
   KINKI BOOM (kinkiboom.cl) - DESIGN SYSTEM & STOREFRONT STYLES
   Aesthetic: Sensual Dark Luxury / Neon Glow / Glassmorphic UI
   ========================================================================== */

:root {
    --bg-base: #0a0a0f;
    --bg-surface: #12121c;
    --bg-card: #181826;
    --bg-card-hover: #202033;
    --bg-glass: rgba(24, 24, 38, 0.82);
    --bg-glass-heavy: rgba(14, 14, 22, 0.94);
    
    --primary: #ff2d78;
    --primary-hover: #ff478c;
    --primary-glow: rgba(255, 45, 120, 0.35);
    --primary-light: #ff75a0;
    
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.35);
    --gold: #ffd166;
    --gold-glow: rgba(255, 209, 102, 0.3);
    --cyan: #06b6d4;
    --green: #10b981;
    
    --text-main: #f8fafc;
    --text-sub: #cbd5e1;
    --text-muted: #8892b0;
    
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-highlight: rgba(255, 45, 120, 0.3);
    --border-glow: 0 0 15px rgba(255, 45, 120, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 25px rgba(255, 45, 120, 0.28);
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(255, 45, 120, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 65%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    color: var(--text-main);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, #ff478c 0%, #ff2d78 40%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-purple {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #ff2d78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pink {
    background: rgba(255, 45, 120, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(255, 45, 120, 0.3);
}

.badge-gold {
    background: rgba(255, 209, 102, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #b81b58 0%, #ff2d78 50%, #9333ea 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    text-align: center;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.announcement-bar .pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff;
    animation: pulse 1.5s infinite;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 45, 120, 0.35);
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.brand-logo-old {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-logo .boom-dot {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary);
}

.search-container {
    flex: 1;
    max-width: 440px;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 10px 42px 10px 18px;
    font-size: 0.9rem;
    color: #fff;
    transition: var(--transition);
}

.search-input:focus {
    background: rgba(24, 24, 38, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-sub);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn-cart {
    background: linear-gradient(135deg, #ff2d78, #db2777);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
}

.nav-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 120, 0.5);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-base);
}

.btn-admin-access {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.btn-admin-access:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Hero Carousel */
.hero-section {
    position: relative;
    padding: 24px 0 40px;
}

.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    display: none;
    min-height: 400px;
    padding: 50px 40px;
    position: relative;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.hero-content {
    max-width: 620px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin: 14px 0 12px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-sub);
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    position: absolute;
    right: 40px;
    bottom: 20px;
    max-width: 340px;
    max-height: 360px;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.hero-image-wrap img {
    max-height: 340px;
    object-fit: contain;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.hero-slide:hover .hero-image-wrap img {
    transform: rotate(0deg) scale(1.04);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 28px;
    border-radius: var(--radius-full);
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Trust Badges Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -15px;
    position: relative;
    z-index: 20;
    margin-bottom: 48px;
}

.trust-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 45, 120, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section Common */
.section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title h2 {
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Packs Section */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-neon);
}

.pack-card-header {
    padding: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(255, 45, 120, 0.08) 0%, transparent 100%);
}

.pack-card-header .badge {
    position: absolute;
    top: 18px;
    right: 18px;
}

.pack-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pack-card-header .tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pack-img-preview {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.pack-img-preview img {
    max-height: 160px;
    object-fit: contain;
}

.pack-items-list {
    padding: 20px 24px;
    flex: 1;
    list-style: none;
}

.pack-items-list li {
    font-size: 0.88rem;
    color: var(--text-sub);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pack-items-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.pack-pricing-footer {
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pack-price-box .price-offer {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
}

.pack-price-box .price-regular {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pack-price-box .savings-tag {
    font-size: 0.75rem;
    color: #34d399;
    font-weight: 600;
}

/* Custom Bundle / Arma tu Pack Builder */
.pack-builder-box {
    background: linear-gradient(135deg, rgba(24, 24, 38, 0.95) 0%, rgba(32, 16, 40, 0.9) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pack-builder-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.builder-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.builder-step-col {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.step-badge-num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.step-badge-num span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.builder-select {
    width: 100%;
    margin-top: 8px;
    font-size: 0.9rem;
}

.selected-preview {
    margin-top: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    min-height: 85px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-preview img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.builder-summary-bar {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.discount-meter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discount-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(255, 209, 102, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 209, 102, 0.4);
}

.builder-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
}

.builder-price-total {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

/* Category Filter Chips */
.category-chips-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 30px;
    scrollbar-width: thin;
}

.category-chips-wrap::-webkit-scrollbar {
    height: 5px;
}

.category-chips-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.category-chip {
    white-space: nowrap;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-sub);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-chip:hover {
    background: var(--bg-card-hover);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.category-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Filter / Sort Header */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sort-select-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 45, 120, 0.15);
}

.card-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.card-img-box {
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 15, 0.4) 100%);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.card-img-box img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .card-img-box img {
    transform: scale(1.08);
}

.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .quick-view-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-quick-view:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-title {
    font-size: 0.96rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-rating span {
    color: var(--text-muted);
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.price-old {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-cart {
    background: rgba(255, 45, 120, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(255, 45, 120, 0.3);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.05);
}

/* Pagination / Load More */
.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-sub);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-load-more:hover {
    background: var(--bg-card-hover);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

/* Discretion FAQ & Guarantees */
.discretion-banner {
    background: linear-gradient(135deg, #18182b 0%, #1e1329 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.discretion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.discretion-content p {
    color: var(--text-sub);
    margin-bottom: 20px;
}

.discretion-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discretion-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.discretion-bullets li span {
    color: #10b981;
    font-weight: bold;
}

.package-mockup {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.package-mockup-icon {
    font-size: 4rem;
    margin-bottom: 12px;
}

/* Drawer Cart Modal */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close-drawer {
    background: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: var(--transition);
}

.btn-close-drawer:hover {
    color: #fff;
}

.free-shipping-meter {
    padding: 14px 24px;
    background: rgba(255, 45, 120, 0.08);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.84rem;
}

.meter-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 8px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff2d78, #ffd166);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.cart-items-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
    width: 65px;
    height: 65px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-qty {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.cart-item-remove {
    background: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: auto;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--primary);
}

.cart-footer {
    padding: 20px 24px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-actions-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary-block {
    width: 100%;
    background: linear-gradient(135deg, #ff2d78, #db2777);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 45, 120, 0.5);
}

.btn-whatsapp-direct {
    width: 100%;
    background: #25d366;
    color: #000;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp-direct:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Modals General */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.btn-close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-close-modal:hover {
    background: var(--primary);
}

/* Product Detail Modal Content */
.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.modal-product-img {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-img img {
    max-height: 280px;
    object-fit: contain;
}

.modal-product-details h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-price-box {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.modal-price-box .current {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.modal-desc-box {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 24px;
    white-space: pre-line;
    max-height: 150px;
    overflow-y: auto;
}

/* Checkout Form in Modal */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sub);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.delivery-choice-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.delivery-choice-box:hover, .delivery-choice-box.selected {
    border-color: var(--primary);
    background: rgba(255, 45, 120, 0.08);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .packs-grid {
        grid-template-columns: 1fr;
    }
    .discretion-banner {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        flex-wrap: wrap;
    }
    .search-container {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-image-wrap {
        display: none;
    }
    .trust-bar {
        grid-template-columns: 1fr;
    }
    .builder-steps-grid {
        grid-template-columns: 1fr;
    }
    .modal-product-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
