/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    /* Colors - Premium Dark Amber Theme */
    --bg-base: #0f0f11;
    --bg-surface: #1a1a1e;
    --bg-surface-elevated: #25252b;

    --primary: #d9771e;
    /* Rich Amber */
    --primary-hover: #e58d3c;
    --primary-light: rgba(217, 119, 30, 0.15);

    --text-main: #f0f0f0;
    --text-muted: #a0a0a5;

    --success: #2e9f60;
    --danger: #e23b3b;
    --border: #2a2a32;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Border Radius & Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(217, 119, 30, 0.2);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Reset & Globals
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-center {
    text-align: center !important;
}

.mb-1 {
    margin-bottom: var(--space-xs);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.mb-5 {
    margin-bottom: var(--space-xl);
}

.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.py-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: var(--space-xs);
}

.gap-2 {
    gap: var(--space-sm);
}

.gap-3 {
    gap: var(--space-md);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   Buttons & Inputs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(217, 119, 30, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* Main Area Math */
main {
    min-height: calc(100vh - 300px);
    /* rough estimate */
    padding-top: 70px;
    /* Accounts for fixed navbar */
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-surface) 0%, #0d0d0f 100%);
    padding: 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding: clamp(50px, 8vw, 80px) 0 clamp(40px, 6vw, 60px);
}

/* Footer Logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    transition: var(--transition-base);
    margin-bottom: 18px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.footer-logo:hover {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 24px;
}

.footer-heading {
    margin-bottom: 22px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    transition: all 0.25s ease;
}

.footer-links a i {
    font-size: 1.05rem;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-links a:hover i {
    opacity: 1;
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.15rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 30, 0.3);
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    width: fit-content;
}

.trust-badge-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-tagline {
    opacity: 0.5;
    font-size: 0.82rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-trust-badges {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* WA Float Btn */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 60px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-decoration: none;
}

.wa-float i {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.wa-float-tooltip {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    overflow: hidden;
    display: inline-block;
}

.wa-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    padding-right: 24px;
}

.wa-float:hover i {
    transform: scale(1.1);
    margin-right: 8px;
}

.wa-float:hover .wa-float-tooltip {
    max-width: 150px; /* Expand space for text */
    opacity: 1;
}

/* Loader Premium */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(217, 119, 30, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    position: relative;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: -4px; right: -4px; bottom: -4px; left: -4px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.2);
    animation: spin 2s linear infinite reverse;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
    animation: pulseGlow 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   Responsive & Utilities
   ========================================================================== */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-surface);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition-base);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Page Specific Components
   ========================================================================== */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(217, 119, 30, 0.15) 0%, rgba(15, 15, 17, 1) 50%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    margin-top: 24px;
}

/* Trust Indicators */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-50px);
}

.trust-item h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 119, 30, 0.3);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 119, 30, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.product-image-container {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: var(--bg-surface-elevated);
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Video Section */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(217, 119, 30, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 30, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 119, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 30, 0);
    }
}

/* CTA Highlight Section */
.cta-highlight {
    background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, rgba(217, 119, 30, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 30, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Forms & Simulator */
.form-control {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    margin-bottom: 20px;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 30, 0.2);
}

.simulator-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hero-badge {
        margin-bottom: 16px;
    }

    .hero-title {
        margin-top: 16px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Blog & SEO Pages
   ========================================================================== */
.blog-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-base);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-detail-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    height: 400px;
    background: var(--bg-surface-elevated);
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article {
    line-height: 1.9;
    font-size: 1.15rem;
    color: #e0e0e5;
}

.blog-article h2,
.blog-article h3 {
    color: #fff;
    margin: 40px 0 20px;
}

.blog-article p {
    margin-bottom: 20px;
}

.blog-article blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    background: var(--bg-surface-elevated);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-main);
}

/* ==========================================================================
   Micro-Animations & Polish
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header,
.hero-content,
.benefits-grid,
.products-grid,
.detail-grid,
.simulator-card,
.trust-grid,
.blog-card,
.reseller-grid {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* ==========================================================================
   Reseller UI V2 (Reference Design)
   ========================================================================== */
.reseller-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .reseller-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.calculator-dark-card {
    background: #111418;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.calc-header {
    background: #1a1d24;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-estimasi {
    background: rgba(217, 119, 30, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.calc-body {
    padding: 25px;
}

.profit-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    transition: background 0.15s ease;
}

.profit-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(217, 119, 30, 0.5);
    transition: transform 0.2s;
}

.profit-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.profit-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(217, 119, 30, 0.5);
    transition: transform 0.2s;
    border: none;
}

.profit-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Right Tier Cards */
.tier-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.tier-pro {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 10px 30px rgba(217, 119, 30, 0.15);
}

/* ==========================================================================
   B2B Redesign Components (V3)
   ========================================================================== */
.b2b-feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.b2b-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-base);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.b2b-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.b2b-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.b2b-card h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.b2b-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Premium Lead Capture Card */
.lead-capture-card {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1115 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lead-capture-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.lead-capture-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-capture-card p {
    margin-bottom: 25px;
    max-width: 90%;
}

.nav-cta-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(217, 119, 30, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(217, 119, 30, 0.6);
    background: var(--primary-hover);
}

.nav-cta-btn::after {
    display: none !important;
}

/* Adjust Section Spacing */
.b2b-section-header {
    margin-bottom: 60px;
}

.b2b-section-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 15px;
}

.b2b-section-header p {
    max-width: 700px;
}

/* ==========================================================================
   Dynamic Page Headers V2
   ========================================================================== */
.page-header-dynamic {
    position: relative;
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
    background: radial-gradient(ellipse at 20% 50%, rgba(217, 119, 30, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(217, 119, 30, 0.05) 0%, transparent 50%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-header-dynamic::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 30, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.page-header-dynamic::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 119, 30, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 6s ease-in-out infinite reverse;
}

.page-header-dynamic .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(217, 119, 30, 0.1);
    border: 1px solid rgba(217, 119, 30, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out forwards;
}

.page-header-dynamic .page-badge i {
    font-size: 1rem;
}

.page-header-dynamic .hero-title {
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
    opacity: 0;
}

.page-header-dynamic .section-subtitle {
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
    opacity: 0;
}

/* ==========================================================================
   Blog/Artikel Enhancements
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-card .blog-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-card .blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-card .blog-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover .blog-image-wrapper::after {
    opacity: 1;
}

.blog-category-pill {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: rgba(217, 119, 30, 0.9);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.blog-read-time i {
    font-size: 0.9rem;
    color: var(--primary);
}

.blog-card .blog-content {
    position: relative;
}

.blog-card .blog-content .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more-link {
    gap: 12px;
}

/* ==========================================================================
   Order Steps Indicator
   ========================================================================== */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 25px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.order-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(217, 119, 30, 0.3), transparent);
}

.order-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    position: relative;
    z-index: 1;
}

.order-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.order-step:hover .order-step-number {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.order-step-info {
    display: flex;
    flex-direction: column;
}

.order-step-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.order-step-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.order-step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(217, 119, 30, 0.2));
    flex-shrink: 0;
}

/* Bulk Table Wrapper */
.bulk-table-wrapper {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bulk-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.bulk-table-wrapper table tbody tr {
    transition: background 0.3s ease;
}

.bulk-table-wrapper table tbody tr:hover {
    background: rgba(217, 119, 30, 0.04);
}

/* Pulsing CTA */
.btn-pulse {
    position: relative;
    overflow: visible;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: var(--primary);
    opacity: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Free Shipping Badge */
.free-ship-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
}

.free-ship-badge i {
    font-size: 1.1rem;
}

/* ==========================================================================
   Catalog Enhancements
   ========================================================================== */
.catalog-header-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.catalog-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.catalog-count-badge i {
    font-size: 1rem;
}

.filters-bar-enhanced {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.filters-bar-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.filters-bar-enhanced:focus-within {
    border-color: rgba(217, 119, 30, 0.3);
    box-shadow: 0 4px 20px rgba(217, 119, 30, 0.08);
}

/* ==========================================================================
   New Keyframe Animations
   ========================================================================== */
@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -15px) scale(1.1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Responsive: Dynamic Sections
   ========================================================================== */
/* Modern Mobile-Responsive Table */
.bulk-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.bulk-order-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.bulk-order-table th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.bulk-order-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bulk-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bulk-product-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg-surface-elevated);
}

.bulk-product-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.bulk-stock-status {
    font-size: 0.8rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bulk-price-cell {
    font-weight: 500;
    font-size: 1.05rem;
}

.bulk-qty-cell .bulk-qty-input {
    width: 100px;
    text-align: center;
    margin-bottom: 0;
    padding: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.bulk-subtotal-cell {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.bulk-total-label {
    padding: 24px 20px;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
}

.bulk-total-value {
    padding: 24px 20px;
    text-align: right;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 900px) {
    .order-steps {
        flex-direction: column;
        gap: 8px;
        padding: 20px 15px;
    }

    .order-step-connector {
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, var(--primary), rgba(217, 119, 30, 0.2));
    }

    .order-step {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-header-dynamic {
        padding: clamp(40px, 8vw, 60px) 0 clamp(30px, 5vw, 40px);
    }

    .page-header-dynamic::before,
    .page-header-dynamic::after {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bulk-table-wrapper {
        padding: 15px;
    }

    .catalog-header-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filters-bar-enhanced {
        flex-direction: column;
    }

    /* Stacked Mobile Table for Bulk Order */
    .bulk-order-table thead {
        display: none;
    }

    .bulk-order-table tr {
        display: block;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.02);
    }

    .bulk-order-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: right;
    }

    .bulk-order-table td:last-child {
        border-bottom: none;
    }

    .bulk-order-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        margin-right: 20px;
        text-align: left;
    }

    .bulk-product-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        text-align: right;
    }
    
    .bulk-product-info img {
        width: 80px;
        height: 80px;
        margin-bottom: 5px;
    }
    
    .bulk-stock-status {
        justify-content: flex-end;
    }

    .bulk-total-label,
    .bulk-total-value {
        text-align: center;
        width: 100%;
        display: block;
        padding: 10px 15px;
    }

    .bulk-order-table tfoot tr {
        border: none;
        background: transparent;
    }
    
    .bulk-order-table tfoot td::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header-dynamic .page-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .order-step {
        padding: 6px 10px;
    }

    .order-step-label {
        font-size: 0.82rem;
    }

    .order-step-desc {
        font-size: 0.7rem;
    }

    .blog-category-pill {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ==========================================================================
   Product Detail Page V2
   ========================================================================== */
.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 15px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.4s ease-out forwards;
}

.detail-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.detail-breadcrumb a:hover {
    color: var(--primary);
}

.detail-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.detail-breadcrumb .breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-gallery-container {
    position: relative;
    animation: fadeInUp 0.5s ease-out forwards;
}

.detail-gallery {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.detail-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-gallery:hover img {
    transform: scale(1.05);
}

.detail-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.detail-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(217, 119, 30, 0.1);
    border: 1px solid rgba(217, 119, 30, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.detail-info {
    animation: fadeInUp 0.5s ease-out 0.15s forwards;
    opacity: 0;
}

.detail-info h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.detail-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: #10b981;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Pricing Table */
.pricing-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.pricing-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(217, 119, 30, 0.3), transparent);
}

.pricing-table-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.pricing-table-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.pricing-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-wrapper table thead tr {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table-wrapper table th {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: left;
}

.pricing-table-wrapper table td {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-table-wrapper table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table-wrapper table tbody tr:hover {
    background: rgba(217, 119, 30, 0.04);
}

.pricing-best {
    color: var(--primary);
    font-weight: 700;
}

.pricing-table-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-table-footer i {
    color: #10b981;
}

/* Description */
.detail-description {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e0e0e5;
}

.detail-description ul {
    margin-top: 15px;
    margin-left: 5px;
    list-style: none;
}

.detail-description ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.detail-description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* WA Order Box */
.wa-order-box {
    background: linear-gradient(135deg, rgba(30, 35, 44, 0.8), rgba(15, 17, 21, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.wa-order-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wa-order-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.wa-order-box h3 i {
    color: #25d366;
    font-size: 1.4rem;
}

/* Quantity Controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 48px;
    height: 48px;
    background: var(--bg-surface-elevated);
    color: var(--text-main);
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary);
    color: #fff;
}

.qty-input {
    width: 70px;
    height: 48px;
    text-align: center;
    background: var(--bg-surface);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.accordion-item:hover {
    border-color: rgba(217, 119, 30, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 20px;
}

.accordion-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Detail */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-gallery img {
        padding: 20px;
    }

    .detail-info h1 {
        font-size: 1.5rem;
    }

    .wa-order-box {
        padding: 20px;
    }

    .pricing-table-wrapper table th,
    .pricing-table-wrapper table td {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .qty-btn {
        width: 40px;
        height: 40px;
    }

    .qty-input {
        width: 56px;
        height: 40px;
    }
}