/* Menu Makanan Template Styles */
.sale-page {
    overflow-x: hidden;
}
.sale-page section {
    position: relative;
}

/* Elegant Gold Button */
.sale-page .btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--color-primary), #D4A843);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.sale-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.45);
}

/* Section Titles */
.sale-page .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Decorative divider */
.sale-page .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #D4A843);
    margin: 0 auto;
    border-radius: 2px;
}

/* Menu Card */
.sale-page .menu-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.sale-page .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Price Tag */
.sale-page .price-tag {
    display: inline-block;
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--color-primary), #D4A843);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Testimonial Card */
.sale-page .testi-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.sale-page .testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery Image */
.sale-page .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sale-page .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.sale-page .gallery-item img {
    transition: transform 0.5s;
}
.sale-page .gallery-item:hover img {
    transform: scale(1.08);
}

/* Spicy Badge */
.sale-page .badge-spicy {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    background: #FEE2E2;
    color: #DC2626;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Vegetarian Badge */
.sale-page .badge-veg {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    background: #DCFCE7;
    color: #16A34A;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Gradient Backgrounds */
.sale-page .bg-gradient-gold {
    background: linear-gradient(160deg, var(--color-secondary) 0%, #2a2a2a 50%, var(--color-secondary) 100%);
}
.sale-page .bg-warm {
    background: #FFFBF0;
}

/* Pulse Animation for CTA */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(184, 134, 11, 0); }
}
.sale-page .btn-pulse {
    animation: pulse-gold 2s infinite;
}

/* Category Header */
.sale-page .category-header {
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 12px;
}
.sale-page .category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #D4A843);
    border-radius: 2px;
}

/* FAQ Accordion */
.sale-page .faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Map Container */
.sale-page .map-container iframe {
    border-radius: 12px;
    border: none;
}
