* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    max-width: 1160px;
    margin: 0 auto;
}

.hero .image-container {
    max-width: 1160px;
    width: 100%;
}

.hero .image-container img {
    width: 1160px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.image-container {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    width: 90%;
}

.text-overlay p {
    font-size: clamp(1.5em, 5vw, 3.5em);
    margin: 10px 0;
    display: block;
    font-weight: 500;
}

.text-overlay h1 {
    margin: 15px 0;
    font-size: clamp(2em, 7vw, 4.5em);
    color: #ff1493;
    display: block;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Promo Section */
.promo-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.promo-section img {
    width: 1160px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #ff1493;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 0.95em;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: url('../file/atasan.JPG') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

.social-media {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    color: white;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-media a:hover {
    color: #ff1493;
    transform: scale(1.2);
}

/* Popup Notification */
.popup-notification {
    position: fixed;
    bottom: 30px;
    /* position to left of WhatsApp button (60px wide + 20px margin) */
    right: calc(90px + 0.5cm);
    background: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 220px;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-content i {
    font-size: 1.2em;
    color: #25D366;
}

.popup-notification.show {
    opacity: 1;
    visibility: visible;
}

.popup-content p {
    color: #333;
    font-size: 0.95em;
    margin: 0;
    font-weight: 500;
}

/* Floating WhatsApp Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #20ba5f;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    display: inline-block;
}

/* WhatsApp Menu */
.whatsapp-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    width: 330px;
    height: 413px;
    max-height: 0;
    transition: max-height 0.3s ease;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.whatsapp-menu.active {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.whatsapp-menu-header {
    background: #128c7e;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95em;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 15px 12px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border: none;
    margin: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.whatsapp-option:hover {
    background-color: #20ba5f;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.admin-name {
    font-weight: 600;
    font-size: 1em;
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-section > p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.admin-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.admin-item {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-item:hover {
    background: #20ba5f;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.info-card h3 {
    color: #ff1493;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Closing Section */
.closing-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Best Seller Section */
.best-seller {
    text-align: center;
    padding: 40px 20px;
}

.best-seller h3 {
    font-size: 2em;
    color: #333;
    margin: 0 0 20px;
}

.highlight-pink {
    color: #ff1493;
}

/* Testimoni Section */
.testimoni {
    padding: 40px 20px;
    text-align: center;
}

.testimoni h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #da5890;
}

.testimoni .carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimoni .product-card {
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    padding: 5px;
}

.testimoni .badge {
    display: none;
}

/* Form Section*/
.checkout-section {
    padding: 60px 20px; 
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px; /* Ruang dalam lebih luas */
    border-radius: 20px; /* Sudut lebih membulat modern */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px; /* Diperlebar dari 400px ke 600px */
}

.form-container h3 {
    font-size: 2.2em; /* Judul form lebih besar */
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.input-group {
    margin-bottom: 25px; /* Jarak antar input lebih lebar */
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2em; /* Label lebih mudah dibaca */
    color: #444;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px; /* Area sentuh input lebih besar */
    border: 2px solid #ddd; /* Garis tepi lebih tegas */
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 1.1em; /* Ukuran teks di dalam input lebih besar */
    transition: border-color 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #FF69B4; /* Berubah jadi pink saat diklik */
    outline: none;
}

/* Tombol WA Lebih Besar & Mencolok */
.btn-wa {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 20px; /* Tombol sangat besar dan mudah ditekan */
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.3em; 
    width: 100%;
    transition: transform 0.2s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background-color: #128C7E;
    transform: translateY(-3px); /* Efek melayang saat hover */
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track-wrapper {
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}
.carousel-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
    flex: 0 0 100%;
}
.product-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 15px;
}
.product-card .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 5;
}.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.product-card p {
    margin-top: 10px;
    font-weight: 500;
}
.product-card.empty {
    background: transparent;
    box-shadow: none;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.carousel-btn:hover { background: rgba(0,0,0,0.7); }

.closing-section p {
    font-size: 1.05em;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

/*new arrivals Section */
.arrivals {
    padding: 80px 20px;
    background: url('../file/atasan.JPG') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.arrivals h1 {
    font-size: 4em;
    margin-bottom: 15px;
}

.arrivals h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #da5890;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

/* Visit Us Section */
.visit-us {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.visit-us .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.visit-us img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-us .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
}

.visit-us h1 {
    font-size: clamp(2em, 8vw, 4em);
    margin: 0 0 10px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.visit-us h2 {
    font-size: clamp(1em, 4vw, 2em);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
    }

    body {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        height: auto;
    }

    .text-overlay {
        width: 95%;
    }

    .text-overlay p {
        font-size: clamp(1em, 4vw, 2em);
        margin: 5px 0;
    }

    .text-overlay h1 {
        font-size: clamp(1.5em, 5vw, 2.5em);
        margin: 10px 0;
        letter-spacing: 1px;
    }

    /* Promo Section */
    .promo-section {
        width: 100%!important;
        padding: 10px!important;
    }

    .promo-section img {
        width: 100%!important;
        height: auto!important;
    }

    /* Features */
    .features {
        padding: 40px 15px;
    }

    .features h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9em;
        line-height: 1.4;
    }

    /* Contact */
    .contact {
        padding: 40px 15px;
        height: 200px;
    }

    .contact h2 {
        font-size: 1.6em;
    }

    /* CTA Section */
    .cta-section {
        padding: 30px 15px;
    }

    .cta-section h2 {
        font-size: 1.4em;
        line-height: 1.3;
    }

    .cta-section p {
        font-size: 0.95em;
    }

    /* Info Section */
    .info-section {
        padding: 30px 15px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 1.1em;
    }

    .info-card p {
        font-size: 0.9em;
    }

    /* Closing Section */
    .closing-section {
        padding: 30px 15px;
    }

    .closing-section p {
        font-size: 0.95em;
        line-height: 1.5;
    }

    /* Best Seller */
    .best-seller {
        padding: 30px 15px;
    }

    .best-seller h3 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card p {
        font-size: 0.85em;
    }

    .badge {
        font-size: 0.6em;
        padding: 2px 4px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    /* New Arrivals */
    .arrivals {
        padding: 40px 15px;
        height: 250px;
    }

    .arrivals h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .arrivals h2 {
        font-size: 1.5em;
    }

    /* Testimoni */
    .testimoni {
        padding: 30px 15px;
    }

    .testimoni h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    /* Visit Us */
    .visit-us {
        height: 300px;
    }

    .visit-us h1 {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }

    .visit-us h2 {
        font-size: clamp(0.9em, 3vw, 1.5em);
    }

    /* Map Section */
    .map-section {
        padding: 15px;
    }

    .map-container {
        border-radius: 10px;
    }

    .map-container iframe {
        height: 350px;
    }

    .address-details {
        padding: 10px 0;
    }

    .address-details p {
        font-size: 0.9em;
        line-height: 1.5;
    }

    /* Footer */
    footer {
        padding: 15px 10px;
        font-size: 0.85em;
    }

    .social-media {
        margin-top: 10px;
        gap: 15px;
    }

    .social-media a {
        font-size: 1.3em;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5em;
    }

    .whatsapp-menu {
        width: 280px;
        height: auto;
        max-height: 300px;
        right: 10px;
        bottom: 65px;
    }

    .whatsapp-menu-header {
        font-size: 0.9em;
        padding: 8px;
    }

    .whatsapp-option {
        padding: 10px 8px;
        font-size: 0.9em;
    }

    /* Popup */
    .popup-notification {
        bottom: 25px;
        right: 70px;
        padding: 8px 12px;
        max-width: 180px;
    }

    .popup-content {
        gap: 6px;
    }

    .popup-content i {
        font-size: 1em;
    }

    .popup-content p {
        font-size: 0.85em;
    }

    .admin-list {
        flex-direction: column;
    }

    .admin-item {
        width: 100%;
    }
}

/* Map Section */
.map-section {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    border-radius: 15px;
    overflow: hidden; /* Supaya bucu peta melengkung */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.address-details {
    margin-top: 15px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #555;
}

.address-details a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: bold;
}

.address-details a:hover {
    text-decoration: underline;
}