
        /* ===== CSS Variables ===== */
        :root {
            --vs-primary: #8224e3;
            --vs-primary-dark: #5a1a9e;
            --vs-primary-light: #9e4df0;
            --vs-accent: #81d742;
            --vs-accent-light: #a8e060;
            --vs-bg-dark: #0a0a0a;
            --vs-bg-section: #111827;
            --vs-bg-card: #1e293b;
            --vs-footer-bg: #0f172a;
            --vs-text-light: #f1f5f9;
            --vs-text-muted: #94a3b8;
            --vs-border-subtle: rgba(130, 36, 227, 0.2);
            --vs-radius: 12px;
            --vs-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --vs-transition: 0.3s ease;
        }

        /* ===== Reset & Base ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--vs-bg-dark);
            color: var(--vs-text-light);
            line-height: 1.6;
            min-height: 100vh;
        }

        a {
            color: var(--vs-primary-light);
            text-decoration: none;
            transition: var(--vs-transition);
        }

        a:hover {
            color: var(--vs-accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ===== Container ===== */
        .vs-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .vs-section-alt {
            background-color: var(--vs-bg-section);
            border-radius: var(--vs-radius);
            margin: 20px auto;
            padding: 40px 20px;
        }

        .vs-section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: var(--vs-text-light);
        }

        .vs-section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--vs-primary), var(--vs-accent));
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* ===== Header ===== */
        .vs-header {
            background: var(--vs-bg-dark);
            border-bottom: 1px solid var(--vs-border-subtle);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .vs-header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .vs-logo a {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--vs-text-light);
            letter-spacing: -0.5px;
        }

        .vs-logo a:hover {
            color: var(--vs-primary-light);
        }

        .vs-nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .vs-nav ul li a {
            color: var(--vs-text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: var(--vs-transition);
        }

        .vs-nav ul li a:hover {
            color: var(--vs-text-light);
            border-bottom-color: var(--vs-primary);
        }

        .vs-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--vs-text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }

        .vs-header-search {
            flex: 1;
            max-width: 300px;
        }

        .vs-search-form {
            display: flex;
            background: var(--vs-bg-card);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid var(--vs-border-subtle);
        }

        .vs-search-field {
            flex: 1;
            padding: 8px 16px;
            background: transparent;
            border: none;
            color: var(--vs-text-light);
            font-size: 0.9rem;
            outline: none;
        }

        .vs-search-field::placeholder {
            color: var(--vs-text-muted);
        }

        .vs-search-submit {
            background: var(--vs-primary);
            border: none;
            color: white;
            padding: 8px 16px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: var(--vs-transition);
        }

        .vs-search-submit:hover {
            background: var(--vs-primary-dark);
        }

        .vs-cta-header {
            background: var(--vs-primary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--vs-transition);
        }

        .vs-cta-header:hover {
            background: var(--vs-primary-dark);
            color: white;
            transform: scale(1.05);
        }

        /* ===== Hero ===== */
        .vs-hero {
            position: relative;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
        }

        .vs-hero-has-bg {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .vs-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 0;
        }

        .vs-hero-inner {
            position: relative;
            z-index: 1;
            padding: 40px 20px;
            max-width: 800px;
        }

        .vs-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--vs-primary-light), var(--vs-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vs-hero-subtitle {
            font-size: 1.3rem;
            color: var(--vs-text-muted);
            margin-bottom: 25px;
        }

        .vs-hero-cta {
            display: inline-block;
            background: var(--vs-primary);
            color: white;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--vs-transition);
        }

        .vs-hero-cta:hover {
            background: var(--vs-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(130, 36, 227, 0.4);
            color: white;
        }

        /* ===== Hero CTAs ===== */
        .vs-hero-ctas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .vs-hero-cta-block {
            background: var(--vs-bg-card);
            padding: 30px;
            border-radius: var(--vs-radius);
            border: 1px solid var(--vs-border-subtle);
            text-align: center;
            transition: var(--vs-transition);
        }

        .vs-hero-cta-block:hover {
            transform: translateY(-5px);
            border-color: var(--vs-primary);
            box-shadow: var(--vs-shadow);
        }

        .vs-hero-cta-block h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--vs-text-light);
        }

        .vs-hero-cta-block p {
            color: var(--vs-text-muted);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .vs-cta-btn {
            display: inline-block;
            background: var(--vs-primary);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--vs-transition);
        }

        .vs-cta-btn:hover {
            background: var(--vs-primary-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* ===== Products Grid ===== */
        .vs-product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .vs-product-card {
            background: var(--vs-bg-card);
            border-radius: var(--vs-radius);
            overflow: hidden;
            transition: var(--vs-transition);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .vs-product-card:hover {
            border-color: var(--vs-primary);
            transform: translateY(-5px);
            box-shadow: var(--vs-shadow);
        }

        .vs-product-img-wrap {
            position: relative;
            padding-top: 100%;
            background: var(--vs-bg-dark);
            overflow: hidden;
        }

        .vs-product-img-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .vs-product-card:hover .vs-product-img-wrap img {
            transform: scale(1.05);
        }

        .vs-product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--vs-primary);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 1;
        }

        .vs-product-soldout {
            background: #ef4444;
        }

        .vs-product-body {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .vs-product-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.3;
            color: var(--vs-text-light);
        }

        .vs-product-title a {
            color: inherit;
        }

        .vs-product-title a:hover {
            color: var(--vs-primary-light);
        }

        .vs-product-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--vs-accent);
            margin-bottom: 8px;
        }

        .vs-product-desc {
            color: var(--vs-text-muted);
            font-size: 0.85rem;
            flex: 1;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .vs-product-btns {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .vs-product-view {
            flex: 1;
            background: var(--vs-bg-dark);
            color: var(--vs-text-light);
            padding: 8px 12px;
            border-radius: 6px;
            text-align: center;
            font-size: 0.85rem;
            border: 1px solid var(--vs-border-subtle);
            transition: var(--vs-transition);
        }

        .vs-product-view:hover {
            background: var(--vs-primary);
            color: white;
            border-color: var(--vs-primary);
        }

        .vs-product-wa {
            flex: 1;
            background: #25D366;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            text-align: center;
            font-size: 0.85rem;
            transition: var(--vs-transition);
        }

        .vs-product-wa:hover {
            background: #1da851;
            color: white;
        }

        /* ===== Categories ===== */
        .vs-category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }

        .vs-category-card {
            background: var(--vs-bg-card);
            padding: 30px 20px;
            border-radius: var(--vs-radius);
            text-align: center;
            border: 1px solid var(--vs-border-subtle);
            transition: var(--vs-transition);
            display: block;
        }

        .vs-category-card:hover {
            border-color: var(--vs-primary);
            transform: translateY(-3px);
            box-shadow: var(--vs-shadow);
        }

        .vs-category-card h3 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--vs-text-light);
        }

        .vs-category-card span {
            color: var(--vs-text-muted);
            font-size: 0.85rem;
        }

        /* ===== About Content ===== */
        .vs-about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .vs-about-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .vs-about-content p {
            color: var(--vs-text-muted);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .vs-btn-primary {
            display: inline-block;
            background: var(--vs-primary);
            color: white;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 10px;
            transition: var(--vs-transition);
        }

        .vs-btn-primary:hover {
            background: var(--vs-primary-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* ===== Tags Strip ===== */
        .vs-tags-strip-wrap {
            width: 100%;
        }

        .vs-tags-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 10px 0;
        }

        .vs-tags-strip span {
            background: var(--vs-bg-card);
            color: var(--vs-text-muted);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            border: 1px solid var(--vs-border-subtle);
            transition: var(--vs-transition);
        }

        .vs-tags-strip span:hover {
            border-color: var(--vs-primary);
            color: var(--vs-text-light);
        }

        /* ===== Footer ===== */
        .vs-footer {
            background: var(--vs-footer-bg);
            border-top: 1px solid var(--vs-border-subtle);
            margin-top: 40px;
        }

        .vs-footer-newsletter {
            background: var(--vs-bg-card);
            padding: 40px 20px;
            text-align: center;
        }

        .vs-footer-newsletter-inner {
            max-width: 600px;
            margin: 0 auto;
        }

        .vs-footer-newsletter h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .vs-footer-newsletter p {
            color: var(--vs-text-muted);
            margin-bottom: 20px;
        }

        .vs-footer-newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 450px;
            margin: 0 auto;
        }

        .vs-footer-newsletter-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 50px;
            border: 1px solid var(--vs-border-subtle);
            background: var(--vs-bg-dark);
            color: var(--vs-text-light);
            outline: none;
        }

        .vs-footer-newsletter-form input:focus {
            border-color: var(--vs-primary);
        }

        .vs-footer-newsletter-form button {
            background: var(--vs-primary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--vs-transition);
        }

        .vs-footer-newsletter-form button:hover {
            background: var(--vs-primary-dark);
        }

        .vs-footer-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .vs-footer-widget h4 {
            color: var(--vs-text-light);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .vs-footer-widget p,
        .vs-footer-widget ul li {
            color: var(--vs-text-muted);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .vs-footer-widget ul {
            list-style: none;
        }

        .vs-footer-widget ul li a {
            color: var(--vs-text-muted);
            transition: var(--vs-transition);
        }

        .vs-footer-widget ul li a:hover {
            color: var(--vs-text-light);
        }

        .vs-footer-social {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .vs-footer-social a {
            background: var(--vs-bg-dark);
            color: var(--vs-text-muted);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            border: 1px solid var(--vs-border-subtle);
            transition: var(--vs-transition);
        }

        .vs-footer-social a:hover {
            border-color: var(--vs-primary);
            color: var(--vs-text-light);
        }

        .vs-footer-bottom {
            border-top: 1px solid var(--vs-border-subtle);
            padding: 15px 20px;
            text-align: center;
        }

        .vs-footer-bottom-inner {
            max-width: 1200px;
            margin: 0 auto;
            color: var(--vs-text-muted);
            font-size: 0.85rem;
        }

        /* ===== WhatsApp Floating Button ===== */
        .wcfb-floating-buttons {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
        }

        .wcfb-button-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .wcfb-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: var(--vs-transition);
        }

        .wcfb-button:hover {
            transform: scale(1.1);
        }

        .wcfb-whatsapp {
            background: #25D366;
        }

        .wcfb-whatsapp:hover {
            background: #1da851;
        }

        .wcfb-call {
            background: #4CAF50;
        }

        .wcfb-call:hover {
            background: #388E3C;
        }

        .wcfb-button svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .vs-mobile-toggle {
                display: block;
            }

            .vs-nav {
                display: none;
                width: 100%;
                background: var(--vs-bg-dark);
                border-radius: var(--vs-radius);
                padding: 15px;
                margin-top: 10px;
            }

            .vs-nav.active {
                display: block;
            }

            .vs-nav ul {
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }

            .vs-nav ul li a {
                display: block;
                padding: 8px 12px;
                border-radius: 6px;
                text-align: center;
            }

            .vs-nav ul li a:hover {
                background: var(--vs-bg-card);
            }

            .vs-header-search {
                max-width: 100%;
                order: 3;
                flex: 0 0 100%;
                margin-top: 10px;
            }

            .vs-hero-title {
                font-size: 2.2rem;
            }

            .vs-hero-subtitle {
                font-size: 1rem;
            }

            .vs-hero {
                min-height: 350px;
            }

            .vs-product-detail {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .vs-product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }

            .vs-footer-main {
                grid-template-columns: 1fr;
            }

            .vs-footer-newsletter-form {
                flex-direction: column;
            }

            .vs-category-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }

            .vs-section-title {
                font-size: 1.5rem;
            }

            .vs-hero-ctas {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .vs-product-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 15px;
            }

            .vs-hero-title {
                font-size: 1.8rem;
            }

            .vs-hero {
                min-height: 300px;
            }

            .vs-section {
                padding: 25px 15px;
            }

            .vs-hero-cta {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .vs-tags-strip span {
                font-size: 0.75rem;
                padding: 4px 12px;
            }
        }
