/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: #1a1a2e;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ========== NAVBAR ========== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5a3b7, #e88ca5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-tagline {
    font-size: 0.9rem;
    color: #999;
    display: block;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    gap: 5px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 40px;
}

.lang-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-btn.active {
    background: #e88ca5;
    color: white;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e88ca5;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* Update navbar agar tombol bahasa di kanan */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Menu links di tengah */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0 auto;
}

/* Responsive: HP tetap pakai hamburger */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .lang-switch {
        order: 1;
    }
    
    .menu-toggle {
        order: 2;
    }
}

/* ========== SLIDER ========== */
.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

.slide-badge {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.slide-btn {
    display: inline-block;
    background: white;
    color: #333;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.slide-btn:hover {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: 0.3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev { left: 20px; }
.next { right: 20px; }

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 10px;
}

/* ========== HERO ========== */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-highlight {
    color: #e88ca5;
}

.hero-sub {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #f5a3b7, #e88ca5);
    color: white;
    box-shadow: 0 4px 12px rgba(232,140,165,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #e88ca5;
    color: #e88ca5;
}

.btn-secondary:hover {
    background: #e88ca5;
    color: white;
}

.hero-variant {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.variant-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.variant-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.hero-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.hero-img-placeholder {
    background: linear-gradient(145deg, #fce4ec, #f8d0da);
    border-radius: 40px;
    padding: 50px 30px;
}

.hero-img-placeholder i {
    font-size: 6rem;
    color: #e88ca5;
}

/* ========== PRODUK ========== */
.products, .bundling, .testimonials, .social-proof, .contact {
    padding: 70px 0;
}

.product-tools {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    background: white;
    padding: 15px 20px;
    border-radius: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-box {
    flex: 2;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 50px;
    padding: 0 15px;
    gap: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    outline: none;
}

.filter-box select {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(232,140,165,0.15);
}

.product-img {
    font-size: 3rem;
    color: #e88ca5;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.product-variant select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    margin: 10px 0;
    background: white;
    cursor: pointer;
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e88ca5;
    margin: 12px 0;
}

.product-wa, .bundling-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.product-wa:hover, .bundling-wa:hover {
    background: #128C7E;
}

.no-products {
    text-align: center;
    padding: 50px;
    color: #999;
}

/* ========== BUNDLING ========== */
.bundling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bundling-card {
    background: linear-gradient(145deg, #fff, #fff9fa);
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    border: 1px solid #f5e0e6;
    position: relative;
}

.bundling-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #e88ca5;
    color: white;
    padding: 5px 15px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bundling-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e88ca5;
}

/* ========== TESTIMONI ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fef8f9;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
}

.testimonial-card .fa-star {
    color: #ffc107;
}

/* ========== SOCIAL PROOF RAPI ========== */
.social-section {
    margin-bottom: 35px;
}

.social-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #e88ca5;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: 0.2s;
    background: #f5f5f5;
    color: #333;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-card.shopee { background: #ee4d2d; color: white; }
.social-card.tokped { background: #42b549; color: white; }
.social-card.lazada { background: #0f1461; color: white; }
.social-card.blibli { background: #3b75c4; color: white; }
.social-card.tiktok { background: #010101; color: white; }
.social-card.ig { background: radial-gradient(circle at 30% 110%, #ffdb8c, #f06543, #c92b8c); color: white; }
.social-card.yt { background: #ff0000; color: white; }
.social-card.x { background: #000; color: white; }
.social-card.threads { background: #000; color: white; }
.social-card.fb { background: #1877f2; color: white; }
.social-card.pinterest { background: #bd081c; color: white; }
.social-card.wa { background: #25D366; color: white; }

/* ========== KONTAK ========== */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fef8f9;
    border-radius: 32px;
    padding: 40px;
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    font-family: inherit;
}

.contact-info {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 25px;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========== FOOTER ========== */
footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 8px 0;
}

.footer-col a:hover {
    color: #e88ca5;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

.wa-float:hover {
    transform: scale(1.05);
    background: #128C7E;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        background: white;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .slider {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .social-card {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .contact-wrapper {
        padding: 25px;
    }
}