/* Import Font dari Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color 0.3s;
}

body.light-mode {
    color: #333;
    background-color: #f5f5f5;
}

/* Background Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    transition: background 0.3s;
}

body.light-mode .overlay {
    background: rgba(255, 255, 255, 0.9);
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-left {
    display: flex;
    gap: 20px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00a8ff;
}

body.light-mode nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode nav a {
    color: #333;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5em;
    color: white;
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: #00a8ff;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ========== CART MODAL ========== */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cart-header h3 {
    color: #00a8ff;
    font-size: 1.5em;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #ff4757;
}

.cart-items {
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

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

.cart-item-title {
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #00a8ff;
    font-size: 0.9em;
}

.remove-item {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid #ff4757;
    color: #ff4757;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.remove-item:hover {
    background: #ff4757;
    color: white;
}

.cart-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.cart-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.checkout-btn {
    background: #00a8ff;
    color: white;
}

.checkout-btn:hover {
    background: #0097e6;
    transform: translateY(-2px);
}

.clear-cart-btn {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid #ff4757;
}

.clear-cart-btn:hover {
    background: #ff4757;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}

.empty-cart i {
    font-size: 3em;
    margin-bottom: 15px;
    color: #555;
}

body.light-mode .cart-modal {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
}

body.light-mode .cart-item {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

/* ========== HEADER ========== */
header {
    text-align: center;
    padding: 140px 20px 40px;
    animation: fadeIn 1.5s ease-in-out;
}

header h1 {
    margin-top: 20px;
    font-size: 3em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #00a8ff, #9c88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== SECTIONS ========== */
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin: 40px 0 20px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Payment Section */
.payment-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #00a8ff;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    flex: 1;
}

.payment-item i {
    font-size: 2em;
    margin-bottom: 10px;
}

.payment-item.dana i { 
    color: #00a8ff; 
}

.payment-item.gopay i { 
    color: #00b894; 
}

.payment-number {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
}

.qr-container {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.qr-container img {
    max-width: 200px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.warning {
    color: #ff9f43;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.1em;
}

.proof-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.proof-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
}

.proof-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.proof-btn.whatsapp {
    background: #25D366;
    color: white;
}

.proof-btn.telegram {
    background: #0088cc;
    color: white;
}

/* Products Section */
.products-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.8em;
    color: #00a8ff;
    margin-bottom: 10px;
}

.product-description {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 140px;
}

.product-btn.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid #25D366;
}

.product-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.product-btn.telegram {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
    border: 1px solid #0088cc;
}

.product-btn.telegram:hover {
    background: #0088cc;
    color: white;
}

.add-to-cart-btn {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #ffc107;
    color: black;
}

body.light-mode .product-card {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .product-description {
    color: #666;
}

/* ========== PRODUCT ZOOM ========== */
.product-image-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-image {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image.zoomed {
    cursor: zoom-out;
    transform: scale(2);
}

.zoom-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image-container:hover .zoom-indicator {
    opacity: 1;
}

.zoom-lens {
    position: absolute;
    border: 2px solid rgba(0, 168, 255, 0.5);
    background: rgba(0, 168, 255, 0.1);
    pointer-events: none;
    display: none;
    z-index: 5;
}

/* Zoom Modal untuk Mobile */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: zoomFadeIn 0.3s ease;
}

.zoom-modal.active {
    display: flex;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform-origin: center center;
    animation: zoomIn 0.3s ease;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
}

.close-zoom:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

body.light-mode .zoom-indicator {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

body.light-mode .zoom-modal {
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .close-zoom {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* ========== ANIMATED ADD TO CART ========== */
.cart-animation {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation: flyToCart 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.cart-animation img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #00a8ff;
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.cart-burst {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
}

.cart-pulse {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    animation: cartPulse 0.5s ease-out;
    transform: scale(0);
}

.cart-counter-pop {
    animation: counterPop 0.3s ease-out;
}

/* ========== NOTIFICATION TOAST ========== */
.notification-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #00a8ff;
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 1200;
    max-width: 350px;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.notification-toast.show {
    display: flex;
}

.toast-icon {
    font-size: 1.5em;
    color: #00a8ff;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.toast-message {
    color: #ccc;
    font-size: 0.9em;
}

.close-toast {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1.2em;
    transition: color 0.3s;
}

.close-toast:hover {
    color: white;
}

/* ========== POPUP PROMO ========== */
.promo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #00a8ff;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

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

.promo-header {
    text-align: center;
    margin-bottom: 20px;
}

.promo-header h3 {
    color: #00a8ff;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.promo-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.timer-box {
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid #00a8ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-width: 70px;
}

.timer-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #00a8ff;
}

.timer-label {
    font-size: 0.8em;
    color: #aaa;
    margin-top: 5px;
}

.promo-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.promo-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.claim-promo {
    background: #00a8ff;
    color: white;
}

.claim-promo:hover {
    background: #0097e6;
}

.close-popup {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.light-mode .promo-popup {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
}

/* ========== NEWSLETTER ========== */
.newsletter-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 20px;
    z-index: 1200;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.newsletter-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.newsletter-header h4 {
    color: #00a8ff;
}

.close-newsletter {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1.2em;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.subscribe-btn {
    background: #00a8ff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: #0097e6;
}

body.light-mode .newsletter-popup {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
}

/* ========== FAQ ========== */
#faq {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #00a8ff;
}

.faq-question h4 {
    font-size: 1.1em;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    color: #00a8ff;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    color: #ccc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

body.light-mode .faq-container {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-answer {
    color: #666;
}

/* ========== TESTIMONIALS ========== */
#testimonials {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    padding: 20px;
    text-align: center;
}

.testimonial-title {
    color: #00a8ff;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-caption {
    color: #ddd;
    font-size: 0.95em;
    line-height: 1.5;
}

body.light-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .testimonial-caption {
    color: #666;
}

/* ========== SOCIAL SHARING ========== */
.social-sharing {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-whatsapp {
    background: #25D366;
}

.share-telegram {
    background: #0088cc;
}

.share-facebook {
    background: #1877F2;
}

.share-twitter {
    background: #1DA1F2;
}

/* ========== INVOICE SECTION ========== */
.invoice-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.invoice-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #00a8ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
}

.invoice-btn:hover {
    background: #0097e6;
    transform: translateY(-2px);
}

body.light-mode .invoice-section {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

/* ========== THANKS SECTION ========== */
.thanks-section {
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.7);
}

.thanks-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(to right, #00a8ff, #9c88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.developer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dev-link {
    color: #00a8ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.dev-link:hover {
    background: rgba(0, 168, 255, 0.2);
    transform: translateY(-2px);
}

.github-info {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.github-link {
    color: #f8f9fa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.github-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #00a8ff;
}

.github-link i {
    font-size: 1.3em;
}

/* ========== LIVE CHAT ========== */
.live-chat-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.live-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* ========== MUSIC CONTROL ========== */
.music-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.music-btn {
    background: rgba(0, 168, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.music-btn:hover {
    background: rgba(0, 168, 255, 1);
    transform: scale(1.1);
}

.volume-slider-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.music-control:hover .volume-slider-container {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00a8ff;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00a8ff;
    cursor: pointer;
    border: none;
}

.music-toast {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #00a8ff;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.music-toast.show {
    display: flex;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 0.8em;
}

/* ========== LOADING ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #00a8ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes zoomFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flyToCart {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(1.2) translate(0, -20px);
        opacity: 1;
    }
    50% {
        transform: scale(0.8) translate(var(--translate-x), var(--translate-y));
        opacity: 0.8;
    }
    80% {
        transform: scale(0.5) translate(var(--target-x), var(--target-y));
        opacity: 0.5;
    }
    100% {
        transform: scale(0.3) translate(var(--target-x), var(--target-y));
        opacity: 0;
    }
}

@keyframes cartPulse {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes counterPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes burst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-left {
        gap: 10px;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 0 15px;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-item {
        width: 100%;
        max-width: 300px;
    }
    
    .proof-buttons, .product-buttons {
        flex-direction: column;
    }
    
    nav a {
        font-size: 0.9em;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .music-control {
        bottom: 15px;
        left: 15px;
    }
    
    .music-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }
    
    .volume-slider-container {
        padding: 6px 10px;
    }
    
    .volume-slider {
        width: 80px;
    }
    
    .github-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    
    .cart-modal {
        width: 100%;
        right: -100%;
    }
    
    .promo-popup {
        width: 95%;
        padding: 20px;
    }
    
    .newsletter-popup {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }
    
    .live-chat-btn {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .social-sharing {
        flex-wrap: wrap;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .testimonial-image {
        height: 200px;
    }
    
    .music-toast {
        bottom: 70px;
        left: 15px;
        max-width: 250px;
    }

    /* Responsive untuk zoom */
    .product-image.zoomed {
        transform: scale(1.5);
    }
    
    .zoom-indicator {
        display: none;
    }
}

@media (max-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .products-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
