/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ================= DESKTOP ================= */
.navbar-desktop {
    max-width: 1200px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 25px;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    font-weight: 700;
    color: #222;
}

.nav-logo img {
    height: 60px;
}

/* ================= MOBILE BAR ================= */
.navbar-mobile {
    display: none;
    height: 60px;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
}

.hamburger {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-logo img {
    height: 36px;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.mobile-menu a {
    padding: 14px 20px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu.open {
    display: flex;
}

/* ================= BANNER ================= */
.banner-top {
    margin-top: 96px;
}

.banner-top img {
    width: 100%;
    display: block;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        display: flex;
    }

    .banner-top {
        margin-top: 60px;
    }
}

/* ====================================================================== */
/* FOOTER */
/* ====================================================================== */
.footer {
    background: #5c6a75;
    color: #f2f2f2;
    padding: 70px 20px 25px;
    margin-top: 60px;
    font-size: 18px; 
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
}

/* Footer section */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.footer-title {
    font-size: 22px;  
    font-weight: bold;
    margin-bottom: 12px;
}

/* LOGO BESAR */
.footer-logo img {
    width: 200px;   
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* SOCIAL MEDIA WRAPPER */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px; 
    margin-top: 10px;
}

/* SOCIAL MEDIA LINKS */
.social-links a {
    color: #f2f2f2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    text-decoration: none;
    transition: 0.2s;
}

/* ICON SIZE */
.social-links a i {
    font-size: 22px;
}

.social-links a:hover {
    opacity: 0.7;
}

/* PRODUCT LIST LINKS */
.footer-product-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-product-link:hover {
    text-decoration: underline;
    color: #a8e6a2;
}

/* CONTACT */
.footer-section a {
    color: #f2f2f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px; 
    line-height: 1.5;
}

.footer-section a i {
    font-size: 22px; 
}

.footer-section a:hover {
    opacity: 0.7;
}

/* PRODUCT LIST */
.footer-section p {
    margin: 5px 0;
    text-transform: capitalize;
    font-size: 18px; 
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 16px;
    opacity: 0.9;
}

/* ====================================================================== */
/* RESPONSIVE */
/* ====================================================================== */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .social-links a,
    .footer-section a {
        justify-content: center;
    }
}

/* ====================================================================== */
/* HALAMAN HOME */
/* ====================================================================== */
/* ================================
   GLOBAL
==================================*/
.home-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: Arial, sans-serif;
}

/* ================================
   JUDUL UTAMA
==================================*/
.home-title {
    text-align: center;
    margin-top: 40px;
}

.home-title h2 {
    font-size: 26px;
    font-weight: bold;
}

.home-title p {
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ================================
   SLIDER PRODUK - (3 item)
==================================*/
.produk-slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.produk-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.slide-item {
    min-width: 33.33%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center; 
}

.slide-item img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 6px;
    transition: 0.3s;
}

.slide-item img:hover {
    transform: scale(1.05);
}

/* Nama produk di slider (REVISI) */
.slide-item p,
.card-produk p {
    margin-top: 8px;
    font-weight: bold;        
    font-size: 16px;          
    text-align: center;      
    color: #222;              
}

/* Tombol slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

/* ================================
   BANNER 2 KOLOM
==================================*/
.banner-2kolom {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.banner-2kolom img {
    width: 100%;
    border-radius: 8px;
}

.banner-2kolom h4 {
    font-size: 22px;
    font-weight: bold;
}

.banner-2kolom p {
    margin-top: 10px;
    color: #555;
}

.banner-btn {
    display: block;
    width: fit-content;
    margin: 15px auto 0;
    background: #6ECF77;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.banner-btn:hover {
    background: #5ABB63;
}

/* ================================
   PRODUK PER KATEGORI
==================================*/
.kategori-section {
    margin-top: 20px;
}

.kategori-section h4 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* container */
.kategori-slider-container {
    position: relative;
    overflow: hidden;
}

/* track */
.kategori-slider {
    display: flex;
    transition: transform 0.4s ease;
}

/* item */
.kategori-item {
    min-width: 33.33%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.kategori-item img {
    width: 90%;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
}

/* Nama produk kategori (REVISI) */
.kategori-item a {
    text-decoration: none;
}

/* Nama produk – bold tapi clean */
.kategori-item p {
    margin-top: 10px;
    font-weight: 600;  
    font-size: 15px;
    color: #3f3f3f;         
    letter-spacing: 0.4px;
    line-height: 1.4;
}

.kategori-item:hover p {
    color: #6bbf7a;   /* hijau soft */
    transition: 0.3s ease;
}

/* Tombol navigasi */
.kat-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 5;
}

.kat-btn.prev-kat { left: 5px; }
.kat-btn.next-kat { right: 5px; }

/* ================================
   BUTTON LIHAT SEMUA PRODUK
==================================*/
.lihat-semua {
    text-align: center;
    margin-top: 20px;
}

.lihat-semua a {
    background: #6ECF77;
    padding: 12px 28px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.lihat-semua a:hover {
    background: #5ABB63;
}

/* ================================
   RESPONSIVE
==================================*/
@media (max-width: 992px) {
    .banner-2kolom {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .slide-item,
    .kategori-item {
        min-width: 50%;
    }
}

@media (max-width: 500px) {
    .slide-item,
    .kategori-item {
        min-width: 100%;
    }
}

/* ====================================================================== */
/* HALAMAN ABOUT US */
/* ====================================================================== */

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-title {
    text-align: center;
    margin-bottom: 30px;
}

.about-title h2 {
    font-size: 28px;
    font-weight: bold;
}

.about-desc, 
.komitmen-desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    text-align: justify;
    margin-top: 10px;
}

/* KOMITMEN */
.komitmen-section {
    margin-top: 40px;
}

.komitmen-section h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.komitmen-list {
    margin-top: 10px;
    padding-left: 20px;
}

.komitmen-list li {
    margin-bottom: 8px;
}

/* GARIS PEMBATAS */
.garis {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: #ccc;
}

.card-produk img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 6px;
}

/* ====================================================================== */
/* HALAMAN PRODUK */
/* ====================================================================== */
.product-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.product-title {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: bold;
    color: #333;
}

/* GRID DESKTOP */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.product-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

/* IMAGE BOX */
.product-image-box {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

/* IMAGE */
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

/* NAMA PRODUK */
.product-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 12px;
}

/* LINK */
.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-card {
    transform: scale(1.03);
}

/* ====================================================================== */
/* MOBILE MODE */
/* ====================================================================== */
@media (max-width: 768px) {

    .product-page {
        padding: 20px 12px;
    }

    .product-title {
        font-size: 22px;
        text-align: center;
    }

    /* 🔥 2 KOLOM */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card {
        padding: 10px;
        border-radius: 10px;
    }

    .product-name {
        font-size: 14px;
        margin-top: 8px;
    }
}

/* =====================================================
   HALAMAN PRODUK DETAIL
===================================================== */

.detail-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    flex: 1;
}

/* ================= BAGIAN ATAS ================= */

.detail-top {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.detail-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================= INFO PRODUK ================= */

.detail-info {
    flex: 1;
    min-width: 280px;
}

.detail-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===============================
   UKURAN TAMPIL KE SAMPING
================================ */
.ukuran-list {
     display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 12px;
    max-width: 100%;
}

.ukuran-item {
    background: #f4f6f8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ukuran-item i {
    color: #2c7bff;
}

/* ===============================
     AROMA TAMPIL KE SAMPING
================================ */
.aroma-list {
     display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 12px;
    max-width: 100%;
}

.aroma-item-text {
    background: #f8f8f8;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aroma-item-text i {
    color: #666;
}

.cara-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 700;
}

.cara-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.cara-item i {
    margin-top: 4px;
    color: #28a745;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    margin: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICON WARNA UKURAN & AROMA */
.info-block h4 i {
    color: #2c7bff;
}

.info-block p i {
    color: #666;
}

/* ================= BUTTON ================= */

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    padding: 12px 24px;
    background: #2c7bff;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f1f1f1;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-back:hover {
    background: #e0e0e0;
}

/* ================= SECTION BAWAH ================= */

/* GRID LAYOUT */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.detail-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* CARA PENGGUNAAN */
.detail-section {
    margin-top: 50px;
}

.detail-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1c40f;
}

.cara-container i,
.cara-title i,
.detail-section:first-of-type h3 i {
    color: #f1c40f;
    text-shadow: 0 0 3px rgba(241, 196, 15, 0.3);
}

/* TIPS SECTION */
.tips-section h3,
.tips-section h3 i,
.tips-section .detail-item i {
    color: #2ecc71; 
    text-shadow: 0 0 4px rgba(46, 204, 113, 0.35);
}

.tips-section .detail-item span {
    color: #333;
}

/* LARANGAN SECTION */
.larangan-section h3,
.larangan-section h3 i,
.larangan-section .detail-item i,
.larangan-section .detail-item span {
    color: #e74c3c; 
    text-shadow: 0 0 4px rgba(231, 76, 60, 0.35);
}

.larangan-section .detail-item span {
    color: #444;
}

.detail-item.warning {
    border-left: 4px solid #e74c3c;
    background: #fff5f5;
}

/* GALERI AROMA SECTION */
.galeri-section h3,
.galeri-section h3 i,
.galeri-section .aroma-name {
    color: #2c7bff; 
    text-shadow: 0 0 4px rgba(44, 123, 255, 0.35);
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 6px currentColor; }
    50% { text-shadow: 0 0 14px currentColor; }
    100% { text-shadow: 0 0 6px currentColor; }
}

/* GRID (jika < 3 gambar) */
.aroma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: auto;
}

.aroma-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: zoom-in;
}

.aroma-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.aroma-item:hover img {
    transform: scale(1.05);
}

.aroma-name {
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* SLIDER (jika ≥ 3 gambar) */
.aroma-slider {
    position: relative;
    overflow: hidden;
    max-width: 720px;
    margin: auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-item {
    flex: 0 0 200px;
    padding: 10px;
    text-align: center;
}

.slide-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: zoom-in;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-btn i {
    font-size: 14px;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 576px) {
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* LIGHTBOX */
.aroma-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.aroma-lightbox.active {
    display: flex;
}

.aroma-lightbox img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* ====================================================================== */
/* HALAMAN KONTAK PAGE                                                    */
/* ====================================================================== */

.contact-page {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 25px;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-header h2 {
    font-size: 42px;
    font-weight: 800;
}
.contact-header h2 span {
    color: #2b67ff;
}
.contact-header p {
    font-size: 17px;
    opacity: .75;
}

/* MAIN AREA */
.contact-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT SIDE CONTENT */
.contact-info {
    flex: 1;
    min-width: 350px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.6;
}

/* MARKETPLACE AREA */
.marketplace-box {
    text-align: center;
    margin: 40px 0;
}

.marketplace-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.marketplace-box img {
    width: 180px;
    margin-top: 8px;
    transition: 0.2s;
}
.marketplace-box img:hover {
    transform: scale(1.05);
}

/* HEAD OFFICE NEW STYLE */
.office-card {
    margin-top: 30px;
    padding: 28px;
    border-radius: 18px;
    background: #f8f9fb;
    border: 1px solid #cfd7e3;
}

.office-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.office-address {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

/* OFFICE BUTTONS */
.office-btn {
    display: block;
    width: 100%;
    background: #ffffff;
    border: 1px solid #d6ddeb;
    border-radius: 12px;
    padding: 14px 15px;
    margin-bottom: 12px;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.2s;
}

.office-btn i {
    margin-right: 10px;
}

.office-btn:hover {
    background: #e9eef5;
}

/* RIGHT SIDE FORM */
.contact-form-box {
    flex: 1;
    min-width: 350px;
}

.alert-success-custom {
    background: #d1f7d6;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #1b7f29;
}

.alert-success-custom i {
    margin-right: 6px;
}

/* FORM INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #cfd7e3;
    margin-bottom: 15px;
    font-size: 17px;
}

.contact-form textarea {
    height: 170px; /* diperbesar */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2b67ff;
    box-shadow: 0 0 6px rgba(43,103,255,0.3);
}

/* SUBMIT BUTTON */
.btn-send {
    width: 100%;
    padding: 18px;
    background: #2b67ff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.btn-send:hover {
    opacity: 0.92;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
