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

        :root {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --accent-color: #fd79a8;
            --dark-bg: #0a0e27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #b2bec3;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(253, 121, 168, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
            animation: bgRotate 30s linear infinite;
        }

        @keyframes bgRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(10, 14, 39, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
        }

        .logo i {
            margin-right: 10px;
            -webkit-text-fill-color: initial;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-2);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-icons i {
            font-size: 22px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-icons i:hover {
            transform: translateY(-3px);
            color: var(--secondary-color);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-color);
            color: white;
            font-size: 11px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease;
        }

        .hero-content h1 span {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .btn-group {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            outline: none;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            border-color: var(--secondary-color);
            background: rgba(162, 155, 254, 0.1);
            transform: translateY(-5px);
        }

        /* 3D Hero Image */
        .hero-3d {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }

        .product-3d-container {
            position: relative;
            width: 450px;
            height: 450px;
            transform-style: preserve-3d;
            animation: float3d 6s ease-in-out infinite;
        }

        @keyframes float3d {
            0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
            50% { transform: rotateY(15deg) rotateX(-5deg) translateY(-20px); }
        }

        .product-3d {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, rgba(108, 92, 231, 0.3), rgba(253, 121, 168, 0.3));
            border-radius: 30px;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(255, 255, 255, 0.1),
                0 0 100px rgba(108, 92, 231, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 150px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .product-3d::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent 30%);
            animation: shine 4s linear infinite;
        }

        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .float-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(5px);
            animation: floatAround 8s ease-in-out infinite;
        }

        .float-element:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .float-element:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 70%;
            right: -5%;
            animation-delay: 2s;
        }

        .float-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: -10%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes floatAround {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(20px, -30px) scale(1.1); opacity: 1; }
        }

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

        /* Categories Section */
        .categories {
            padding: 80px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 18px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .category-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
            border-color: rgba(108, 92, 231, 0.5);
        }

        .category-card:hover::before {
            opacity: 0.1;
        }

        .category-icon {
            font-size: 60px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .category-card h3 {
            font-size: 24px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .category-card p {
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* Products Section */
        .products {
            padding: 80px 5%;
            position: relative;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            group: true;
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 92, 231, 0.4);
        }

        .product-image {
            height: 280px;
            background: linear-gradient(145deg, rgba(108, 92, 231, 0.2), rgba(253, 121, 168, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }

        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .product-card:hover .product-image::after {
            left: 100%;
        }

        .product-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .badge-new {
            background: var(--gradient-3);
            color: white;
        }

        .badge-sale {
            background: var(--gradient-2);
            color: white;
        }

        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--dark-bg);
        }

        .action-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 25px;
        }

        .product-category {
            color: var(--secondary-color);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .product-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-name {
            color: var(--secondary-color);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .stars {
            color: #ffd700;
        }

        .rating-count {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .current-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-color);
        }

        .original-price {
            font-size: 16px;
            color: var(--text-secondary);
            text-decoration: line-through;
        }

        .view-product-details-btn {
            min-height: 50px;
            padding: 0 18px;
            border: 0;
            border-radius: 999px;
            background: var(--gradient-1);
            color: #fff;
            font: inherit;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            white-space: nowrap;
        }

        .view-product-details-btn:hover,
        .view-product-details-btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(108, 92, 231, 0.45);
            filter: brightness(1.08);
            outline: none;
        }

        body.product-detail-open {
            overflow: hidden;
        }

        .product-detail-overlay {
            position: fixed;
            inset: 0;
            z-index: 2200;
            background: rgba(4, 8, 34, 0.76);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.26s ease;
        }

        .product-detail-overlay.show {
            opacity: 1;
        }

        .product-detail-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            z-index: 2201;
            width: min(620px, calc(100% - 28px));
            max-height: min(86vh, 760px);
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 28px;
            background: linear-gradient(145deg, rgba(35, 42, 88, 0.98), rgba(19, 24, 57, 0.98));
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
            color: var(--text-primary);
            opacity: 0;
            transform: translate(-50%, -46%) scale(0.96);
            transition: opacity 0.26s ease, transform 0.26s ease;
            outline: none;
        }

        .product-detail-modal.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .product-detail-header {
            position: relative;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 64px 22px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.18), rgba(232, 67, 147, 0.14));
        }

        .product-detail-brand-icon {
            width: 62px;
            height: 62px;
            flex: 0 0 62px;
            display: grid;
            place-items: center;
            border-radius: 20px;
            background: var(--gradient-1);
            color: #fff;
            font-size: 30px;
            box-shadow: 0 12px 30px rgba(108, 92, 231, 0.34);
        }

        .product-detail-heading {
            min-width: 0;
        }

        .product-detail-category {
            display: block;
            margin-bottom: 4px;
            color: var(--secondary-color);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .product-detail-heading h2 {
            margin: 0;
            font-size: clamp(22px, 5vw, 30px);
            line-height: 1.2;
        }

        .product-detail-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .product-detail-close:hover,
        .product-detail-close:focus-visible {
            background: rgba(255, 255, 255, 0.16);
            transform: rotate(90deg);
            outline: none;
        }

        .product-detail-body {
            padding: 24px;
        }

        .product-detail-status-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .product-detail-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }

        .product-detail-status-example {
            color: #bdf4ff;
            background: rgba(0, 210, 255, 0.14);
            border: 1px solid rgba(0, 210, 255, 0.24);
        }

        .product-detail-status-ready {
            color: #aef7cf;
            background: rgba(46, 213, 115, 0.14);
            border: 1px solid rgba(46, 213, 115, 0.24);
        }

        .product-detail-long-description {
            margin: 0 0 22px;
        }

        .product-detail-long-description h3 {
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 0 0 10px;
            font-size: 17px;
        }

        .product-detail-long-description h3 i {
            color: var(--secondary-color);
        }

        .product-detail-long-description p {
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .product-detail-info-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 22px;
        }

        .product-detail-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.045);
        }

        .product-detail-info-item > i {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: rgba(108, 92, 231, 0.2);
            color: var(--secondary-color);
        }

        .product-detail-info-item span,
        .product-detail-info-item strong {
            display: block;
        }

        .product-detail-info-item span {
            margin-bottom: 3px;
            color: var(--text-secondary);
            font-size: 12px;
        }

        .product-detail-info-item strong {
            font-size: 14px;
            line-height: 1.35;
        }

        .product-detail-note {
            padding: 18px;
            margin-bottom: 22px;
            border: 1px solid rgba(162, 155, 254, 0.2);
            border-radius: 18px;
            background: rgba(108, 92, 231, 0.09);
        }

        .product-detail-note h3 {
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 0 0 8px;
            font-size: 17px;
        }

        .product-detail-note h3 i {
            color: var(--secondary-color);
        }

        .product-detail-note p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        .product-detail-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .product-detail-price-label,
        .product-detail-unit {
            display: block;
            color: var(--text-secondary);
            font-size: 12px;
        }

        .product-detail-price {
            display: block;
            margin: 2px 0;
            color: var(--accent-color);
            font-size: 28px;
            line-height: 1.2;
        }

        .product-detail-done-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 20px;
            border: 0;
            text-decoration: none;
            border-radius: 999px;
            background: var(--gradient-1);
            color: #fff;
            font: inherit;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .product-detail-done-btn:hover,
        .product-detail-done-btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4);
            outline: none;
        }

        @media (max-width: 520px) {
            .product-footer {
                gap: 12px;
            }

            .view-product-details-btn {
                min-height: 46px;
                padding: 0 14px;
                font-size: 13px;
            }

            .product-detail-modal {
                width: calc(100% - 20px);
                max-height: 88vh;
                border-radius: 22px;
            }

            .product-detail-header {
                gap: 12px;
                padding: 20px 56px 18px 18px;
            }

            .product-detail-brand-icon {
                width: 52px;
                height: 52px;
                flex-basis: 52px;
                border-radius: 16px;
                font-size: 25px;
            }

            .product-detail-body {
                padding: 18px;
            }

            .product-detail-info-grid {
                grid-template-columns: 1fr;
            }

            .product-detail-price-row {
                align-items: flex-end;
            }

            .product-detail-price {
                font-size: 24px;
            }

            .product-detail-done-btn {
                min-height: 44px;
                padding: 0 16px;
            }
        }

        /* Features Section */
        .features {
            padding: 80px 5%;
            background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.05), transparent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            text-align: center;
            padding: 40px 25px;
            border-radius: 20px;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature-item:hover {
            transform: translateY(-10px);
            border-color: rgba(108, 92, 231, 0.3);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            transition: transform 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .feature-item h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .feature-item p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        /* Newsletter */
        .newsletter {
            padding: 100px 5%;
            text-align: center;
            position: relative;
        }

        .newsletter-box {
            max-width: 700px;
            margin: 0 auto;
            padding: 60px 40px;
            background: var(--card-bg);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .newsletter-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(108, 92, 231, 0.1), transparent, rgba(253, 121, 168, 0.1), transparent);
            animation: newsletterRotate 10s linear infinite;
        }

        @keyframes newsletterRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .newsletter p {
            color: var(--text-secondary);
            margin-bottom: 30px;
            font-size: 17px;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--primary-color);
            background: rgba(108, 92, 231, 0.1);
        }

        .newsletter-input::placeholder {
            color: var(--text-secondary);
        }

        /* Footer */
        footer {
            padding: 60px 5% 30px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-2);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            background: rgba(15, 20, 45, 0.98);
            backdrop-filter: blur(20px);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .cart-header {
            padding: 25px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            font-size: 24px;
        }

        .close-cart {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-cart:hover {
            background: var(--accent-color);
            transform: rotate(90deg);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px 30px;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-secondary);
        }

        .cart-empty i {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .cart-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            animation: slideIn 0.3s ease;
        }

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

        .cart-item-image {
            width: 90px;
            height: 90px;
            border-radius: 15px;
            background: linear-gradient(145deg, rgba(108, 92, 231, 0.2), rgba(253, 121, 168, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
        }

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

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: var(--accent-color);
            font-weight: 600;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }

        .qty-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            background: var(--primary-color);
        }

        .remove-item {
            color: var(--accent-color);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .remove-item:hover {
            transform: scale(1.2);
        }

        .cart-item-process {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 38px;
            margin-top: 12px;
            padding: 8px 18px;
            border: 1px solid rgba(162, 155, 254, 0.38);
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.22), rgba(162, 155, 254, 0.12));
            color: #a29bfe;
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
        }

        .cart-item-process i {
            font-size: 15px;
            animation: cartProcessSpin 1.2s linear infinite;
        }

        @keyframes cartProcessSpin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 140px;
            }

            .hero-content {
                max-width: 100%;
            }

            .btn-group {
                justify-content: center;
            }

            .hero-3d {
                margin-top: 50px;
            }

            .product-3d-container {
                width: 350px;
                height: 350px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 38px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .categories-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 30px;
            }

            .product-3d-container {
                width: 280px;
                height: 280px;
            }

            .categories-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: white;
            padding: 18px 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0, 184, 148, 0.4);
            transform: translateX(150%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 3000;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* Interactive navigation utilities */
        .nav-icons i[role="button"]:focus-visible,
        .mobile-menu-btn:focus-visible,
        .close-utility:focus-visible,
        .utility-panel button:focus-visible {
            outline: 3px solid rgba(162, 155, 254, 0.85);
            outline-offset: 3px;
        }

        .utility-panel input:focus-visible {
            outline: none;
        }

        .utility-overlay {
            position: fixed;
            inset: 0;
            z-index: 2090;
            background: rgba(0, 0, 0, 0.72);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

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

        .utility-panel {
            position: fixed;
            top: 50%;
            left: 50%;
            z-index: 2100;
            width: min(520px, calc(100% - 32px));
            max-height: min(680px, calc(100vh - 48px));
            overflow: auto;
            background: rgba(15, 20, 45, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(24px);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, -46%) scale(0.96);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        }

        .utility-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .utility-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 22px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .utility-panel-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
        }

        .close-utility {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            border: 0;
            border-radius: 50%;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .close-utility:hover {
            transform: rotate(90deg);
            background: rgba(253, 121, 168, 0.25);
        }

        .utility-panel-body {
            padding: 24px;
        }

        .utility-label,
        .account-form label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
        }

        .search-input-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06);
        }

        .search-input-wrap:focus-within {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.12);
        }

        .search-input-wrap input,
        .account-form input {
            width: 100%;
            border: 0;
            color: white;
            background: transparent;
            font: inherit;
        }

        .search-input-wrap input {
            min-width: 0;
            padding: 14px 0;
            outline: 0;
        }

        .search-input-wrap input::placeholder,
        .account-form input::placeholder {
            color: rgba(178, 190, 195, 0.72);
        }

        .search-results {
            display: grid;
            gap: 10px;
            margin-top: 18px;
        }

        .search-result-item {
            width: 100%;
            padding: 15px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            color: white;
            background: rgba(255, 255, 255, 0.05);
            text-align: left;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .search-result-item:hover {
            transform: translateY(-2px);
            border-color: rgba(162, 155, 254, 0.65);
            background: rgba(108, 92, 231, 0.14);
        }

        .search-result-item strong,
        .search-result-item span {
            display: block;
        }

        .search-result-item span {
            margin-top: 4px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .utility-empty {
            padding: 28px 18px;
            color: var(--text-secondary);
            text-align: center;
        }

        .utility-empty i {
            margin-bottom: 10px;
            font-size: 30px;
            color: var(--secondary-color);
        }

        .utility-description {
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .account-form {
            display: grid;
        }

        .account-form input {
            margin-bottom: 16px;
            padding: 13px 14px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            outline: 0;
        }

        .account-form input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.12);
        }

        .utility-primary-btn,
        .utility-secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 46px;
            padding: 12px 18px;
            border: 0;
            border-radius: 12px;
            color: white;
            font: inherit;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .utility-primary-btn {
            background: var(--gradient-1);
        }

        .utility-secondary-btn {
            background: rgba(253, 121, 168, 0.18);
            border: 1px solid rgba(253, 121, 168, 0.35);
        }

        .utility-primary-btn:hover,
        .utility-secondary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .account-profile {
            text-align: center;
        }

        .account-avatar {
            display: grid;
            place-items: center;
            width: 82px;
            height: 82px;
            margin: 0 auto 14px;
            border-radius: 50%;
            background: var(--gradient-1);
            font-size: 34px;
            box-shadow: 0 14px 34px rgba(108, 92, 231, 0.3);
        }

        .account-profile h4 {
            font-size: 22px;
        }

        .account-profile p {
            margin: 4px 0 20px;
            color: var(--text-secondary);
            overflow-wrap: anywhere;
        }

        @media (max-width: 768px) {
            .nav-links.active {
                position: absolute;
                top: 100%;
                left: 4%;
                right: 4%;
                display: flex;
                flex-direction: column;
                gap: 4px;
                padding: 14px;
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 16px;
                background: rgba(15, 20, 45, 0.98);
                box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(20px);
            }

            .nav-links.active li,
            .nav-links.active a {
                width: 100%;
            }

            .nav-links.active a {
                display: block;
                padding: 11px 12px;
                border-radius: 10px;
            }

            .nav-links.active a:hover {
                background: rgba(108, 92, 231, 0.14);
            }

            .utility-panel {
                top: 88px;
                left: 12px;
                right: 12px;
                width: auto;
                max-height: calc(100vh - 104px);
                max-height: calc(100dvh - 104px);
                border-radius: 20px;
                transform: translateY(-12px) scale(0.98);
            }

            .utility-panel.active {
                transform: translateY(0) scale(1);
            }

            .search-input-wrap {
                width: 100%;
                box-sizing: border-box;
            }

            .utility-panel-header,
            .utility-panel-body {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .nav-icons {
                gap: 14px;
            }

            .nav-icons i {
                font-size: 20px;
            }

            .utility-panel-header h3 {
                font-size: 19px;
            }
        }

        /* Multi-page layout */
        .logo {
            text-decoration: none;
            white-space: nowrap;
        }

        .nav-item-icon {
            display: inline-block;
            width: 24px;
            margin-right: 10px;
            text-align: center;
        }

        .nav-links a.active {
            color: var(--secondary-color);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .hero-store-logo {
            position: relative;
            z-index: 1;
            max-width: 88%;
            max-height: 88%;
            object-fit: contain;
            filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
        }

        .page-main {
            min-height: calc(100vh - 90px);
            padding: 130px 5% 80px;
        }

        .page-banner {
            width: min(900px, 100%);
            margin: 0 auto 48px;
            text-align: center;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 18px;
            padding: 9px 16px;
            border: 1px solid rgba(162, 155, 254, 0.32);
            border-radius: 999px;
            color: var(--secondary-color);
            background: rgba(108, 92, 231, 0.12);
            font-size: 14px;
            font-weight: 600;
        }

        .page-banner h1 {
            margin-bottom: 18px;
            font-size: clamp(36px, 6vw, 62px);
            line-height: 1.15;
        }

        .page-banner h1 span {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-banner p {
            max-width: 760px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: 17px;
        }

        .page-section {
            width: min(1180px, 100%);
            margin: 0 auto;
        }

        .product-page-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .digital-product-card,
        .info-card,
        .contact-form-card,
        .testimonial-empty,
        .policy-card,
        .page-note {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(16px);
        }

        .digital-product-card {
            min-height: 285px;
            padding: 28px;
            border-radius: 22px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .digital-product-card h2,
        .info-card h2,
        .info-card h3,
        .contact-form-card h2,
        .testimonial-empty h2 {
            margin-bottom: 10px;
        }

        .digital-product-card p,
        .info-card p,
        .contact-form-card > p,
        .testimonial-empty p,
        .policy-card p,
        .page-note p {
            color: var(--text-secondary);
        }

        .digital-product-card p {
            flex: 1;
        }

        .page-card-icon,
        .empty-state-icon {
            display: grid;
            place-items: center;
            width: 58px;
            height: 58px;
            margin-bottom: 20px;
            border-radius: 17px;
            background: var(--gradient-1);
            font-size: 24px;
            box-shadow: 0 12px 28px rgba(108, 92, 231, 0.28);
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-top: 22px;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
        }

        .card-link i {
            transition: transform 0.2s ease;
        }

        .card-link:hover i {
            transform: translateX(4px);
        }

        .page-note {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-top: 28px;
            padding: 20px 22px;
            border-radius: 17px;
        }

        .page-note > i {
            margin-top: 4px;
            color: var(--secondary-color);
            font-size: 20px;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 28px;
            align-items: start;
        }

        .contact-info-stack {
            display: grid;
            gap: 18px;
        }

        .contact-layout-single {
            grid-template-columns: minmax(0, 1fr);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-card {
            display: flex;
            gap: 18px;
            padding: 24px;
            border-radius: 20px;
        }

        .info-card .page-card-icon {
            flex: 0 0 52px;
            width: 52px;
            height: 52px;
            margin: 0;
            border-radius: 15px;
            font-size: 21px;
        }

        .contact-form-card {
            padding: 30px;
            border-radius: 24px;
        }

        .contact-form-card > p {
            margin-bottom: 22px;
        }

        .page-form {
            display: grid;
            gap: 10px;
        }

        .page-form label {
            margin-top: 6px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
        }

        .page-form input,
        .page-form textarea {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 13px;
            color: white;
            background: rgba(255, 255, 255, 0.06);
            font: inherit;
            outline: none;
            resize: vertical;
        }

        .page-form input:focus,
        .page-form textarea:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.12);
        }

        .page-form input::placeholder,
        .page-form textarea::placeholder {
            color: rgba(178, 190, 195, 0.72);
        }

        .page-form-submit {
            width: 100%;
            margin-top: 12px;
        }

        .testimonial-empty {
            padding: 56px 28px;
            border-radius: 26px;
            text-align: center;
        }

        .testimonial-empty .empty-state-icon {
            width: 74px;
            height: 74px;
            margin: 0 auto 20px;
            border-radius: 22px;
            font-size: 30px;
        }

        .testimonial-empty p {
            max-width: 680px;
            margin: 0 auto 26px;
        }

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

        .trust-grid .info-card {
            display: block;
        }

        .trust-grid .page-card-icon {
            margin-bottom: 16px;
        }

        .policy-card {
            padding: 34px;
            border-radius: 26px;
        }

        .policy-card article + article {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .policy-card h2 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .policy-card h2 i {
            color: var(--secondary-color);
        }

        .privacy-content {
            margin-top: 18px;
        }

        .privacy-content p {
            margin: 0 0 18px;
            line-height: 1.8;
        }

        .privacy-content h3 {
            margin: 30px 0 12px;
            color: var(--text-primary);
            font-size: 20px;
            line-height: 1.45;
        }

        .privacy-check-list,
        .privacy-bullet-list,
        .privacy-number-list {
            margin: 0 0 22px;
            padding-left: 24px;
            color: var(--text-secondary);
        }

        .privacy-check-list {
            padding-left: 0;
            list-style: none;
        }

        .privacy-check-list li,
        .privacy-bullet-list li,
        .privacy-number-list li {
            margin-bottom: 12px;
            line-height: 1.75;
        }

        .privacy-bullet-list {
            list-style: disc;
        }

        .privacy-number-list {
            list-style: decimal;
        }

        .policy-extra-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
            color: var(--secondary-color);
            font-weight: 600;
        }

        .policy-extra-label i {
            color: var(--secondary-color);
        }

        @media (max-width: 1180px) and (min-width: 769px) {
            nav {
                padding-left: 3%;
                padding-right: 3%;
            }

            .logo {
                font-size: 22px;
            }

            .nav-links {
                gap: 12px;
            }

            .nav-links a {
                font-size: 13px;
            }

            .nav-item-icon {
                width: 18px;
                margin-right: 5px;
            }

            .nav-icons {
                gap: 13px;
            }
        }

        @media (max-width: 900px) {
            .product-page-grid,
            .trust-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contact-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-main {
                padding: 118px 4% 60px;
            }

            .page-banner {
                margin-bottom: 34px;
            }

            .page-banner p {
                font-size: 15px;
            }

            .nav-links.active a {
                display: flex;
                align-items: center;
            }

            .nav-links.active a.active {
                background: rgba(108, 92, 231, 0.18);
            }
        }

        @media (max-width: 600px) {
            .product-page-grid,
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .digital-product-card,
            .contact-form-card,
            .policy-card {
                padding: 24px;
            }

            .info-card {
                padding: 20px;
            }

            .policy-card h2 {
                align-items: flex-start;
                font-size: 19px;
            }
        }


        /* Login and registration system */
        .auth-panel {
            width: min(560px, calc(100% - 32px));
        }

        .auth-tabs {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            padding: 6px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.045);
        }

        .auth-tab {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 10px 14px;
            border: 0;
            border-radius: 10px;
            color: var(--text-secondary);
            background: transparent;
            font: inherit;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .auth-tab.active {
            color: white;
            background: var(--gradient-1);
            box-shadow: 0 8px 22px rgba(108, 92, 231, 0.28);
        }

        .auth-form[hidden],
        #authGuestView[hidden],
        #accountProfileView[hidden] {
            display: none !important;
        }

        .auth-message {
            margin-bottom: 16px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 118, 117, 0.38);
            border-radius: 12px;
            color: #ffd6d5;
            background: rgba(214, 48, 49, 0.16);
            font-size: 14px;
            line-height: 1.5;
        }

        .auth-message.success {
            border-color: rgba(85, 239, 196, 0.4);
            color: #c8fff0;
            background: rgba(0, 184, 148, 0.15);
        }

        .password-field {
            position: relative;
            margin-bottom: 16px;
        }

        .account-form .password-field input {
            margin-bottom: 0;
            padding-right: 52px;
        }

        .toggle-password {
            position: absolute;
            top: 50%;
            right: 6px;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 10px;
            color: var(--text-secondary);
            background: transparent;
            cursor: pointer;
            transform: translateY(-50%);
            transition: color 0.2s ease, background 0.2s ease;
        }

        .toggle-password:hover {
            color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        .auth-submit-btn {
            width: 100%;
            margin-top: 4px;
        }

        .auth-submit-btn:disabled {
            cursor: wait;
            opacity: 0.65;
            transform: none;
        }

        .auth-consent {
            display: flex !important;
            align-items: flex-start;
            gap: 10px;
            margin: 2px 0 18px;
            color: var(--text-secondary);
            line-height: 1.5;
            cursor: pointer;
        }

        .auth-consent input {
            width: 17px;
            height: 17px;
            flex: 0 0 17px;
            margin: 2px 0 0;
            accent-color: var(--primary-color);
        }

        .auth-consent a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .auth-consent a:hover {
            text-decoration: underline;
        }

        .auth-local-note {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 18px;
            color: rgba(178, 190, 195, 0.82);
            font-size: 12px;
            line-height: 1.5;
        }

        .auth-local-note i {
            margin-top: 2px;
            color: var(--secondary-color);
        }

        .account-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 10px;
            padding: 7px 11px;
            border: 1px solid rgba(85, 239, 196, 0.28);
            border-radius: 999px;
            color: #bfffea;
            background: rgba(0, 184, 148, 0.12);
            font-size: 12px;
            font-weight: 600;
        }

        .account-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0 auto 22px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        #userIcon.authenticated {
            color: #55efc4;
            text-shadow: 0 0 18px rgba(85, 239, 196, 0.42);
        }

        #userIcon.authenticated::after {
            content: '';
            position: absolute;
            top: -3px;
            right: -5px;
            width: 8px;
            height: 8px;
            border: 2px solid rgba(10, 14, 39, 0.95);
            border-radius: 50%;
            background: #55efc4;
        }

        @media (max-width: 600px) {
            .auth-panel {
                width: calc(100% - 24px);
                max-height: calc(100vh - 24px);
                border-radius: 20px;
            }

            .auth-panel .utility-panel-header {
                padding: 18px;
            }

            .auth-panel .utility-panel-body {
                padding: 18px;
            }

            .auth-tabs {
                margin-bottom: 16px;
            }
        }

/* ===== Gerbang interaksi untuk mengaktifkan sound ===== */
body.welcome-audio-gate-open {
    overflow: hidden;
}

.welcome-audio-gate {
    position: fixed;
    inset: 0;
    z-index: 6500;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 8, 30, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.welcome-audio-gate.show {
    opacity: 1;
    visibility: visible;
}

.welcome-audio-gate.hide {
    opacity: 0;
    visibility: hidden;
}

.welcome-audio-card {
    width: min(420px, 100%);
    padding: 30px 26px;
    border: 1px solid rgba(162, 155, 254, 0.36);
    border-radius: 26px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(24, 34, 82, 0.98), rgba(42, 29, 83, 0.97));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 36px rgba(108, 92, 231, 0.18);
    transform: translateY(18px) scale(0.96);
    transition: transform 0.3s ease;
}

.welcome-audio-gate.show .welcome-audio-card {
    transform: translateY(0) scale(1);
}

.welcome-audio-logo {
    width: 86px;
    height: 86px;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.42), rgba(253, 121, 168, 0.24));
}

.welcome-audio-eyebrow {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.welcome-audio-card h2 {
    margin: 0 0 12px;
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.2;
}

.welcome-audio-description {
    margin: 0 auto 22px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.welcome-audio-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 13px 20px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: var(--gradient-1);
    box-shadow: 0 14px 30px rgba(108, 92, 231, 0.32);
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-audio-enter:hover,
.welcome-audio-enter:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(108, 92, 231, 0.42);
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .welcome-audio-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .welcome-audio-logo {
        width: 76px;
        height: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-audio-gate,
    .welcome-audio-card,
    .welcome-audio-enter {
        transition: none;
    }
}

/* ===== Notifikasi sambutan real-time ===== */
.welcome-greeting {
    position: fixed;
    top: 108px;
    right: 24px;
    z-index: 5000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    align-items: center;
    gap: 16px;
    width: min(360px, calc(100vw - 32px));
    padding: 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(56, 215, 255, 0.72);
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(10, 19, 49, 0.96), rgba(34, 30, 75, 0.94));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 24px rgba(56, 215, 255, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(24px, -18px, 0) scale(0.96);
    transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1), transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.48s ease;
}

.welcome-greeting.show {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
}

.welcome-greeting.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(24px, -12px, 0) scale(0.97);
}

.welcome-greeting-copy {
    min-width: 0;
}

.welcome-greeting-title {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.welcome-greeting-message {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.welcome-greeting-time {
    display: block;
    margin-top: 5px;
    color: rgba(204, 214, 255, 0.76);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.welcome-greeting-logo {
    width: 58px;
    height: 58px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.38), rgba(253, 121, 168, 0.22));
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.welcome-greeting-close {
    position: absolute;
    top: 5px;
    right: 6px;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.welcome-greeting-close:hover,
.welcome-greeting-close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.welcome-greeting-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #38d7ff, #8f7cff, #fd79a8);
    transform-origin: left center;
    animation: welcomeGreetingProgress 5s linear forwards;
}

@keyframes welcomeGreetingProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@media (max-width: 768px) {
    .welcome-greeting {
        top: 92px;
        right: 16px;
        grid-template-columns: minmax(0, 1fr) 50px;
        width: min(330px, calc(100vw - 32px));
        padding: 14px 15px;
        border-radius: 14px;
    }

    .welcome-greeting-logo {
        width: 50px;
        height: 50px;
        border-radius: 11px;
    }

    .welcome-greeting-message {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-greeting,
    .welcome-greeting-progress {
        animation: none;
        transition: none;
    }
}


        /* Product review system */
        .product-review-section {
            margin-bottom: 22px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.035);
        }

        .product-review-heading {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .product-review-heading h3 {
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 0 0 6px;
            font-size: 18px;
        }

        .product-review-heading h3 i {
            color: #ffd700;
        }

        .product-review-heading p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.55;
        }

        .product-review-summary {
            min-width: 88px;
            padding: 10px 12px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 14px;
            background: rgba(255, 215, 0, 0.08);
            text-align: center;
        }

        .product-review-summary strong,
        .product-review-summary span {
            display: block;
        }

        .product-review-summary strong {
            color: #ffd700;
            font-size: 20px;
            line-height: 1.1;
        }

        .product-review-summary span {
            margin-top: 4px;
            color: var(--text-secondary);
            font-size: 10px;
            white-space: nowrap;
        }

        .review-auth-gate {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            padding: 16px;
            border: 1px solid rgba(162, 155, 254, 0.22);
            border-radius: 17px;
            background: rgba(108, 92, 231, 0.09);
        }

        .review-auth-gate[hidden],
        .product-review-form[hidden],
        .product-review-empty[hidden] {
            display: none !important;
        }

        .review-auth-icon {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background: rgba(108, 92, 231, 0.22);
            color: var(--secondary-color);
        }

        .review-auth-gate h4 {
            margin: 0 0 4px;
            font-size: 15px;
        }

        .review-auth-gate p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 12px;
            line-height: 1.55;
        }

        .review-login-btn,
        .review-submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 43px;
            border: 0;
            border-radius: 999px;
            background: var(--gradient-1);
            color: #fff;
            font: inherit;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .review-login-btn {
            grid-column: 1 / -1;
            width: 100%;
            margin-top: 2px;
        }

        .review-login-btn:hover,
        .review-login-btn:focus-visible,
        .review-submit-btn:hover,
        .review-submit-btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(108, 92, 231, 0.35);
            outline: none;
        }

        .product-review-form {
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.04);
        }

        .review-form-account {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .review-account-avatar {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            flex: 0 0 38px;
            border-radius: 50%;
            background: var(--gradient-1);
            color: #fff;
        }

        .review-form-account span,
        .review-form-account strong {
            display: block;
        }

        .review-form-account div > span {
            color: var(--text-secondary);
            font-size: 11px;
        }

        .review-form-account strong {
            margin-top: 2px;
            font-size: 14px;
        }

        .review-rating-fieldset {
            min-width: 0;
            padding: 0;
            margin: 0 0 14px;
            border: 0;
        }

        .review-rating-fieldset legend,
        .product-review-form > label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
        }

        .review-rating-fieldset legend span,
        .product-review-form > label span {
            color: var(--accent-color);
        }

        .review-star-picker {
            display: inline-flex;
            gap: 5px;
        }

        .review-star-picker button {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.045);
            color: #ffd700;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
        }

        .review-star-picker button.selected,
        .review-star-picker button.preview,
        .review-star-picker button:hover,
        .review-star-picker button:focus-visible {
            border-color: rgba(255, 215, 0, 0.34);
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
            outline: none;
        }

        .product-review-form textarea {
            width: 100%;
            min-height: 105px;
            resize: vertical;
            padding: 13px 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.055);
            color: #fff;
            font: inherit;
            font-size: 13px;
            line-height: 1.6;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .product-review-form textarea::placeholder {
            color: rgba(223, 230, 233, 0.55);
        }

        .product-review-form textarea:focus {
            border-color: rgba(162, 155, 254, 0.55);
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
        }

        .review-form-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 12px;
        }

        .review-form-footer > span {
            color: var(--text-secondary);
            font-size: 11px;
        }

        .review-submit-btn {
            min-width: 135px;
            padding: 0 16px;
        }

        .product-review-list-wrap {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.09);
        }

        .product-review-list-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .product-review-list-heading h4 {
            margin: 0;
            font-size: 15px;
        }

        .product-review-list-heading span {
            color: var(--text-secondary);
            font-size: 11px;
        }

        .product-review-empty {
            padding: 18px;
            border: 1px dashed rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            color: var(--text-secondary);
            text-align: center;
        }

        .product-review-empty i {
            margin-bottom: 7px;
            color: var(--secondary-color);
            font-size: 22px;
        }

        .product-review-empty p {
            margin: 0;
            font-size: 12px;
        }

        .product-review-list {
            display: grid;
            gap: 11px;
        }

        .product-review-item {
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.035);
        }

        .review-item-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-item-identity {
            display: flex;
            align-items: center;
            gap: 9px;
            min-width: 0;
        }

        .review-item-avatar {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            flex: 0 0 34px;
            border-radius: 50%;
            background: var(--gradient-1);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .review-item-identity strong,
        .review-item-identity span {
            display: block;
        }

        .review-item-identity strong {
            overflow: hidden;
            font-size: 13px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .review-item-identity div > span {
            margin-top: 2px;
            color: var(--text-secondary);
            font-size: 10px;
        }

        .review-item-stars {
            flex: 0 0 auto;
            color: #ffd700;
            font-size: 11px;
            white-space: nowrap;
        }

        .product-review-item > p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 12px;
            line-height: 1.65;
            white-space: pre-wrap;
            overflow-wrap: anywhere;
        }

        @media (max-width: 520px) {
            .product-review-section {
                padding: 16px;
            }

            .product-review-heading {
                align-items: stretch;
                flex-direction: column;
            }

            .product-review-summary {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                text-align: left;
            }

            .product-review-summary span {
                margin-top: 0;
            }

            .review-form-footer {
                align-items: stretch;
                flex-direction: column;
            }

            .review-submit-btn {
                width: 100%;
            }

            .review-item-top {
                align-items: stretch;
                flex-direction: column;
            }
        }

/* Website testimonials loaded from Cloudflare D1 */
.website-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.website-testimonial-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.website-testimonial-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(10, 15, 44, 0.65);
}

.website-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.website-testimonial-content {
    padding: 26px;
}

.website-testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.website-testimonial-product {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.website-testimonial-top h2 {
    margin: 0;
    font-size: 21px;
}

.website-testimonial-stars {
    flex: 0 0 auto;
    color: #ffd166;
    white-space: nowrap;
}

.website-testimonial-message {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-line;
}

.website-testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.website-testimonial-meta i {
    color: #2ed573;
}

.website-testimonial-meta time {
    margin-left: auto;
}

.testimonial-api-status {
    grid-column: 1 / -1;
    padding: 44px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
}

.testimonial-api-status i {
    display: block;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-size: 38px;
}

@media (max-width: 600px) {
    .website-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .website-testimonial-top {
        display: block;
    }

    .website-testimonial-stars {
        margin-top: 10px;
    }

    .website-testimonial-meta time {
        width: 100%;
        margin-left: 0;
    }
}
