:root {
    --primary: #8A2BE2;
    --primary-dark: #6A0DAD;
    --primary-light: #9B4DE3;
    --dark: #0f0f0f;
    --darker: #080808;
    --light: #F5F5F5;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --accent: #ff44cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: rgba(8, 8, 8, 0.95);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo h2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: linear-gradient(145deg, var(--gray), var(--darker));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.visual-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.visual-text {
    color: #aaa;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.categories {
    padding: 100px 0;
    background-color: var(--darker);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
    border-color: var(--primary);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.category-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-link:hover {
    color: var(--accent);
    gap: 10px;
}

.why-us {
    padding: 100px 0;
    background-color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-card p {
    color: #ccc;
}

.products-header {
    padding: 150px 0 50px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-container {
    flex: 1;
    min-width: 300px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 50px;
    border: 1px solid var(--gray-light);
    background-color: var(--darker);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.filter-container {
    display: flex;
    gap: 15px;
}

.filter-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    background-color: var(--darker);
    color: var(--light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.products-page {
    padding: 50px 0 100px;
    background-color: var(--dark);
}

.products-stats {
    margin-bottom: 20px;
    color: #ccc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
    border-color: var(--primary);
}

.product-image {
    height: 180px;
    background-color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--gray-light);
}

.product-icon {
    font-size: 3.5rem;
    color: var(--primary);
}

.product-content {
    padding: 25px;
}

.product-category {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light);
}

.product-description {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.product-button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.buy-button {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    margin-right: 10px;
}

.buy-button:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.detail-button {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--gray-light);
}

.detail-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.request {
    padding: 100px 0;
    background-color: var(--darker);
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--gray), var(--darker));
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    background-color: var(--darker);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
}

.contact {
    padding: 100px 0;
    background-color: var(--dark);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.contact-item p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.footer {
    background-color: var(--darker);
    padding: 70px 0 20px;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    color: #888;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ccc;
}

.close-modal:hover {
    color: var(--light);
}

.modal-icon {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.modal p {
    color: #ccc;
    margin-bottom: 2rem;
}

.modal-button {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
}

.product-modal {
    display: block;
}

.product-modal-image {
    text-align: center;
    margin-bottom: 2rem;
}

.product-icon.large {
    font-size: 4rem;
    color: var(--primary);
}

.product-modal-details {
    text-align: left;
}

.product-price.large {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.product-description-full h3,
.product-features h3,
.payment-methods h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-description-full p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--darker);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    color: #ccc;
}

.buy-now-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@media screen and (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .products-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--darker);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2rem 0;
        border-top: 1px solid var(--primary);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .request-form {
        padding: 30px 20px;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
    }

    .buy-button {
        margin-right: 0;
    }

    .filter-container {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .payment-options {
        justify-content: center;
    }
}

/* Modal Responsive */
.modal-content {
    background: linear-gradient(145deg, var(--gray), var(--darker));
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-image {
    text-align: center;
    flex-shrink: 0;
}

.product-icon.large {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-modal-details {
    text-align: left;
}

.product-price.large {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--primary);
    font-weight: 700;
}

.product-description-full h3,
.product-features h3,
.payment-methods h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.product-description-full p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.product-features li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--darker);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.buy-now-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.buy-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design untuk Modal */
@media screen and (min-width: 768px) {
    .modal-content {
        max-width: 600px;
        padding: 40px;
    }
    
    .product-modal {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    
    .product-modal-image {
        flex: 0 0 150px;
    }
    
    .product-modal-details {
        flex: 1;
    }
    
    .product-icon.large {
        font-size: 5rem;
    }
}

@media screen and (min-width: 1024px) {
    .modal-content {
        max-width: 700px;
    }
    
    .product-modal-image {
        flex: 0 0 200px;
    }
    
    .product-icon.large {
        font-size: 6rem;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .product-modal {
        gap: 15px;
    }
    
    .product-icon.large {
        font-size: 3rem;
    }
    
    .product-price.large {
        font-size: 1.5rem;
    }
    
    .payment-options {
        justify-content: center;
    }
    
    .payment-method {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--darker);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Thumbnail Styles */
.product-image {
    height: 200px;
    background-color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-thumbnail:hover {
    transform: scale(1.05);
}

.product-icon {
    font-size: 3.5rem;
    color: var(--primary);
    position: absolute;
    z-index: 2;
}

.product-image.has-thumbnail .product-icon {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Modal Thumbnail Styles */
.product-modal-image {
    text-align: center;
    flex-shrink: 0;
    position: relative;
}

.modal-thumbnail {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.product-modal-image .product-icon.large {
    position: static;
    margin-bottom: 1rem;
}

/* Fallback untuk thumbnail yang gagal load */
.thumbnail-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Loading state untuk thumbnail */
.thumbnail-loading {
    width: 100%;
    height: 100%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Thumbnail */
@media screen and (max-width: 768px) {
    .product-image {
        height: 180px;
    }
    
    .modal-thumbnail {
        max-width: 250px;
        height: 160px;
    }
}

@media screen and (max-width: 480px) {
    .product-image {
        height: 150px;
    }
    
    .modal-thumbnail {
        max-width: 200px;
        height: 130px;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
}

/* Top Banner Styles */
.top-banner {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.banner-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-gif[src=""] + .banner-fallback,
.banner-gif:not([src]) + .banner-fallback {
    opacity: 1;
}

/* Hero Media Styles */
.hero-visual {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.media-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--gray), var(--darker));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-media[src=""] + .media-fallback,
.hero-media:not([src]) + .media-fallback {
    opacity: 1;
}


@media screen and (max-width: 768px) {
    .top-banner {
        height: 60px;
    }
    
    .banner-fallback {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .top-banner {
        height: 50px;
    }
    
    .banner-fallback {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        height: 200px;
    }
}

.hero {
    padding: 50px 0 100px;
}

.form-group small {
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

input[type="tel"] {
    font-family: monospace;
}