:root {
    --cream-bg: #FFF7ED;
    --cream-light: #FEF3C7;
    --navy-blue: #FF6584;
    --gold-accent: #FACC15;
    --soft-pink: #FF6584;
    --primary-pink: #FF6584;
    --primary-pink-hover: #E0526F;
    --warm-brown: #78350F;
    --light-brown: #92400E;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 8px 30px rgba(180, 83, 9, 0.12);
    --shadow-hover: 0 15px 40px rgba(180, 83, 9, 0.18);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    /* Additional Pastel Colors */
    --pastel-pink: #FFD7D7;
    --pastel-blue: #D6E4FF;
    --pastel-green: #D8F3DC;
    --pastel-yellow: #FFF3CD;
    --pastel-purple: #E6CCFF;
    --pastel-peach: #FFE5D9;
    --pastel-mint: #D8F3E6;
    --pastel-lavender: #E6E6FA;
}


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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream-bg);
    color: var(--warm-brown);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy-blue);
}

.handwritten {
    font-family: 'Dancing Script', cursive;
    color: var(--light-brown);
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.oven-loader {
    position: relative;
    width: 120px;
    height: 80px;
}

.oven-door {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B45309, #D97706);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
    overflow: hidden;
}

.bread-loaf {
    position: absolute;
    width: 60px;
    height: 40px;
    background: #92400E;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bakeBread 2s infinite;
}

.heat-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heat-waves::before,
.heat-waves::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #F59E0B;
    animation: heatPulse 1.5s infinite;
}

.heat-waves::after {
    animation-delay: 0.5s;
}

.loader-text {
    margin-top: 30px;
    color: var(--warm-brown);
    font-size: 1.4rem;
    font-family: 'Dancing Script', cursive;
    animation: fadeText 2s ease-in-out infinite;
    letter-spacing: 1px;
}

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

@keyframes heatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes fadeText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive Preloader */
@media (max-width: 575.98px) {
    .loader-text {
        font-size: 1.2rem;
    }
    
    .oven-loader {
        width: 100px;
        height: 70px;
    }
}

/* ========== BACKGROUND ELEMENTS ========== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(253, 164, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
    z-index: -2;
}

.grain-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-accent);
    color: var(--warm-brown);
    transform: translateY(-5px);
}

/* Responsive Back to Top */
@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: #ffffff !important;
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(30, 58, 138, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.08);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--navy-blue) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .bakery-text {
    font-family: 'Dancing Script', cursive;
    color: var(--light-brown);
    font-size: 1.8rem;
    margin-left: 5px;
}

.nav-link {
    font-weight: 500;
    color: var(--warm-brown) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(254, 215, 170, 0.3);
    color: var(--navy-blue) !important;
}

.cart-icon {
    position: relative;
    color: var(--navy-blue);
    font-size: 1.4rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--gold-accent);
    color: var(--warm-brown);
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ===== NAVBAR MOBILE TOGGLE OPEN ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 18px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(180, 83, 9, 0.15);
    }

    /* Saat toggle DIBUKA */
    .navbar-collapse.show {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .nav-link {
        margin: 8px 0;
        text-align: center;
    }
}


/* ========== BADGES ========== */
.badge-container {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.badge i {
    margin-right: 8px;
}

.badge.bg-primary {
    background-color: var(--navy-blue) !important;
    color: white;
}

.badge.bg-warning {
    background-color: var(--gold-accent) !important;
    color: var(--warm-brown);
}

.badge.bg-primary-soft {
    background-color: rgba(30, 58, 138, 0.1) !important;
    color: var(--navy-blue);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.badge.bg-warning-soft {
    background-color: rgba(250, 204, 21, 0.15) !important;
    color: #B45309;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

/* Responsive Badges */
@media (max-width: 767.98px) {
    .badge-container {
        justify-content: center;
    }
    
    .badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.05) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-slider {
    height: 100vh;
    position: relative;
}

.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    transition: all 0.5s ease;
}

/* Background colors for each slide - Solid Colors (No Gradient) */
.slide-1 {
    background-color: var(--pastel-blue);
}

.slide-2 {
    background-color: var(--pastel-peach);
}

.slide-3 {
    background-color: var(--pastel-mint);
}

.slide-4 {
    background-color: var(--soft-pink); /* Keep soft pink from original */
}

/* Adjust text colors based on background */
/* Slide 1 - Pastel Blue */
.slide-1 .hero-content {
    color: var(--navy-blue);
}

.slide-1 .hero-title {
    color: var(--navy-blue);
}

.slide-1 .hero-subtitle {
    color: rgba(30, 58, 138, 0.9);
}

.slide-1 .handwritten {
    color: var(--warm-brown);
}

.slide-1 .hero-buttons .btn-primary {
    background: var(--navy-blue);
    color: white;
}

.slide-1 .btn-outline-light {
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.slide-1 .btn-outline-light:hover {
    background: var(--navy-blue);
    color: white;
}

/* Slide 2 - Pastel Peach */
.slide-2 .hero-content {
    color: var(--warm-brown);
}

.slide-2 .hero-title {
    color: var(--warm-brown);
}

.slide-2 .hero-subtitle {
    color: rgba(120, 53, 15, 0.9);
}

.slide-2 .handwritten {
    color: var(--navy-blue);
}

.slide-2 .hero-buttons .btn-primary {
    background: var(--warm-brown);
    color: white;
}

.slide-2 .btn-outline-light {
    color: var(--warm-brown);
    border-color: var(--warm-brown);
}

.slide-2 .btn-outline-light:hover {
    background: var(--warm-brown);
    color: white;
}

/* Slide 3 - Pastel Mint */
.slide-3 .hero-content {
    color: var(--light-brown);
}

.slide-3 .hero-title {
    color: var(--light-brown);
}

.slide-3 .hero-subtitle {
    color: rgba(146, 64, 14, 0.9);
}

.slide-3 .handwritten {
    color: var(--navy-blue);
}

.slide-3 .hero-buttons .btn-primary {
    background: var(--light-brown);
    color: white;
}

.slide-3 .btn-outline-light {
    color: var(--light-brown);
    border-color: var(--light-brown);
}

.slide-3 .btn-outline-light:hover {
    background: var(--light-brown);
    color: white;
}

/* Slide 4 - Soft Pink (Original) */
.slide-4 .hero-content {
    color: var(--navy-blue);
}

.slide-4 .hero-title {
    color: var(--navy-blue);
}

.slide-4 .hero-subtitle {
    color: rgba(30, 58, 138, 0.9);
}

.slide-4 .handwritten {
    color: var(--warm-brown);
}

.slide-4 .hero-buttons .btn-primary {
    background: var(--soft-pink);
    color: var(--navy-blue);
}

.slide-4 .btn-outline-light {
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.slide-4 .btn-outline-light:hover {
    background: var(--navy-blue);
    color: white;
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid currentColor;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    border: 8px solid white;
}

.hero-slide:hover .hero-image img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold-accent);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--warm-brown);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--navy-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--gold-accent);
    color: var(--warm-brown);
    border-color: var(--gold-accent);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

/* Dots Navigation */
.hero-dots-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-dots .owl-dot {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-dots .owl-dot.active {
    background: var(--gold-accent);
    width: 80px;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--light-brown);
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    border-radius: 1px;
}

.scroll-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--gold-accent), 
        transparent);
    animation: scrollDown 2s ease-in-out infinite;
    border-radius: 1px;
}

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

@keyframes scrollDown {
    0% {
        top: -30px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 40px;
        opacity: 0;
    }
}

/* ========== RESPONSIVE FIXES ========== */

/* Tablet Landscape & Small Desktops */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 95%;
    }
    
    .hero-content {
        padding: 35px;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 1.05rem;
    }
    
    .hero-image img {
        border: 6px solid white;
    }
}

/* Tablet Portrait */
@media (max-width: 991.98px) {
    .hero-carousel {
        min-height: auto;
    }
    
    .hero-slider,
    .hero-slide {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: none;
        padding: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .hero-image {
        animation: none;
    }
    
    .hero-image img {
        transform: perspective(1000px) rotateY(0deg);
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border: 4px solid white;
    }
    
    .hero-image-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .scroll-indicator {
        bottom: 90px;
        padding: 8px 16px;
    }
    
    .scroll-text {
        font-size: 0.85rem;
    }
    
    .scroll-line {
        height: 35px;
    }
}

/* Mobile Landscape */
@media (max-width: 767.98px) {
    .hero-slide {
        padding: 120px 0 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 90%;
        border: 3px solid white;
    }
    
    .hero-image-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
        bottom: -12px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-nav-prev {
        left: 10px;
    }
    
    .hero-nav-next {
        right: 10px;
    }
    
    .hero-dots-container {
        bottom: 30px;
    }
    
    .hero-dots .owl-dot {
        width: 35px;
        height: 5px;
    }
    
    .hero-dots .owl-dot.active {
        width: 60px;
    }
    
    .scroll-indicator {
        bottom: 70px;
        padding: 6px 14px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    .scroll-animation {
        height: 25px;
    }
}

/* Mobile Portrait */
@media (max-width: 575.98px) {
    .hero-slide {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-content {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 16px;
    }
    
    .badge-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .badge-container .badge {
        padding: 8px 15px;
        font-size: 0.8rem;
        width: 100%;
        margin: 0 0 5px 0 !important;
        display: flex;
        justify-content: center;
    }
    
    .badge-container .badge.me-2 {
        margin-right: 0 !important;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-image img {
        max-width: 95%;
        border-radius: 15px;
    }
    
    .hero-image-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
        bottom: -10px;
        letter-spacing: 0.5px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-dots {
        gap: 10px;
    }
    
    .hero-dots .owl-dot {
        width: 25px;
        height: 4px;
    }
    
    .hero-dots .owl-dot.active {
        width: 40px;
    }
    
    .scroll-indicator {
        bottom: 60px;
        padding: 5px 12px;
        display: none; /* Hide on very small screens to avoid clutter */
    }
}

/* Very Small Mobile Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 18px 12px;
    }
    
    .hero-buttons .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn i {
        font-size: 0.9em;
        margin-right: 5px;
    }
    
    .hero-image-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 35px;
        height: 35px;
    }
}

/* Height-based adjustments for landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slide {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-content {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
    }
    
    .hero-image img {
        max-height: 250px;
        width: auto;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Fix for devices with notches */
@supports (padding: max(0px)) {
    .hero-slide {
        padding-top: max(100px, env(safe-area-inset-top) + 80px);
        padding-bottom: max(60px, env(safe-area-inset-bottom) + 40px);
    }
}

/* Prevent content overflow on very small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn span {
        display: none;
    }
    
    .hero-buttons .btn i {
        margin-right: 0;
        font-size: 1.1em;
    }
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--navy-blue), #2D4F9C);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.btn-outline-brown {
    border: 2px solid var(--light-brown);
    color: var(--light-brown);
    background: transparent;
}

.btn-outline-brown:hover {
    background-color: var(--light-brown);
    color: white;
    transform: translateY(-3px);
}

/* ========== FEATURED PRODUCTS CAROUSEL ========== */
.featured-products {
    padding: 80px 0;
    background-color: white;
}

.featured-carousel .owl-stage {
    padding: 20px 0;
}

.featured-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 0 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 215, 170, 0.5);
    overflow: hidden;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.featured-item img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.1);
}

.featured-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 10px;
}

.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream-light) !important;
    color: var(--navy-blue) !important;
    margin: 0 10px;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--navy-blue) !important;
    color: white !important;
    transform: scale(1.1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cream-light) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--navy-blue) !important;
    transform: scale(1.2);
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--navy-blue), var(--soft-pink));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-brown);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Responsive Section Titles */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 100px 0;
    background-color: var(--cream-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(254, 215, 170, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--soft-pink);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(253, 164, 175, 0.3);
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--cream-light);
    position: relative;
}

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

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

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(253, 164, 175, 0.1));
    z-index: 1;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.product-desc {
    color: var(--light-brown);
    margin-bottom: 15px;
    font-size: 0.95rem;
    min-height: 60px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(120, 53, 15, 0.2);
}

.product-weight {
    font-weight: 500;
    color: var(--light-brown);
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    font-family: 'Playfair Display', serif;
}

.product-price::before {
    content: '$ ';
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cream-light);
    border: 2px solid rgba(120, 53, 15, 0.2);
    color: var(--warm-brown);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--warm-brown);
}

.qty-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-blue);
    min-width: 40px;
    text-align: center;
}

.add-to-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--navy-blue), #2D4F9C);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #2D4F9C, var(--navy-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Responsive Products Section */
@media (max-width: 767.98px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .product-card {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.experience-years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    color: var(--light-brown);
    margin-top: 5px;
}

.about-content {
    padding-left: 50px;
}

.about-text {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--light-brown);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 100px;
    padding: 20px;
    background: var(--cream-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(254, 215, 170, 0.5);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive About Section */
@media (max-width: 1199.98px) {
    .about-content {
        padding-left: 30px;
    }
}

@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .about-image img {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .about-stats {
        justify-content: center;
    }
    
    .about-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .about-image img {
        height: 300px;
    }
    
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px;
        min-width: 100px;
    }
    
    .experience-years {
        font-size: 2rem;
    }
}

/* ========== CATERING SECTION ========== */
.catering-section {
    background-color: var(--cream-bg);
    padding: 100px 0;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    box-shadow: inset 0 0 0 1px rgba(254, 215, 170, 0.5);
}

.catering-card {
    background: linear-gradient(135deg, var(--cream-light), #FEF3C7);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(250, 204, 21, 0.3);
    transition: all 0.3s ease;
}

.catering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.catering-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--navy-blue);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.catering-card:hover .catering-icon {
    background: var(--navy-blue);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.catering-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.catering-desc {
    color: var(--light-brown);
    margin-bottom: 25px;
}

/* Responsive Catering Section */
@media (max-width: 767.98px) {
    .catering-section {
        padding: 60px 0;
    }
    
    .catering-card {
        padding: 30px;
    }
    
    .catering-title {
        font-size: 1.5rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

.testimonials-carousel .owl-stage {
    padding: 20px 0;
}

.testimonial-item {
    padding: 20px;
    outline: none;
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 215, 170, 0.5);
    position: relative;
    margin: 10px 0;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(254, 215, 170, 0.5);
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--gold-accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--warm-brown);
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(254, 215, 170, 0.5);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-color: var(--cream-light);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-brown);
    font-weight: 600;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--navy-blue);
    font-weight: 600;
}

.author-info .position {
    font-size: 0.95rem;
    color: var(--light-brown);
    font-weight: 500;
}

/* Responsive Testimonials */
@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========== SIMPLE MULTI DIRECTION GALLERY ========== */
.gallery-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF7ED 100%);
    position: relative;
    overflow: hidden;
}

/* Container for each row */
.gallery-row-swiper-container {
    margin: 0;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

/* Row 1 background - subtle gradient */
.gallery-row-1 {
    background: linear-gradient(90deg, 
        rgba(214, 228, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(214, 228, 255, 0.3) 100%);
}

/* Row 2 background - different subtle gradient */
.gallery-row-2 {
    background: linear-gradient(90deg, 
        rgba(255, 229, 217, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 229, 217, 0.3) 100%);
}

/* Swiper container */
.gallery-row-swiper {
    width: 100%;
    height: 200px;
}

/* Slide styling */
.gallery-row-slide {
    width: 350px !important;
    height: 200px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0;
    opacity: 0.9;
}

/* Remove border, shadow, and make images closer */
.gallery-row-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.95);
}

/* Hover effects */
.gallery-row-slide:hover .gallery-row-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Subtle overlay on hover */
.gallery-row-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-row-slide:hover::before {
    opacity: 1;
}

/* Active slide indicator */
.gallery-row-slide.swiper-slide-active {
    opacity: 1;
}

/* Loading animation */
.gallery-row-image.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .gallery-row-swiper {
        height: 180px;
    }
    
    .gallery-row-slide {
        width: 300px !important;
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .gallery-section {
        padding: 40px 0 30px;
    }
    
    .gallery-row-swiper {
        height: 160px;
    }
    
    .gallery-row-slide {
        width: 250px !important;
        height: 160px;
    }
}

@media (max-width: 767.98px) {
    .gallery-row-swiper {
        height: 140px;
    }
    
    .gallery-row-slide {
        width: 200px !important;
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .gallery-section {
        padding: 30px 0 20px;
    }
    
    .gallery-row-swiper {
        height: 120px;
    }
    
    .gallery-row-slide {
        width: 180px !important;
        height: 120px;
    }
}

/* Continuous scroll effect */
.gallery-row-swiper-container {
    mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

/* Smooth transition between slides */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-form .form-label {
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form .form-control {
    background: var(--cream-light);
    border: 2px solid rgba(254, 215, 170, 0.5);
    color: var(--warm-brown);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: white;
    border-color: var(--navy-blue);
    color: var(--warm-brown);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: rgba(66, 32, 6, 0.5);
}

.contact-info {
    padding-left: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--cream-light);
    border: 2px solid rgba(254, 215, 170, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--navy-blue);
    color: white;
    transform: scale(1.1);
}

.info-content h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
    font-weight: 600;
}

.info-content p {
    color: var(--light-brown);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========== MAP SECTION ========== */
.map-section {
    margin-top: 50px;
}

.map-section h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy-blue);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.map-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--navy-blue), var(--gold-accent));
    border-radius: 2px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(254, 215, 170, 0.3);
    position: relative;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

.map-info {
    background: var(--cream-light);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(254, 215, 170, 0.5);
    margin-top: 15px;
}

.map-info .text-muted {
    font-size: 0.9rem;
    color: var(--light-brown) !important;
}

.map-info .btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE CONTACT SECTION ========== */

/* Desktop Large */
@media (max-width: 1399.98px) {
    .contact-info {
        padding-left: 40px;
    }
}

/* Desktop */
@media (max-width: 1199.98px) {
    .contact-section {
        padding: 90px 0;
    }
    
    .contact-info {
        padding-left: 30px;
    }
    
    .map-section {
        margin-top: 40px;
    }
    
    .map-container iframe {
        height: 380px;
    }
}

/* Tablet Landscape */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info {
        padding-left: 0;
        padding-top: 50px;
        margin-top: 40px;
        border-top: 1px solid rgba(254, 215, 170, 0.5);
    }
    
    .info-item {
        margin-bottom: 30px;
    }
    
    .info-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .map-section {
        margin-top: 40px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Tablet Portrait */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-content h5 {
        font-size: 1.15rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    .contact-form .form-control {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .map-section {
        margin-top: 35px;
    }
    
    .map-section h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .map-info .text-muted {
        text-align: center;
    }
}

/* Mobile Landscape */
@media (max-width: 575.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin: 0 auto;
    }
    
    .info-content {
        width: 100%;
    }
    
    .info-content h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .info-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .contact-form .form-control {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .map-section {
        margin-top: 30px;
    }
    
    .map-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-info {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .map-info .text-muted {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .map-info .btn-sm {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .info-content h5 {
        font-size: 1.05rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .contact-form .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .contact-form .form-label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .map-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .map-container iframe {
        height: 220px;
    }
    
    .map-info {
        padding: 10px 12px;
    }
    
    .map-info .text-muted {
        font-size: 0.8rem;
    }
    
    .map-info .btn-sm {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Height-based adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .contact-section {
        padding: 60px 0;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
}

/* Fix for safe areas on modern devices */
@supports (padding: max(0px)) {
    .contact-section {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .map-container {
        margin-left: max(-20px, -env(safe-area-inset-left));
        margin-right: max(-20px, -env(safe-area-inset-right));
        border-radius: 0;
    }
    
    .map-container iframe {
        border-radius: 0;
    }
}

/* Improve form spacing on mobile */
@media (max-width: 767.98px) {
    .contact-form .form-group.mb-4 {
        margin-bottom: 20px !important;
    }
    
    .contact-form .row {
        margin-bottom: 0;
    }
    
    .contact-form .row > [class*="col-"] {
        margin-bottom: 20px;
    }
}

/* ========== MAP SECTION ========== */
.map-container {
    position: relative;
    border: 1px solid rgba(254, 215, 170, 0.3);
}

.map-container iframe {
    display: block;
}

.map-info {
    background: var(--cream-light);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(254, 215, 170, 0.5);
}

.map-section h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.map-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--navy-blue), var(--gold-accent));
    border-radius: 2px;
}

/* Responsive Map */
@media (max-width: 991.98px) {
    .map-section {
        margin-top: 40px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .map-container iframe {
        height: 250px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--navy-blue), #1E40AF);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-brand .bakery-text {
    font-family: 'Dancing Script', cursive;
    color: var(--gold-accent);
    font-size: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 350px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold-accent);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border-radius: 12px 0 0 12px;
    flex-grow: 1;
}

.subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-accent);
    color: white;
    box-shadow: none;
}

.subscribe-form .btn {
    border-radius: 0 12px 12px 0;
    padding: 15px 25px;
    font-size: 1.3rem;
    background: var(--gold-accent);
    color: var(--warm-brown);
    border: none;
}

.subscribe-form .btn:hover {
    background: #FDE68A;
    transform: none;
}

.payment-methods h6 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-accent);
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-bottom .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-brand {
        font-size: 1.8rem;
    }
    
    .footer-brand .bakery-text {
        font-size: 1.6rem;
    }
}

/* ========== CART MODAL ========== */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 2px solid var(--cream-light);
    background: var(--cream-bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
    color: var(--navy-blue);
    font-weight: 600;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(254, 215, 170, 0.3);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h6 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.cart-item-price {
    color: var(--navy-blue);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream-light);
    border: 1px solid rgba(120, 53, 15, 0.2);
    color: var(--warm-brown);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty span {
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    color: var(--soft-pink);
    background: none;
    border: none;
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
}

.cart-total {
    font-size: 1.5rem;
    color: var(--navy-blue);
    font-weight: 700;
}