/* ======================================================
   DAWET AYU HERITAGE
   PREMIUM CINEMATIC LIGHT STYLE
====================================================== */

:root{
    --gold:#d4b06a;
    --dark:#0f0d0c;
    --cream:#f8f3ea;
    --green:#5cc471;
    --text:#d8d2ca;
}

/* ======================================================
   GLOBAL
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f8f3ea;
    overflow-x:hidden;
    color:#1f1a17;
    position:relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../images/batik.png');
    opacity: 0.025; /* Indah dan lembut */
    pointer-events: none;
    z-index: -1;
}

/* ======================================================
   NAVBAR
====================================================== */

.custom-navbar{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    z-index:9999;

    background:
    rgba(15,15,15,.35);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:26px;

    padding:18px 10px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.15);
}

.batik-navbar{

    position:absolute;

    inset:0;

    background:
    url('../images/batik.png');

    opacity:.03;

    pointer-events:none;
}

.navbar-brand{

    color:white !important;

    font-size:34px;

    font-weight:700;

    font-family:'Cormorant Garamond', serif;
}

.navbar-brand i{
    color:var(--gold);
}

.nav-link{

    color:white !important;

    margin-left:22px;

    font-size:15px;

    position:relative;

    transition:.4s;
}

.nav-link::after{

    content:'';

    position:absolute;

    width:0%;

    height:2px;

    background:var(--gold);

    left:0;
    bottom:-6px;

    transition:.4s;
}

.nav-link:hover{

    color:var(--gold) !important;
}

.nav-link:hover::after{
    width:100%;
}

/* ======================================================
   HERO
====================================================== */

.hero{

    position:relative;

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,.38),
    rgba(0,0,0,.45)),
    url('../images/alun-alun-banjarnegara.jpg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

    display:flex;

    align-items:center;
}


/* HERO TEXT */

.hero-subtitle{

    color:white;

    font-size:24px;

    margin-bottom:10px;

    font-weight:500;
}

.hero-title{

    font-size:105px;

    line-height:.95;

    font-family:'Cormorant Garamond', serif;

    font-weight:700;

    color:white;

    margin-bottom:25px;
}

.hero-location{

    color:var(--gold);

    font-size:30px;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:20px;
}

.hero-text{

    color:#f1f1f1;

    font-size:21px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;
}

/* ======================================================
   BUTTON
====================================================== */

.btn-success{

    border:none !important;

    background:linear-gradient(
    135deg,
    #1fa463,
    #2dd36f) !important;

    padding:15px 32px;

    font-weight:600;

    transition:.4s;
}

.btn-success:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 10px 30px rgba(45,211,111,.35);
}

.btn-light{

    padding:14px 28px;

    border-radius:999px;

    font-weight:600;

    transition:.4s;
}

.btn-light:hover{

    transform:
    translateY(-4px);
}

/* ======================================================
   WAYANG HERO (WALKING & INTERACTIVE)
====================================================== */

.wayang-walk-container {
    position: absolute;
    bottom: -15px; /* Stand exactly on the boundary line */
    width: 280px;
    height: auto;
    z-index: 10;
    pointer-events: auto;
    animation: walkPattern 22s infinite linear;
}

.wayang-jalan {
    width: 100%;
    height: auto;
    animation: walkBob 0.6s infinite ease-in-out;
    transition: transform 0.2s ease;
    cursor: pointer;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
}

.wayang-bubble {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fdfcf9;
    color: #2b221c;
    border: 2px solid #d4b06a;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 100;
}

.wayang-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #d4b06a transparent transparent;
    display: block;
    width: 0;
}

/* Hover effects */
.wayang-walk-container:hover .wayang-bubble {
    transform: translateX(-50%) scale(1);
}

.wayang-walk-container:hover .wayang-jalan {
    animation-play-state: paused;
    transform: scale(1.05);
}

/* Click effects (Jump) */
.wayang-walk-container:active .wayang-jalan {
    transform: translateY(-20px) scale(1.08) rotate(5deg);
}

/* Walk Keyframes (Kanan ke Kiri - Maju) */
@keyframes walkPattern {
    0% {
        left: 105%;
    }
    100% {
        left: -320px;
    }
}

@keyframes walkBob {
    0% {
        transform: translateY(0) rotate(0deg) scaleY(1);
    }
    25% {
        transform: translateY(-10px) rotate(-3deg) scaleY(1.03);
    }
    50% {
        transform: translateY(0) rotate(0deg) scaleY(0.96);
    }
    75% {
        transform: translateY(-10px) rotate(3deg) scaleY(1.03);
    }
    100% {
        transform: translateY(0) rotate(0deg) scaleY(1);
    }
}

/* ======================================================
   FEATURE BOX
====================================================== */

.feature-box{

    background:
    rgba(255,255,255,.88);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(0,0,0,.05);

    border-radius:35px;

    padding:40px;

    height:100%;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.feature-box:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(212,176,106,.3);
}

.feature-box i{

    font-size:50px;

    color:var(--gold);

    margin-bottom:20px;
}

.feature-box h4{

    color:#1f1a17;

    font-size:30px;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:12px;
}

.feature-box p{

    color:#555;

    line-height:1.8;
}

/* ======================================================
   SECTION
====================================================== */

.section-title{

    font-size:70px;

    font-family:'Cormorant Garamond', serif;

    font-weight:700;

    color:#1f1a17;

    margin-bottom:20px;
}

/* ======================================================
   STATS
====================================================== */

.stats-section{
    background:#fff;
}

.stats-box{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.stats-box:hover{

    transform:
    translateY(-8px);
}

.stats-box h2{

    color:var(--gold);

    font-size:50px;

    font-weight:700;
}

.stats-box p{

    color:#666;

    margin-top:10px;
}

/* ======================================================
   PARALLAX
====================================================== */

.parallax-section{

    position:relative;

    padding:140px 0;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url('../images/alun-alun-banjarnegara.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.overlay-dark{

    position:absolute;
    inset:0;
}

.parallax-title{

    color:white;

    font-size:70px;

    font-family:'Cormorant Garamond', serif;

    margin-bottom:20px;
}

.parallax-text{

    color:#f1f1f1;

    font-size:20px;

    max-width:700px;

    margin:auto;
}

/* ======================================================
   TESTIMONIAL
====================================================== */

.testimonial-box{

    background:white;

    padding:35px;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    height:100%;

    transition:.4s;
}

.testimonial-box:hover{

    transform:
    translateY(-8px);
}

.testimonial-box p{

    color:#555;

    line-height:1.8;
}

/* ======================================================
   INNER PAGES & COMMON STYLES
====================================================== */

.buku-tamu-page {
    padding-top: 190px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.katalog-page {
    padding-top: 190px;
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Jawa Title Styling */
.jawa-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.jawa-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Custom Button */
.btn-custom {
    background: linear-gradient(135deg, #1fa463, #2dd36f);
    color: white !important;
    border: none !important;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 211, 111, 0.3);
}

/* Product Cards */
.card-produk {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.card-produk:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(31,164,99,0.15);
}

.card-img-link {
    display: block;
    overflow: hidden;
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-produk .card-img-top {
    transition: 0.5s ease;
    height: 250px;
    object-fit: cover;
    display: block;
    width: 100%;
}

.card-produk:hover .card-img-top {
    transform: scale(1.06);
}

.card-stok-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
}

.card-stok-badge.habis {
    background: rgba(220,53,69,0.85);
    color: white;
}

.card-stok-badge.sisa {
    background: rgba(212,176,106,0.85);
    color: white;
}

.card-produk .card-body {
    position: relative;
    z-index: 1;
    background: white;
}

.detail-link {
    color: #2b221c;
    text-decoration: none;
    transition: 0.2s;
}

.detail-link:hover {
    color: #1fa463;
}

.card-produk h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    color: #2b221c;
    margin-bottom: 8px;
}

.card-produk p {
    color: #6b6258;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-produk h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}

/* Form Styles */
.card-form {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border: none;
}

.form-control {
    border-radius: 14px;
    border: 1px solid #e2dcd5;
    padding: 12px 18px;
    background: #fdfcf7;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 176, 106, 0.25);
    background: white;
}

/* Testimonial Cards styling */
.card-testi {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border: none;
    transition: 0.3s;
}

.card-testi:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.fs-7 {
    font-size: 0.85rem;
}

/* Footer Styling */
.footer {
    color: #443c35; /* Cokelat gelap */
    padding: 60px 0 40px;
    position: relative;
    border-top: 1px solid rgba(212, 176, 106, 0.15);
}

.footer h5 {
    color: #2b221c; /* Cokelat lebih gelap */
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14.5px;
}

.footer hr {
    border-color: rgba(212, 176, 106, 0.25);
    margin: 25px 0;
    opacity: 1;
}

/* ======================================================
   LOADING OVERLAY & TRANSITIONS
====================================================== */
#loader {
    position: fixed;
    inset: 0;
    background: #fdfcf9; /* Heritage Cream */
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

#loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/batik.png');
    opacity: 0.015;
    pointer-events: none;
}

.rocket-container {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.rocket-wrapper {
    position: relative;
    width: 250px;
    height: 150px;
    margin: 0 auto;
    overflow: visible;
}

.rocket-img {
    width: 155px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -77.5px;
    margin-top: -60px;
    animation: flightPath 2.8s infinite linear;
    filter: drop-shadow(0 10px 25px rgba(212, 176, 106, 0.25));
    mix-blend-mode: multiply;
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2b221c;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.loader-bar {
    width: 140px;
    height: 4px;
    background: rgba(212, 176, 106, 0.15);
    margin: 15px auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #d4b06a, #b8860b);
    border-radius: 2px;
    animation: fillBar 2.2s infinite ease-in-out;
}

/* Animations */
@keyframes flightPath {
    0% {
        transform: translate(-120px, 50px) scale(0.85) rotate(15deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translate(120px, -50px) scale(1.1) rotate(15deg);
        opacity: 0;
    }
}

@keyframes fillBar {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

/* Fade out logic active */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loader.fade-in {
    opacity: 1;
    visibility: visible;
}

/* ======================================================
   BANGO-STYLE PRODUCT BANNER
====================================================== */

.bango-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Background: alun-alun diblur seperti foto landscape Bango */
.bango-bg {
    position: absolute;
    inset: 0;
    background: url('../images/alun-alun-banjarnegara.jpg') center center / cover no-repeat;
    filter: blur(3px) brightness(0.55);
    transform: scale(1.05); /* cegah tepi putih akibat blur */
    z-index: 0;
}

.bango-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(248,243,230,0.92) 0%,
        rgba(248,243,230,0.88) 45%,
        rgba(248,243,230,0.30) 70%,
        rgba(15,13,12,0.10) 100%
    );
    z-index: 1;
}

/* ---- Teks Kiri ---- */
.bango-text-col {
    padding: 70px 20px 70px 0;
}

.bango-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bango-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #1f1a17;
    margin-bottom: 22px;
}

.bango-desc {
    font-size: 17px;
    line-height: 1.85;
    color: #3d342c;
    max-width: 480px;
    margin-bottom: 34px;
}

.bango-desc strong {
    color: #1a5c38;
}

.bango-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a017, #f0c030);
    color: #3b2000 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 38px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(212,160,23,0.35);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.3px;
}

.bango-btn:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 16px 40px rgba(212,160,23,0.5);
    background: linear-gradient(135deg, #c49010, #e8b820);
}

/* ---- Gelas Dawet Kanan ---- */
.dawet-glass-wrap {
    position: relative;
    width: 260px;
    margin-bottom: -4px;
    animation: glassBob 3.5s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35))
            drop-shadow(0 0 60px rgba(26,92,56,0.2));
}

.dawet-svg {
    width: 100%;
    height: auto;
}

.dawet-splash {
    width: 100%;
    margin-top: -10px;
    opacity: 0.8;
}

@keyframes glassBob {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    30%       { transform: translateY(-14px) rotate(-1deg); }
    70%       { transform: translateY(-8px) rotate(1deg); }
}

/* ---- Partikel Melayang ---- */
.dawet-particle {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: particleFloat 0s ease-in-out infinite;
    opacity: 0.85;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.dawet-particle.p1 { top: 10%;  left: -15%; font-size: 28px; animation: particleFloat 4.0s ease-in-out infinite; animation-delay: 0s; }
.dawet-particle.p2 { top: 25%;  right: -10%; font-size: 20px; animation: particleFloat 3.5s ease-in-out infinite; animation-delay: 0.8s; }
.dawet-particle.p3 { top: 60%;  left: -20%; font-size: 22px; animation: particleFloat 5.0s ease-in-out infinite; animation-delay: 1.2s; }
.dawet-particle.p4 { top: 5%;   right: -5%;  font-size: 18px; animation: particleFloat 4.5s ease-in-out infinite; animation-delay: 0.4s; }
.dawet-particle.p5 { bottom: 20%; right: -15%; font-size: 26px; animation: particleFloat 3.8s ease-in-out infinite; animation-delay: 1.6s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg);   }
    33%       { transform: translateY(-18px) rotate(8deg);  }
    66%       { transform: translateY(-8px)  rotate(-5deg); }
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:992px){

    .hero-title{
        font-size:72px;
    }

    .wayang-walk-container {
        width: 220px;
        bottom: -10px;
    }

    .bango-title {
        font-size: 44px;
    }

    .dawet-glass-wrap {
        width: 200px;
    }
}

@media(max-width:768px){

    .hero-title{
        font-size:56px;
    }

    .hero-subtitle{
        font-size:20px;
    }

    .hero-location{
        font-size:24px;
    }

    .hero-text{
        font-size:17px;
    }

    .section-title{
        font-size:48px;
    }

    .custom-navbar{
        width:95%;
    }

    .navbar-brand{
        font-size:24px;
    }

    .parallax-title{
        font-size:42px;
    }

    .wayang-walk-container {
        width: 170px;
        bottom: -10px;
        animation-duration: 18s;
    }

    .bango-title {
        font-size: 36px;
    }

    .bango-text-col {
        padding: 50px 15px 30px;
        text-align: center;
    }

    .bango-desc {
        margin: 0 auto 28px;
    }

    .dawet-glass-wrap {
        width: 160px;
        margin: 0 auto 40px;
    }

    .dawet-particle {
        display: none;
    }
}

/* ======================================================
   FLOATING MUSIC TOGGLE
====================================================== */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: rgba(248, 243, 230, 0.85);
    border: 1.5px solid rgba(212, 176, 106, 0.5);
    border-radius: 50%;
    color: #2b221c;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(43, 34, 28, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.music-toggle:hover {
    transform: scale(1.1) translateY(-3px);
    background: #d4b06a;
    color: #f8f3ea;
    box-shadow: 0 15px 35px rgba(212, 176, 106, 0.35);
}

/* Playing animation */
.music-toggle.playing i {
    animation: rotateMusic 4s infinite linear;
    color: #d4b06a;
}

.music-toggle.playing:hover i {
    color: #f8f3ea;
}

/* Pulse effect for playing music */
.music-toggle.playing::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1.5px solid rgba(212, 176, 106, 0.4);
    border-radius: 50%;
    animation: pulseRing 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

@keyframes rotateMusic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ======================================================
   FLOATING WHATSAPP CONTAINER
====================================================== */
.wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.wa-toggle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.wa-toggle:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4a4a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: bounceBadge 2s infinite;
}

.wa-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: rgba(253, 252, 249, 0.95);
    border: 1.5px solid rgba(212, 176, 106, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(43, 34, 28, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.wa-floating-container:hover .wa-menu,
.wa-floating-container.active .wa-menu {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.wa-menu-header {
    background: linear-gradient(135deg, #fcf8f2, #f5ecd8);
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 176, 106, 0.15);
}

.wa-menu-header strong {
    color: #2b221c;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}

.wa-menu-header p {
    color: #6d5b50;
    font-size: 12px;
    margin: 0;
}

.wa-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none !important;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(212, 176, 106, 0.08);
}

.wa-menu-item:last-child {
    border-bottom: none;
}

.wa-menu-item:hover {
    background: rgba(212, 176, 106, 0.08);
}

.wa-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.3s;
}

.wa-menu-item:hover .wa-item-icon {
    background: #25d366;
    color: white;
    transform: scale(1.1);
}

.wa-item-text {
    display: flex;
    flex-direction: column;
}

.wa-item-title {
    color: #2b221c;
    font-size: 14px;
    font-weight: 600;
}

.wa-item-desc {
    color: #8c7b70;
    font-size: 11px;
}

@keyframes bounceBadge {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-6px); }
    70% { transform: translateY(-3px); }
}

/* Adjustments for smaller screen sizes */
@media (max-width: 768px) {
    .music-toggle {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .wa-floating-container {
        bottom: 20px;
        right: 20px;
    }
    .wa-toggle {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    .wa-menu {
        width: 280px;
        bottom: 65px;
    }
}

/* ======================================================
   SWEETALERT2 CUSTOM POPUP
====================================================== */
.swal-custom-popup {
    border-radius: 28px !important;
    box-shadow: 0 30px 80px rgba(43,34,28,0.25) !important;
    border: 1px solid rgba(212,176,106,0.15) !important;
    padding: 30px 25px 20px !important;
}

.swal-custom-content {
    text-align: center;
    padding: 5px 0 0;
}

.swal-image-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.swal-image-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31,164,99,0.15), rgba(212,176,106,0.15));
    filter: blur(8px);
    animation: pulseGlow 2s ease-in-out infinite;
}

.swal-image-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid #1fa463;
    border-top-color: #d4b06a;
    border-right-color: #d4b06a;
}

.swal-product-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(31,164,99,0.2);
}

.swal-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #1fa463, #2dd36f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fdfcf7;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(31,164,99,0.4);
}

.swal-badge i {
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.swal-title {
    color: #2b221c;
    font-weight: 700;
    margin: 0 0 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 0.3px;
}

.swal-title-accent {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1fa463, #d4b06a);
    border-radius: 2px;
    margin: 8px auto 10px;
}

.swal-desc {
    color: #6b6258;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.swal-desc strong {
    color: #1fa463;
    font-weight: 600;
}

.swal-desc span {
    color: #8a7e72;
    font-size: 14px;
}

/* ======================================================
   SWEETALERT2 KEYFRAMES
====================================================== */
@keyframes popIn {
    0% { transform: scale(0.3) translateY(20px); opacity: 0; }
    50% { transform: scale(1.08) translateY(-5px); }
    70% { transform: scale(0.95) translateY(2px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes popOut {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.4) translateY(30px); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.swal-custom-show {
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

.swal-custom-hide {
    animation: popOut 0.3s ease forwards !important;
}

/* ======================================================
   FLOATING WHATSAPP WIDGET
====================================================== */
.wa-float-wrap {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #20b859);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: 0.3s;
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-float-btn .bi-x-lg {
    display: none;
    font-size: 22px;
}

.wa-float-wrap.active .wa-float-btn .bi-whatsapp {
    display: none;
}

.wa-float-wrap.active .wa-float-btn .bi-x-lg {
    display: inline;
}

.wa-float-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    min-width: 220px;
}

.wa-float-wrap.active .wa-float-menu {
    display: flex;
    animation: waSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float-item {
    background: white;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #2b221c;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s;
    border: 1px solid rgba(212,176,106,0.1);
}

.wa-float-item:hover {
    transform: translateX(-6px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border-color: #25D366;
    color: #25D366;
}

.wa-float-item i {
    font-size: 20px;
}

/* ======================================================
   BACK TO TOP BUTTON
====================================================== */
.btt-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b06a, #c49a4a);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(212,176,106,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
}

.btt-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btt-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 24px rgba(212,176,106,0.55);
}

@keyframes waSlideUp {
    0% { opacity: 0; transform: translateY(15px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media(max-width:576px) {
    .wa-float-btn { width: 50px; height: 50px; font-size: 24px; }
    .wa-float-wrap { bottom: 80px; right: 16px; }
    .btt-btn { width: 40px; height: 40px; font-size: 17px; left: 16px; bottom: 20px; }
    .wa-float-item { padding: 11px 16px; font-size: 13px; }
    .wa-float-menu { min-width: 190px; }
}

/* ===========================
   REVIEW / ULASAN SECTION
=========================== */
.review-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #14532d;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b06a, #b8882a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.review-header h4 {
    margin: 0 0 4px;
    color: #222;
    font-size: 17px;
    font-weight: 600;
}

.review-stars i {
    color: #f59e0b;
    font-size: 16px;
    margin-right: 1px;
}

.review-card p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.review-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.review-empty i {
    font-size: 52px;
    color: #d4b06a;
    margin-bottom: 16px;
    display: block;
}

.review-empty p {
    color: #888;
    font-size: 16px;
    margin: 0;
}

/* Review Form */
.review-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.review-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212,176,106,0.2);
    font-family: 'Cormorant Garamond', serif;
}

.review-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-size: 14px;
    color: #1f1a17;
    background: #faf8f5;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.review-input:focus {
    border-color: #14532d;
    background: white;
    box-shadow: 0 0 0 4px rgba(20,83,45,0.08);
}

.review-input::placeholder { color: #bbb; }

.review-rating-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #faf8f5;
    height: 100%;
}

.rating-text {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.review-star-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
}

.review-star-input input { display: none; }

.review-star-input label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1;
}

.review-star-input label:hover,
.review-star-input label:hover ~ label,
.review-star-input input:checked ~ label {
    color: #f59e0b;
    transform: scale(1.1);
}

.review-btn {
    background: linear-gradient(135deg, #14532d, #1fa463);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,164,99,0.3);
    color: white;
}

@media(max-width:768px) {
    .review-section { padding: 50px 16px; }
    .section-title h2 { font-size: 28px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-form-wrap { padding: 24px; }
}