@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Poppins:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-light: #fdf8f7;
    --text-dark: #3e2723;
    --text-muted: #8e7a78;
    --primary-color: #dca8a8;
    --success-color: #b08d8d;
    --rs-navy: #4a3634;
    --rs-blue: #dca8a8;
    --rs-bg: #fdfaf9;
    --rs-border: #f1e4e4;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    padding-top: 100px !important;
}

h1,
h2,
h3,
.navbar-brand,
.nav-link,
.btn,
.product-title {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    padding: 1.2rem 0;
    background: #ffffff !important;
    border-bottom: 1px solid #eee;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-dark) !important;
}

.cart-wrapper,
.nav-item.dropdown {
    position: relative !important;
}

.custom-dropdown,
.cart-dropdown-hover {
    min-width: 250px;
    background: #fff;
    border-radius: 20px !important;
    padding: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
    z-index: 2500;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-wrapper:hover .cart-dropdown-hover,
.nav-item.dropdown:hover .custom-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.cart-wrapper::after,
.nav-item.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
}

.nav-link i {
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    animation: bounce-icon 0.6s ease;
    color: var(--primary-color) !important;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
}

.product-card {
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.img-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(-3deg);
}

.info-wrapper {
    background-color: var(--bg-light);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eeeeee;
    border-radius: 0 0 20px 20px;
}

.action-icons {
    position: absolute;
    right: -65px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .action-icons {
    right: 15px;
}

.btn-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: 0.3s;
}

.btn-circle:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #333;
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-box-clean {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 12px;
    text-align: center;
}

.slogan-container {
    padding: 80px 0 40px;
    text-align: center;
}

.slogan-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 10px;
    color: #2c3e50;
    text-transform: uppercase;
}

.slogan-sub {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    font-size: 1rem;
}

.checkout-page {
    background-color: var(--rs-bg);
    color: #334155;
    margin-top: -20px;
    padding-top: 20px;
    background-color: #f8fafc !important;
}

.stepper-slim {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.step-item.active {
    color: var(--rs-blue);
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.65rem;
}

.step-item.active .step-num {
    background: var(--rs-blue);
    color: #fff;
}

.judul-premium {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--rs-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.card-checkout {
    background: #fff !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.form-checkout .form-control {
    background-color: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
}

.payment-box-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-item-wrapper {
    flex: 1 1 calc(25% - 12px);
    min-width: 140px;
}

.payment-item-selectable {
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 15px !important;
    text-align: center;
    cursor: pointer;
    background: #fff !important;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 100%;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.payment-item-selectable:hover {
    border-color: var(--rs-blue) !important;
    transform: translateY(-3px);
}

.btn-check:checked+.payment-item-selectable {
    border-color: var(--rs-blue) !important;
    background-color: #f0f7ff !important;
    box-shadow: 0 0 0 2px var(--rs-blue) !important;
}

.pay-logo {
    height: 26px;
    width: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.payment-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.payment-group-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin: 25px 0 12px 0;
    display: flex;
    align-items: center;
    letter-spacing: 1.5px;
}

.payment-group-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--rs-blue);
    margin-right: 10px;
    border-radius: 10px;
}

.sticky-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.total-display {
    background: var(--rs-navy);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
}

.btn-checkout,
.btn-konfirmasi {
    background: var(--rs-blue);
    color: white;
    font-weight: 800;
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-size: 1.1rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-checkout::before,
.btn-konfirmasi::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #1d4ed8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.1, 0, 0.3, 1), height 0.6s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-checkout:hover,
.btn-konfirmasi:hover {
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.3);
    transform: translateY(-4px);
}

.btn-checkout:hover::before,
.btn-konfirmasi:hover::before {
    width: 160%;
    height: 500px;
}

.btn-checkout:active,
.btn-konfirmasi:active {
    transform: translateY(-1px) scale(0.96);
    filter: brightness(1.1);
    transition: 0.1s;
}

.btn-use-profile {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--rs-blue);
    color: var(--rs-blue);
    background: transparent;
    transition: 0.3s;
}

.btn-use-profile:hover {
    background: var(--rs-blue);
    color: #fff;
}

.table td,
.table th {
    vertical-align: middle !important;
}
.search-container {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 2px 6px 2px 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 44px;
    width: 240px;
}

.search-container:focus-within {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
    width: 300px;
}

.search-container .form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.search-container .btn {
    border: none !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.search-container .btn:hover {
    transform: rotate(90deg) scale(1.1); 
    background: var(--text-dark) !important;
}

.login-body {
    background-color: #f4f6f9 !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 0 !important;
}

.card-login,
.card-register {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.btn-masuk,
.btn-daftar {
    background-color: #2c3e50;
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-masuk:hover,
.btn-daftar:hover {
    background-color: #34495e;
    color: white;
    transform: translateY(-2px);
}

.login-body .brand-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -1px;
}

.text-rs-navy {
    color: #2c3e50;
}

.profile-page {
    background-color: var(--rs-bg) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.card-premium {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--rs-border) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
}

.profile-sidebar-header {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
    text-align: center;
    border-bottom: 1px solid var(--rs-border);
}

.avatar-wrapper {
    width: 100px;
    height: 100px;
    background: var(--rs-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    border: 4px solid #fff;
}

.nav-profil-premium .nav-link {
    color: #64748b;
    font-weight: 600;
    padding: 15px 25px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.nav-profil-premium .nav-link.active {
    background: #f0f7ff;
    color: var(--rs-blue);
    border-left: 4px solid var(--rs-blue);
}

.form-label-premium {
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-control-premium {
    background-color: #f8fafc;
    border: 1.5px solid var(--rs-border);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.form-control-premium:focus {
    background-color: #fff;
    border-color: var(--rs-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
    outline: none;
}

.btn-save-premium {
    background: var(--rs-navy);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.15);
}
.btn-save-premium:hover {
    background: #0f172a;
    transform: translateY(-3px);
}
.status-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 800;
    background: #dcfce7;
    color: #15803d;
    display: inline-block;
}
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary-custom:hover {
    background: #f8fafc;
    color: var(--rs-blue);
    border-color: var(--rs-blue);
    transform: translateX(-5px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.btn-secondary-custom i {
    transition: transform 0.3s ease;
}
.btn-secondary-custom:hover i {
    transform: translateX(-3px);
}
.custom-check {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    vertical-align: middle !important;
    margin: 0 !important;
}
.custom-check:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}
.custom-check:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-check:hover {
    border-color: #3b82f6 !important;
    background-color: #f8fafc !important;
}
.cart-row {
    border-bottom: 1px solid #f1f5f9 !important; 
}
.total-display #totalAmount {
    color: #ffffff !important;
    text-shadow: none; 
}
.total-display small {
    color: rgba(255, 255, 255, 0.7) !important; 
}
.btn-delete-cart {
    color: #ef4444;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    text-decoration: none;
}
.btn-delete-cart:hover {
    background-color: #fee2e2;
    color: #dc2626; 
    transform: scale(1.1); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}
.swiper {
    padding: 20px 10px 50px 10px !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #000 !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    top: 45% !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* --- LOZY STYLE SLIDER & HERO --- */
.hero-swiper-container {
    margin-top: -20px;
    margin-bottom: 40px;
}
.hero-swiper, .heroSwiper {
    width: 100%;
    height: 750px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    padding: 0 !important;
}
.hero-slide {
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    position: relative;
}
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(253,248,247,0.75) 30%, rgba(253,248,247,0) 80%);
    z-index: 1;
}
.hero-content-box {
    position: relative;
    z-index: 2;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.hero-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #b08d8d;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.hero-desc {
    font-size: 0.95rem;
    color: #5c4e4c;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive adjustments for Hero Slider */
@media (max-width: 1199px) {
    .hero-swiper, .heroSwiper {
        height: 650px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .hero-swiper, .heroSwiper {
        height: 550px;
    }
    .hero-slide {
        padding-left: 5%;
        background-position: center 30%;
    }
    .hero-content-box {
        max-width: 420px;
        padding: 30px;
    }
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-swiper, .heroSwiper {
        height: 480px;
    }
    .hero-slide {
        padding-left: 0;
        justify-content: center;
        background-position: center 30%;
    }
    .hero-slide::before {
        background: linear-gradient(180deg, rgba(253,248,247,0.4) 0%, rgba(253,248,247,0.85) 90%);
    }
    .hero-content-box {
        max-width: 90%;
        margin: 0 15px;
        padding: 25px 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 25px rgba(62, 39, 35, 0.15);
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

/* --- PROMO BAR MARQUEE --- */
.promo-bar {
    background-color: #f5d6d6;
    color: #4a3634;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 1040;
    display: flex;
    align-items: center;
}
.promo-marquee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: 200%;
}
.promo-item {
    padding: 0 40px;
    white-space: nowrap;
    line-height: 1;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CATALOG FILTER SIDEBAR --- */
.filter-sidebar {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid var(--rs-border);
    padding: 25px;
    position: sticky;
    top: 120px;
}
.filter-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--rs-border);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-section {
    margin-bottom: 25px;
}
.filter-section-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #5c4e4c;
}
.filter-option:hover {
    color: var(--primary-color);
}
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.price-inputs input {
    width: 100%;
    border: 1.5px solid var(--rs-border) !important;
    background-color: #fdfaf9 !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    color: var(--text-dark) !important;
    text-align: center;
}
.price-inputs span {
    font-weight: bold;
    color: var(--text-muted);
}
.btn-filter-apply {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
}
.btn-filter-apply:hover {
    background: #cba0a0;
}

/* ================= MOBILE OPTIMIZED HEADER ================= */
@media (max-width: 991px) {
    .header-navbar {
        background-color: #ffffff !important; /* Latar belakang putih seperti desktop */
        border-bottom: 1px solid #eeeeee !important; /* Border bawah halus seperti desktop */
        padding: 0.7rem 0 !important;
    }
    
    .mobile-nav-toggle {
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    /* Collapsible search bar on mobile */
    #mobileSearchCollapse {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 12px 18px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(62, 39, 35, 0.08);
        border: 1px solid var(--rs-border);
    }
    
    /* Collapsible nav menu card on mobile */
    .mobile-menu-collapse {
        background-color: #ffffff;
        border-radius: 20px;
        padding: 15px 20px;
        margin-top: 10px;
        box-shadow: 0 12px 30px rgba(62, 39, 35, 0.12);
        border: 1px solid var(--rs-border);
    }
    
    .mobile-menu-collapse .nav-link {
        color: var(--text-dark) !important;
        font-weight: 600 !important;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-collapse .nav-link:hover {
        background-color: var(--bg-light) !important;
        color: var(--primary-color) !important;
        transform: translateX(5px);
    }
    
    .mobile-menu-collapse hr {
        border-top: 1.5px solid var(--rs-border);
    }
}

/* Sembunyikan menu mobile secara paksa pada resolusi desktop */
@media (min-width: 992px) {
    .mobile-menu-collapse {
        display: none !important;
    }
}

/* ================= PREMIUM FOOTER STYLE ================= */
.gasyatri-footer {
    background-color: #fcebe8; /* Latar belakang pink kalem sesuai referensi */
    color: #3e2723; /* Teks cokelat tua */
}

.gasyatri-footer .footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #3e2723;
}

.gasyatri-footer .footer-text {
    color: #5c4e4c;
    line-height: 1.6;
}

.gasyatri-footer .footer-social-link {
    color: #5c4e4c;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.gasyatri-footer .footer-social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.gasyatri-footer .footer-links {
    margin: 0;
    padding: 0;
}

.gasyatri-footer .footer-links li {
    margin-bottom: 8px;
}

.gasyatri-footer .footer-link-item {
    color: #5c4e4c;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.gasyatri-footer .footer-link-item:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.gasyatri-footer .btn-subscribe {
    transition: all 0.3s ease;
}

.gasyatri-footer .btn-subscribe:hover {
    background-color: #cba0a0 !important;
}

.gasyatri-footer .payment-badges .payment-badge-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gasyatri-footer .payment-badges .payment-badge-card:hover {
    transform: translateY(-2.5px);
    box-shadow: 0 4px 10px rgba(62, 39, 35, 0.08);
}

.gasyatri-footer .footer-copy {
    color: #3e2723;
    font-size: 0.85rem;
}