/* assets/css/style.css - Lengkap dengan semua animasi */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: 
        radial-gradient(ellipse at 5% 10%, rgba(255,107,139,0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 95% 90%, rgba(197,163,255,0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 5%, rgba(126,200,160,0.05) 0%, transparent 35%),
        #FFF9F0;
    overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Fredoka', sans-serif;
}

/* ========== LOADING ANIMATION ========== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE66D 0%, #FFB8B8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.crepe-loader {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 30px;
}

.crepe-loader .circle {
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-top-color: #FF6B6B;
    border-right-color: #88B04B;
    border-bottom-color: #FFB800;
    border-left-color: #AA82C8;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.crepe-loader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    animation: bounce 0.6s ease infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.loader-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Fredoka', sans-serif;
}

.loader-dots {
    display: inline-block;
    margin-left: 5px;
}

.loader-dots span {
    display: inline-block;
    animation: dot 1.4s ease infinite;
    opacity: 0;
    font-size: 1.5rem;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

/* ========== NAVBAR ========== */
.navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
    /* PENTING: jangan pakai backdrop-filter atau z-index langsung pada navbar
       karena keduanya membuat stacking context yang menjebak dropdown di dalamnya.
       Gunakan ::before pseudo-element untuk efek blur agar dropdown bisa bebas. */
}
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 249, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.navbar-scrolled::before {
    background: rgba(255, 249, 240, 0.98);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #8B5A2B !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: #8B5A2B !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF6B6B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.cart-badge {
    background: #FF6B6B;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: 5px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE6E6 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #FF6B6B, #FFB800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 30px;
    min-height: 70px;
}

.hero-buttons .btn-hero {
    background: linear-gradient(135deg, #FF6B6B, #FFB8B8);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.hero-buttons .btn-outline-hero {
    background: transparent;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-outline-hero:hover {
    background: #FF6B6B;
    color: white;
    transform: translateY(-3px);
}

/* Floating Animation */
@keyframes floatHero {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-floating {
    position: relative;
    animation: floatHero 3s ease-in-out infinite;
}

.floating-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.floating-card {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.floating-card i {
    font-size: 20px;
}

.card-1 {
    top: 10%;
    right: 5%;
    animation: pulse 2s ease infinite;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation: pulse 2s ease infinite 0.5s;
}

.card-3 {
    top: 40%;
    left: 5%;
    animation: pulse 2s ease infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Background floating shapes */
.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #FF6B6B;
    border-radius: 50%;
    animation-duration: 15s;
}

.shape-2 {
    bottom: 15%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: #88B04B;
    border-radius: 60% 40% 50% 50%;
    animation-duration: 20s;
}

.shape-3 {
    top: 50%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: #FFB800;
    border-radius: 40% 60% 50% 50%;
    animation-duration: 12s;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, #FF6B6B, #88B04B);
    animation: growLine 1s ease forwards;
}

@keyframes growLine {
    0% { height: 0; top: 0; }
    100% { height: 100%; top: 0; }
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    width: 45%;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B6B;
}

/* ========== PRODUCT CARD ========== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: #FF6B6B;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #88B04B, #6B8E23);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(136,176,75,0.4);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #FF6B6B, #FFB8B8);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.btn-cta {
    background: white;
    color: #FF6B6B;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #FF6B6B;
}

/* ========== TESTIMONI CARD ========== */
.testimoni-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimoni-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #FFB8B8;
    font-family: serif;
    opacity: 0.5;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .typing-text {
        font-size: 1rem;
        min-height: 50px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 0;
        transform: translateX(0);
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        text-align: left;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-buttons .btn-hero,
    .hero-buttons .btn-outline-hero {
        padding: 8px 20px;
        font-size: 14px;
    }
}
/* ========================================
   TAMBAHAN STYLES - PAGE ANIMATIONS & COMPONENTS
   ========================================= */

/* ---- PAGE ENTER ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.7) rotate(-5deg); }
    70%  { transform: scale(1.05) rotate(1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.page-enter          { animation: fadeInUp 0.7s ease both; }
.page-enter-left     { animation: fadeInLeft 0.7s ease both; }
.page-enter-right    { animation: fadeInRight 0.7s ease both; }
.page-enter-zoom     { animation: zoomIn 0.6s ease both; }
.page-enter-pop      { animation: popIn 0.6s cubic-bezier(.17,.67,.33,1.3) both; }
.delay-1  { animation-delay: 0.1s; }
.delay-2  { animation-delay: 0.2s; }
.delay-3  { animation-delay: 0.3s; }
.delay-4  { animation-delay: 0.4s; }

/* ---- SECTION HEADER (shared across pages) ---- */
.section-header { margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B22, #FFB8B833);
    color: #FF6B6B;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 2px solid #FF6B6B33;
}
.section-header h2 { font-size: 2.2rem; font-weight: 700; color: #5C3D2E; }
.section-header h2 .highlight {
    background: linear-gradient(135deg, #FF6B6B, #FFB800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p { color: #888; font-size: 1.05rem; margin-top: 8px; }

/* ---- PAGE HERO BANNER (used on keranjang, ulasan, etc.) ---- */
.page-hero {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE6E6 60%, #FFD6F5 100%);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B6B' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-family: 'Fredoka', sans-serif; font-size: 2.8rem; color: #5C3D2E; }
.page-hero p  { color: #8B5A2B; font-size: 1.1rem; }

/* ---- FLOATING FOOD DECO ---- */
.food-deco {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatBob 3s ease-in-out infinite;
    pointer-events: none;
}

/* ======================================
   KERANJANG PAGE
   ====================================== */
.cart-wrapper { padding: 40px 0 80px; }

.cart-items { display: flex; flex-direction: column; gap: 18px; }

.cart-item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInLeft 0.5s ease both;
    border: 1.5px solid #FFF0E6;
}
.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,107,0.12);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #FFE6D6;
}

.cart-item-title { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: #5C3D2E; margin-bottom: 4px; }
.cart-item-variant { font-size: 0.85rem; color: #FF6B8B; }
.cart-item-price  { font-weight: 700; color: #FF6B6B; }
.cart-item-subtotal { font-weight: 800; color: #5C3D2E; font-size: 1.05rem; }

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: 
        radial-gradient(ellipse at 5% 10%, rgba(255,107,139,0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 95% 90%, rgba(197,163,255,0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 5%, rgba(126,200,160,0.05) 0%, transparent 35%),
        #FFF9F0;
    border-radius: 50px;
    padding: 4px 10px;
    border: 2px solid #FFE0D0;
    width: fit-content;
}
.qty-btn {
    background: none; border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: #FF6B6B;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: #FF6B6B; color: white; }
.quantity-control input {
    width: 36px; text-align: center;
    border: none; background: transparent;
    font-weight: 700; color: #5C3D2E;
    font-size: 1rem;
}
.quantity-control input:focus { outline: none; }

.btn-remove {
    background: none; border: 1px solid #FFD0D0;
    color: #FF4444; padding: 6px 14px;
    border-radius: 50px; font-size: 0.82rem;
    cursor: pointer; transition: all 0.3s ease;
}
.btn-remove:hover { background: #FF4444; color: white; border-color: #FF4444; }

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: sticky; top: 100px;
    border: 2px solid #FFE6D6;
    animation: fadeInRight 0.6s ease both;
}
.cart-summary h4 { font-family: 'Fredoka', sans-serif; color: #5C3D2E; margin-bottom: 20px; font-size: 1.4rem; }
.summary-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px dashed #FFE0D0;
    color: #666;
}
.summary-item strong { color: #5C3D2E; }
.total-price { color: #FF6B6B !important; font-size: 1.3rem; }

.cart-summary .form-select,
.cart-summary .form-control {
    border-radius: 12px;
    border: 2px solid #FFE0D0;
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}
.cart-summary .form-select:focus,
.cart-summary .form-control:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.btn-checkout {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white; border: none;
    padding: 14px; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
}
.btn-whatsapp-checkout {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; border: none;
    padding: 12px; border-radius: 50px;
    font-weight: 700; cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-whatsapp-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.empty-cart { padding: 80px 0; }
.empty-cart-emoji { font-size: 5rem; animation: floatBob 2s ease-in-out infinite; }
.empty-cart h3 { font-family: 'Fredoka', sans-serif; color: #5C3D2E; }

/* ======================================
   CHECKOUT SUCCESS PAGE
   ====================================== */
.success-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE6F5 100%);
    display: flex; align-items: center;
    padding: 120px 0 60px;
}
.success-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(255,107,107,0.12);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #FFE6D6;
    animation: zoomIn 0.6s ease both;
    position: relative;
    overflow: hidden;
}
.success-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, #FF6B6B, #FFB800, #88B04B, #AA82C8);
}
.success-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, #88B04B, #6dd17d);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem; color: white;
    animation: popIn 0.7s ease both 0.3s;
    box-shadow: 0 10px 30px rgba(136,176,75,0.35);
}
.success-card h2 { font-family: 'Fredoka', sans-serif; color: #5C3D2E; font-size: 2rem; }
.order-details {
    background: 
        radial-gradient(ellipse at 5% 10%, rgba(255,107,139,0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 95% 90%, rgba(197,163,255,0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 5%, rgba(126,200,160,0.05) 0%, transparent 35%),
        #FFF9F0;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    border: 1.5px dashed #FFB8B8;
}
.order-details h5 { font-family: 'Fredoka', sans-serif; color: #FF6B6B; margin-bottom: 14px; }
.order-details p  { color: #666; margin-bottom: 8px; }
.order-details strong { color: #5C3D2E; }
.payment-instruction .alert-info {
    background: linear-gradient(135deg, #E8F4FD, #D1ECF1);
    border: none; border-radius: 16px;
    color: #0c5460;
}
.bank-info { font-size: 0.92rem; margin-top: 8px; line-height: 1.8; }
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FFB8B8);
    color: white; padding: 12px 28px;
    border-radius: 50px; text-decoration: none;
    font-weight: 700; transition: all 0.3s ease;
    border: none; cursor: pointer;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
    color: white;
}
.btn-whatsapp-success {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; padding: 12px 28px;
    border-radius: 50px; font-weight: 700;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-whatsapp-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.confetti-emojis {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: floatBob 1.5s ease-in-out infinite;
}

/* ======================================
   ULASAN PAGE
   ====================================== */
.ulasan-wrapper { padding: 40px 0 80px; }

.review-form-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border: 2px solid #FFE6D6;
    animation: fadeInLeft 0.6s ease both;
}
.review-form-card h4 { font-family: 'Fredoka', sans-serif; color: #5C3D2E; margin-bottom: 24px; font-size: 1.4rem; }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 6px; margin-bottom: 5px; }
.star-rating input { display: none; }
.star-rating label {
    font-size: 2rem; cursor: pointer;
    color: #ddd; transition: color 0.2s ease;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #FFB800; }

.review-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1.5px solid #FFF0E6;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease both;
    position: relative;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,107,107,0.1);
}
.review-card::before {
    content: '"';
    position: absolute; top: 8px; left: 18px;
    font-size: 55px; color: #FFB8B8;
    font-family: serif; opacity: 0.4;
    line-height: 1;
}
.review-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: white;
    background: linear-gradient(135deg, #FF6B6B, #FFB8B8);
    flex-shrink: 0;
}
.review-name { font-weight: 700; color: #5C3D2E; font-size: 1rem; }
.review-product { font-size: 0.82rem; color: #FF6B8B; }
.review-text { color: #555; line-height: 1.7; margin: 10px 0 0; font-size: 0.95rem; }
.review-stars { color: #FFB800; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: #bbb; }
.review-empty { text-align: center; padding: 60px 0; }
.review-empty-emoji { font-size: 4rem; margin-bottom: 15px; animation: floatBob 2s ease-in-out infinite; }

/* ======================================
   BUKU TAMU PAGE
   ====================================== */
.buku-tamu-wrapper { padding: 40px 0 80px; }

.guestbook-form {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border: 2px solid #FFE6D6;
    animation: fadeInLeft 0.6s ease both;
}
.guestbook-form h4 { font-family: 'Fredoka', sans-serif; color: #5C3D2E; margin-bottom: 24px; font-size: 1.4rem; }

.guestbook-card {
    background: white;
    border-radius: 20px;
    padding: 22px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #FF6B6B;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease both;
    margin-bottom: 18px;
}
.guestbook-card:nth-child(2) { border-left-color: #88B04B; }
.guestbook-card:nth-child(3) { border-left-color: #AA82C8; }
.guestbook-card:nth-child(4) { border-left-color: #FFB800; }
.guestbook-card:nth-child(5) { border-left-color: #FF6B8B; }
.guestbook-card:hover { transform: translateX(6px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.guestbook-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B6B, #FFB8B8);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: white;
    flex-shrink: 0;
}
.guestbook-name  { font-weight: 700; color: #5C3D2E; }
.guestbook-email { font-size: 0.82rem; color: #aaa; }
.guestbook-text  { color: #555; line-height: 1.65; font-size: 0.95rem; margin-top: 10px; }
.guestbook-date  { font-size: 0.78rem; color: #bbb; margin-top: 6px; }

/* ======================================
   SHARED FORM STYLES
   ====================================== */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #FFE0D0;
    padding: 11px 16px;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    background: #FFFAF6;
}
.form-control:focus, .form-select:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
    background: white;
}
.form-label { font-weight: 600; color: #5C3D2E; font-size: 0.9rem; margin-bottom: 6px; }
.btn-submit-form {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white; border: none;
    padding: 13px 28px; border-radius: 50px;
    font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; width: 100%;
    font-size: 1rem;
}
.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
}

/* ======================================
   PRODUCT IMAGE PLACEHOLDER
   ====================================== */
.product-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE6D6 0%, #FFD6F0 100%);
    color: #FF6B8B;
    font-size: 3rem;
    font-family: 'Fredoka', sans-serif;
    gap: 8px;
    overflow: hidden;
    position: relative;
}
.product-img-placeholder span.label {
    font-size: 0.75rem;
    color: #FFB8B8;
    letter-spacing: 1px;
}

/* ======================================
   FOOTER
   ====================================== */
.footer-section {
    background: linear-gradient(135deg, #3D2010, #5C3D2E);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
    margin-top: 40px;
}
.footer-section h5   { font-family: 'Fredoka', sans-serif; color: white; margin-bottom: 18px; font-size: 1.2rem; }
.footer-section p    { font-size: 0.9rem; line-height: 1.7; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul li a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s ease;
}
.footer-section ul li a:hover { color: #FFB8B8; }
.footer-section ul li i { color: #FF8B8B; width: 18px; margin-right: 6px; }
.footer-section .border-top { border-color: rgba(255,255,255,0.15) !important; }
.footer-section .text-center p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; padding-top: 20px; }
.social-links { display: flex; gap: 12px; margin-top: 15px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem; text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #FF6B6B;
    transform: translateY(-3px);
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .cart-summary  { position: static; margin-top: 20px; }
    .success-card  { padding: 35px 22px; }
    .cart-item-img { width: 60px; height: 60px; }
}

/* ======================================
   VELISSE CREPE - UPGRADES
   ====================================== */

/* Floating cute particles — enhanced multi-motion */
.floating-particles {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    font-size: 1.4rem;
    opacity: 0;
    user-select: none;
}

/* Each particle gets a distinctly different animation */
.particle:nth-child(1) {
    left: 5%;
    font-size: 1.2rem;
    animation: floatParticleSpin 14s ease-in-out infinite;
    animation-delay: 0s;
}
.particle:nth-child(2) {
    left: 20%;
    font-size: 1.6rem;
    animation: floatParticleWiggle 11s ease-in-out infinite;
    animation-delay: 2s;
}
.particle:nth-child(3) {
    left: 40%;
    font-size: 1rem;
    animation: floatParticleZigZag 13s linear infinite;
    animation-delay: 4s;
}
.particle:nth-child(4) {
    left: 60%;
    font-size: 1.8rem;
    animation: floatParticlePulse 10s ease-in-out infinite;
    animation-delay: 1s;
}
.particle:nth-child(5) {
    left: 80%;
    font-size: 1.3rem;
    animation: floatParticleSpin 15s ease-in-out infinite reverse;
    animation-delay: 3s;
}
.particle:nth-child(6) {
    left: 92%;
    font-size: 1.5rem;
    animation: floatParticleWiggle 12s ease-in-out infinite;
    animation-delay: 5.5s;
}

/* Spin upward with full rotation */
@keyframes floatParticleSpin {
    0%   { opacity:0; transform: translateY(110vh) rotate(0deg)   scale(0.6); }
    8%   { opacity:0.55; }
    50%  { opacity:0.4; transform: translateY(50vh)  rotate(180deg) scale(1.1); }
    92%  { opacity:0.45; }
    100% { opacity:0; transform: translateY(-12vh) rotate(380deg) scale(0.7); }
}

/* Sideways wiggle while rising */
@keyframes floatParticleWiggle {
    0%   { opacity:0; transform: translateY(110vh) translateX(0)    scale(0.7); }
    10%  { opacity:0.6; }
    25%  { transform: translateY(80vh)  translateX(30px)  scale(1.0); }
    50%  { transform: translateY(50vh)  translateX(-25px) scale(1.15); }
    75%  { transform: translateY(20vh)  translateX(20px)  scale(0.95); }
    90%  { opacity:0.5; }
    100% { opacity:0; transform: translateY(-10vh) translateX(-10px) scale(0.8); }
}

/* Zig-zag path upward */
@keyframes floatParticleZigZag {
    0%   { opacity:0;   transform: translateY(110vh) translateX(0)    rotate(0deg); }
    8%   { opacity:0.5; }
    20%  { transform: translateY(88vh)  translateX(40px)  rotate(45deg); }
    40%  { transform: translateY(65vh)  translateX(-35px) rotate(-30deg); }
    60%  { transform: translateY(42vh)  translateX(45px)  rotate(60deg); }
    80%  { transform: translateY(20vh)  translateX(-20px) rotate(-15deg); }
    92%  { opacity:0.45; }
    100% { opacity:0;   transform: translateY(-10vh) translateX(10px)  rotate(90deg); }
}

/* Pulse/breathe while floating up */
@keyframes floatParticlePulse {
    0%   { opacity:0;   transform: translateY(110vh) scale(0.5); }
    10%  { opacity:0.6; transform: translateY(95vh)  scale(1.2); }
    30%  { transform: translateY(70vh) scale(0.8); }
    50%  { transform: translateY(50vh) scale(1.3); }
    70%  { transform: translateY(30vh) scale(0.85); }
    90%  { opacity:0.5; transform: translateY(10vh) scale(1.1); }
    100% { opacity:0;   transform: translateY(-10vh) scale(0.6); }
}


/* ===== NAVBAR UPGRADES ===== */
.nav-profile-btn { display: flex; align-items: center; gap: 8px; }
.nav-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #FF6B8B, #FFB800);
    display: inline-flex; align-items: center; justify-content: center;
    color: white; font-size: .85rem; font-weight: 800;
}
.nav-avatar-lg {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #FF6B8B, #FFB800);
    display: inline-flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; font-weight: 800;
    flex-shrink: 0;
}
.dropdown-menu {
    border-radius: 18px !important;
    border: 1.5px solid #FFE0D0 !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12) !important;
    padding: 8px !important;
    animation: dropIn 0.25s ease both;
    min-width: 200px;
    z-index: 99999 !important; /* BUGFIX: dropdown harus di atas semua elemen termasuk navbar fixed */
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dropdown-item {
    border-radius: 10px !important;
    padding: 9px 14px !important;
    font-weight: 600;
    transition: all 0.2s ease !important;
    color: #5C3D2E !important;
}
.dropdown-item:hover { background: #FFF0E6 !important; transform: translateX(3px); }
.dropdown-item.text-danger { color: #dc3545 !important; }
.dropdown-item.text-danger:hover { background: #FFF0F0 !important; }
.dropdown-header { padding: 10px 14px 6px !important; }

/* ===== FOOTER UPGRADES ===== */
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: white;
}
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: .9rem; transition: all .3s ease;
    display: flex; align-items: center; gap: 6px;
}
.footer-links li a:hover { color: #FFB8B8; transform: translateX(4px); }
.footer-links li a i { font-size: .65rem; color: #FF8B8B; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px; font-size: .9rem;
    color: rgba(255,255,255,0.8);
}
.footer-contact li i { color: #FFB8B8; width: 18px; text-align: center; }
.footer-contact li a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color .3s; }
.footer-contact li a:hover { color: #FFB8B8; }

.footer-bottom {
    padding-top: 20px; margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: .85rem; margin: 0; }

/* Social links */
.social-links a.social-ig:hover  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-links a.social-tiktok:hover { background: #111; }
.social-links a.social-wa:hover  { background: #25D366; }

/* Admin button in footer */
.footer-admin-btn {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5) !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px; padding: 5px 16px;
    font-size: .78rem; font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}
.footer-admin-btn:hover {
    background: rgba(255,107,107,0.2);
    color: #FFB8B8 !important;
    border-color: rgba(255,107,107,0.4);
    transform: translateY(-2px);
}

/* ===== MENU PAGE BACK TO TOP ===== */
.back-to-top-fancy {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #FF6B8B 0%, #FFB800 50%, #FF6B6B 100%);
    background-size: 200% auto;
    color: white !important; border: none;
    padding: 14px 32px; border-radius: 60px;
    font-weight: 700; font-size: 1rem;
    cursor: pointer; text-decoration: none;
    transition: all .4s ease;
    box-shadow: 0 8px 25px rgba(255,107,107,0.35);
    animation: shimmer 2.5s linear infinite;
    position: relative; overflow: hidden;
}
.back-to-top-fancy::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shineSlide 2s ease infinite;
}
@keyframes shineSlide {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}
@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.back-to-top-fancy:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 35px rgba(255,107,107,0.5);
}
.back-to-top-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    animation: arrowBounce 1.2s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* ===== ULASAN PAGE UPGRADES ===== */
.ulasan-wrapper { padding: 40px 0 80px; }

.review-form-card {
    background: white; border-radius: 28px;
    padding: 38px;
    box-shadow: 0 10px 40px rgba(255,107,107,0.1);
    border: 2px solid #FFE6D6;
    animation: fadeInLeft 0.6s ease both;
    position: relative; overflow: hidden;
}
.review-form-card::after {
    content: '🍫';
    position: absolute; bottom: -10px; right: -10px;
    font-size: 5rem; opacity: 0.06;
    transform: rotate(-20deg);
}
.review-form-card h4 { font-family:'Fredoka',sans-serif; color:#5C3D2E; margin-bottom:24px; font-size:1.5rem; }

.review-card {
    background: white; border-radius: 22px;
    padding: 24px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1.5px solid #FFF0E6;
    transition: all .3s ease;
    animation: fadeInUp .5s ease both;
    position: relative; margin-bottom: 18px;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(255,107,107,0.12);
    border-color: #FFD6E0;
}
.review-card::before {
    content: '"';
    position: absolute; top: 6px; left: 18px;
    font-size: 60px; color: #FFB8B8;
    font-family: serif; opacity: 0.35; line-height: 1;
}
.review-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 3px solid white;
}
.review-name  { font-weight: 700; color: #5C3D2E; font-size: 1rem; }
.review-product { font-size: .82rem; color: #FF6B8B; margin-top: 2px; }
.review-text  { color: #555; line-height: 1.75; margin: 10px 0 0; font-size: .95rem; }
.review-stars { color: #FFB800; font-size: .95rem; }
.review-date  { font-size: .78rem; color: #bbb; margin-top: 6px; }
.review-empty { text-align: center; padding: 60px 0; }
.review-empty-emoji { font-size: 4rem; margin-bottom: 15px; animation: floatBob 2s ease-in-out infinite; }
.reviews-list { max-height: 650px; overflow-y: auto; padding-right: 4px; }
.reviews-list::-webkit-scrollbar { width: 4px; }
.reviews-list::-webkit-scrollbar-track { background: #fff0e6; border-radius: 4px; }
.reviews-list::-webkit-scrollbar-thumb { background: #FF6B8B; border-radius: 4px; }

/* review stats card pulse */
.review-stats-card {
    background: linear-gradient(135deg,#fff,#FFF9F5);
    border-radius: 22px;
    box-shadow: 0 6px 25px rgba(255,107,107,0.1);
    border: 2px solid #FFE6D6;
    padding: 28px; text-align: center;
    animation: fadeInLeft 0.7s ease 0.2s both;
}
.review-stats-card:hover { animation: pulseGlow 2s ease-in-out infinite; }
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 6px 25px rgba(255,107,107,0.1); }
    50%      { box-shadow: 0 10px 40px rgba(255,107,107,0.25); }
}

/* ===== BUKU TAMU UPGRADES ===== */
.buku-tamu-wrapper { padding: 40px 0 80px; }
.guestbook-form {
    background: white; border-radius: 28px;
    padding: 38px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 2px solid #FFE6D6;
    animation: fadeInLeft .6s ease both;
    position: relative; overflow: hidden;
}
.guestbook-form::after {
    content: '💌';
    position: absolute; bottom: -8px; right: -8px;
    font-size: 4.5rem; opacity: 0.07;
}
.guestbook-form h4 { font-family:'Fredoka',sans-serif; color:#5C3D2E; margin-bottom:24px; font-size:1.5rem; }

.guestbook-card {
    background: white; border-radius: 20px;
    padding: 22px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #FF6B6B;
    transition: all .3s ease;
    animation: fadeInUp .5s ease both;
    margin-bottom: 18px;
    position: relative; overflow: hidden;
}
.guestbook-card::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at top right, rgba(255,107,107,0.07), transparent 60%);
}
.guestbook-card:nth-child(2) { border-left-color: #88B04B; }
.guestbook-card:nth-child(3) { border-left-color: #AA82C8; }
.guestbook-card:nth-child(4) { border-left-color: #FFB800; }
.guestbook-card:nth-child(5) { border-left-color: #FF6B8B; }
.guestbook-card:nth-child(6) { border-left-color: #3DBEFF; }
.guestbook-card:hover { transform: translateX(8px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.guestbook-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 3px solid white;
}
.guestbook-name  { font-weight: 700; color: #5C3D2E; }
.guestbook-email { font-size: .82rem; color: #aaa; }
.guestbook-text  { color: #555; line-height: 1.7; font-size: .95rem; margin-top: 10px; }
.guestbook-date  { font-size: .78rem; color: #bbb; margin-top: 8px; }

/* ripple on submit button */
.btn-submit-form {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white; border: none;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; cursor: pointer;
    transition: all .3s ease; width: 100%;
    font-size: 1rem; position: relative; overflow: hidden;
}
.btn-submit-form::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width .5s, height .5s;
}
.btn-submit-form:active::after { width: 200px; height: 200px; }
.btn-submit-form:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,107,107,.4); }

/* page enter animations */
.page-enter        { animation: fadeInUp .6s ease both; }
.page-enter.delay-1 { animation-delay: .1s; }
.page-enter.delay-2 { animation-delay: .2s; }
.page-enter.delay-3 { animation-delay: .35s; }
.page-enter-zoom   { animation: zoomIn .5s ease both; }
@keyframes fadeInUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform: translateX(-24px); } to { opacity:1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity:0; transform: scale(.8); } to { opacity:1; transform: scale(1); } }
@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* confetti bits for hero */
.food-deco {
    position: absolute; font-size: 1.8rem;
    animation: foodFloat 4s ease-in-out infinite;
    pointer-events: none; user-select: none;
}
@keyframes foodFloat {
    0%,100% { transform: translateY(0) rotate(-5deg); opacity:.6; }
    50%      { transform: translateY(-16px) rotate(8deg); opacity:1; }
}


/* =====================================================
   MOBILE RESPONSIVE FIXES - Velisse Crepe
   ===================================================== */

/* ---- Ukuran font responsif ---- */
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.75rem !important; }
    .section-header h2 { font-size: 1.6rem !important; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn-hero,
    .hero-buttons .btn-outline-hero {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .typing-text { font-size: 0.95rem !important; min-height: 42px; }
}

/* ---- Container padding lebih lega di HP ---- */
@media (max-width: 575.98px) {
    .container, .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    /* Mencegah overflow horizontal */
    section, .hero-section, .page-hero {
        overflow-x: hidden !important;
    }
}

/* ---- Kartu produk mobile ---- */
@media (max-width: 575.98px) {
    .product-card, .story-card {
        margin-bottom: 16px;
    }
    .product-card img, .menu-card img {
        height: 180px !important;
        object-fit: cover;
    }
}

/* ---- Keranjang & checkout mobile ---- */
@media (max-width: 767.98px) {
    .cart-summary { position: static !important; margin-top: 20px; }
    .cart-item-img { width: 55px !important; height: 55px !important; }
    .success-card { padding: 28px 16px !important; }
    table.table { font-size: 0.88rem; }
    table.table td, table.table th { padding: 0.5rem 0.4rem; }
}

/* ---- Footer mobile ---- */
@media (max-width: 767.98px) {
    .footer-section .col-md-4 { text-align: center; }
    .footer-section .social-links { justify-content: center; }
    .footer-bottom { text-align: center !important; }
}

/* ---- Floating admin button: geser agar tidak tutup WA button ---- */
@media (max-width: 575.98px) {
    .admin-float-wrap { bottom: 80px !important; left: 16px !important; }
    .whatsapp-float {
        bottom: 16px !important;
        right: 16px !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 1.5rem !important;
    }
}

/* ---- Sembunyikan partikel di layar sangat kecil (hemat CPU) ---- */
@media (max-width: 480px) {
    .floating-particles { display: none !important; }
}

/* ---- Page hero mobile ---- */
@media (max-width: 575.98px) {
    .page-hero { padding: 80px 0 40px !important; }
    .page-hero h1 { font-size: 1.65rem !important; }
}

/* ---- Loader lebih kecil di mobile ---- */
@media (max-width: 575.98px) {
    .crepe-loader { width: 80px !important; height: 80px !important; }
    .crepe-loader .inner { font-size: 28px !important; }
    .loader-text { font-size: 1rem !important; letter-spacing: 2px !important; }
}

/* ---- Timeline mobile fix ---- */
@media (max-width: 575.98px) {
    .timeline::before { left: 20px; }
    .timeline-icon { left: 0 !important; transform: translateX(0) !important; }
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: calc(100% - 60px) !important;
        margin-left: 60px !important;
        text-align: left !important;
    }
}

/* ---- Mencegah overflow umum ---- */
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
