:root {
    --mauve: #7C3AED;
    --rose-gold: #E8B4A4;
    --velvet-dark: #2D1B3F;
    --cream-silk: #FEF5E7;
    --charcoal: #1A1A2E;
    --gradient-velvet: conic-gradient(from 0deg at 50% 50%, #8B5CF6 0deg, #EC4899 90deg, #F59E0B 180deg, #8B5CF6 270deg, #EC4899 360deg);
    --shadow-3d: 0 20px 40px rgba(0,0,0,0.15);
    --radius-soft: 24px;
    --transition-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, var(--cream-silk) 0%, #F3E8FF 100%);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 120px;
}

/*.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    background: rgba(254, 245, 231, 0.95);
    backdrop-filter: blur(25px) saturate(120%);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: var(--shadow-3d);
    transition: height 0.4s var(--transition-ease);
}*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;

    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(254,245,231,0.98) 0%,
        rgba(253,236,200,0.94) 100%
    );

    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);

    border-bottom: 1px solid rgba(227,176,75,0.35);
    box-shadow: 0 12px 40px rgba(59,36,22,0.18);

    transition: box-shadow 0.35s ease, background 0.35s ease;
}

/* Allow clicks to pass through header background */
.header {
  pointer-events: none;
}

/* Re-enable clicks ONLY for header content */
.header * {
  pointer-events: auto;
}



/*
.header[data-scroll-container] {
    will-change: transform;
}



.contact-orb {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1001;
}

.orb-link {
    display: block;
    width: 62px;
    height: 68px;
    background: var(--gradient-velvet);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.4s var(--transition-ease);
    position: relative;
    overflow: hidden;
}





.orb-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-velvet);
    opacity: 0.7;
    filter: blur(8px);
    z-index: -1;
    transition: all 0.4s var(--transition-ease);
}

.orb-link:hover {
    transform: scale(1.15) translateY(-8px) rotate(5deg);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.5);
}

.orb-link i {
    font-size: 16px;
    margin-bottom: 2px;
} 
    */

/* Header Canvas */


.header-canvas {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.navbar {
     width: 100%;
    display: flex;
    align-items: center;
    position: relative;   
    min-height: 120px;    
}

.nav-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.nav-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(227,176,75,0.35);
}



.logo-link {
    display: block;
    position: relative;
}

.logo {
    height: 128px;
    width: auto;
    filter: drop-shadow(0 8px 25px rgba(232, 180, 164, 0.3));
    transition: all 0.5s var(--transition-ease);
    will-change: transform;
    border-radius: 22px;
}

.logo-link:hover .logo {
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) scale(1.08);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    visibility: hidden;
}

.nav-primary {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
}

.nav-item {
    position: relative;
    color: var(--velvet-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--transition-ease);
    cursor: pointer;
}

.nav-item::before {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-velvet);
    border-radius: 1px;
    transition: width 0.4s var(--transition-ease);
}

.nav-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--mauve);
    transform: translateY(-2px);
}

.nav-right {
    position: absolute;     
    right: 0;              
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}
.action-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-secondary, .btn-primary {
    padding: 12px 28px;
    border-radius: var(--radius-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s var(--transition-ease);
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    background: transparent;
    color: var(--velvet-dark);
    border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-3d);
}

.btn-primary {
    background: linear-gradient(135deg, var(--mauve) 0%, #A855F7 100%);
    color: white;
    box-shadow: var(--shadow-3d);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    transition: var(--transition-ease);
}

.menu-toggle:hover {
    background: rgba(232, 180, 164, 0.2);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--velvet-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Demo Hero */
.demo-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--velvet-dark);
    margin-bottom: 24px;
    position: relative;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 400px;
    font-weight: 300;
}

.hero-visual {
    position: relative;
}

.hero-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--rose-gold), #FBBF24);
    border-radius: var(--radius-soft);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: -20px;
    bottom: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: inherit;
    backdrop-filter: blur(10px);
}

/* Mobile */
@media (max-width: 1024px) {
    .nav-primary { gap: 40px; }
}

@media (max-width: 768px) {
    body { padding-top: 100px; }
    .header { height: 100px; }
    
    .contact-orb { top: 12px; right: 20px; }
    .orb-link { width: 52px; height: 52px; font-size: 10px; }
    
    .navbar {
        gap: 20px;
        padding: 0 20px;
    }
    
    .nav-center { display: none; }
    .menu-toggle { display: flex; }
    
    .action-buttons {
        position: fixed;
        top: 100px;
        right: 20px;
        flex-direction: column;
        gap: 12px;
        background: var(--white);
        padding: 24px;
        border-radius: var(--radius-soft);
        box-shadow: var(--shadow-3d);
        transform: translateX(100%);
        transition: var(--transition-ease);
    }
    
    .action-buttons.active {
        transform: translateX(0);
    }
    
    .hero-slice {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-3d);
    height: 500px;
    min-height: 400px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) contrast(1.15) saturate(1.2);
    transition: filter 0.6s var(--transition-ease);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(45, 27, 63, 0.4) 0%, 
        rgba(124, 58, 237, 0.2) 50%, 
        transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

.hero-visual:hover .hero-video {
    filter: brightness(0.9) contrast(1.25) saturate(1.3);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-visual {
        grid-column: 1 / -1;
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-video {
        object-position: center;
    }
}

/* Performance: Pause on visibility change */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        filter: none !important;
    }
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-3d);
    height: 500px;
    min-height: 400px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(45, 27, 63, 0.45) 0%,
        rgba(124, 58, 237, 0.2) 40%,
        transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* Order button on video */
.hero-order-btn {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #FBBF24 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    z-index: 3;
}

.hero-order-btn i {
    font-size: 18px;
}

.hero-order-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    filter: brightness(1.05);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero-visual {
        height: 60vh;
        min-height: 360px;
    }

    .hero-order-btn {
        bottom: 24px;
        padding: 12px 26px;
        font-size: 14px;
    }
}

.about-section {
    padding: 140px 0 120px; /* Extra top padding for longer content */
    background: linear-gradient(180deg, #FEF5E7 0%, #F8F1E9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 480px; /* Fixed image width, flexible text */
    gap: 80px;
    align-items: start; /* Top-aligned for balance */
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px; /* More breathing room */
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--velvet-dark);
    margin-bottom: 16px;
    position: relative;
    max-width: 400px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-velvet);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--mauve);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Enhanced text styling for longer content */
.about-text {
    font-size: 17px;
    line-height: 1.85;
    color: #4A5568;
    margin-bottom: 72px; /* More space before stats */
}

.about-text p {
    margin-bottom: 28px;
    hyphens: auto;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-soft);
    transition: all 0.4s var(--transition-ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-velvet);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    font-weight: 700;
    color: var(--mauve);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--velvet-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Perfectly balanced image */
.about-image {
    position: relative;
    height: 600px; /* Increased for text balance */
    display: flex;
    align-items: flex-start;
}

.image-container {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s var(--transition-ease);
}

.image-container:hover {
    transform: translateY(-8px);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on upper store area */
    transition: transform 0.8s var(--transition-ease);
    will-change: transform;
}

.image-container:hover .about-img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(124,58,237,0.15) 0%, 
        rgba(232,180,164,0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Tablet & Mobile - Perfect balance */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: left;
    }
    
    .about-image {
        order: -1;
        height: 450px;
        align-self: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 100px 0 80px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 56px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 80px 0 60px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-image {
        height: 280px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .stat-card,
    .image-container,
    .about-img {
        transition: none !important;
        transform: none !important;
    }
}



.testimonial-slider-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fdf2e8 0%, #f9e4d4 50%, #fce7d2 100%);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-family: 'Playfair Display', serif;
    color: #8b4513;
    font-weight: 400;
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #f4d03f);
    border-radius: 2px;
}

.slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 420px;
}

.slider-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2.5rem;
    padding: 0 8rem;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-item {
    flex: 0 0 360px;
    height: 380px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0.5;
    transform: translateY(30px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-item.active {
    opacity: 1;
    transform: translateY(0) scale(1.02);
}

.slider-item .testimonial-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 4rem 2.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #5d4037;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b4513;
}

.author-role {
    font-size: 0.95rem;
    color: #a67c00;
    font-weight: 400;
}

/* Navigation Dots */
.slider-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #f4d03f;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    color: #8b4513;
}

.nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.nav-prev { left: -20px; }
.nav-next { right: -20px; }

.nav-arrow::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
}

.nav-prev::before {
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
    margin-left: 3px;
}

.nav-next::before {
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    margin-right: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
    .slider-track {
        gap: 2rem;
        padding: 0 6rem;
    }
    
    .slider-item {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .slider-track {
        padding: 0 4rem;
        gap: 1.5rem;
    }
    
    .slider-item {
        flex: 0 0 280px;
        height: 340px;
    }
    
    .nav-arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-section {
        padding: 4rem 1rem;
    }
    
    .slider-track {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }
    
    .slider-item {
        flex: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .nav-arrow {
        display: none;
    }
}

/* Catering Section */
.catering-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #fffaf0 0%, #fef5e7 50%, #fdf2e8 100%);
    overflow: hidden;
}

.catering-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.catering-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 25px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.catering-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.catering-image-wrapper:hover .catering-image {
    transform: scale(1.05);
}

.catering-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.catering-content {
    padding-right: 4rem;
}

.catering-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d2691e, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.catering-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c42, #ffd700);
    border-radius: 2px;
}

.catering-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6b4c2f;
    margin-bottom: 3rem;
    font-weight: 300;
}

.catering-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(255, 140, 66, 0.3);
}

.feature-text {
    font-size: 1.1rem;
    color: #5d4037;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(255, 140, 66, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Floating Elements */
.floating-tray {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 200px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150"><rect fill="%23ffcc80" rx="20" x="20" y="20" width="160" height="110"/></svg>');
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-bread {
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 120px;
    height: 80px;
    background: radial-gradient(ellipse, #d2b48c 0%, #deb887 100%);
    border-radius: 50% 50% 40% 40%;
    animation: float 7s ease-in-out infinite reverse;
    opacity: 0.7;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .catering-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .catering-content {
        padding-right: 0;
        order: 2;
    }
    
    .catering-image-wrapper {
        order: 1;
    }
    
    .catering-features {
        grid-template-columns: 1fr;
    }
    
    .floating-tray,
    .floating-bread {
        display: none;
    }
}

@media (max-width: 480px) {
    .catering-section {
        padding: 4rem 1rem;
    }
    
    .catering-image {
        height: 300px;
    }
}


/* Google Maps Location Section */
.location-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.map-wrapper {
    position: relative;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 25px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

.map-marker-popup {
    font-family: 'Inter', sans-serif;
}

.location-content {
    padding-left: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 12px 24px rgba(255, 140, 66, 0.3);
}

.location-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d2691e, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.location-address {
    font-size: 1.3rem;
    color: #6b4c2f;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-details {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5d4037;
    margin-bottom: 2.5rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.location-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2.8rem;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.4);
    text-decoration: none;
}

.directions-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(255, 140, 66, 0.5);
}

.directions-button i {
    font-size: 1.3rem;
}

/* Info Window Styles */
.gm-style .gm-style-iw {
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(20px) !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-c {
    padding: 2rem !important;
    max-width: 300px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .location-content {
        padding-left: 0;
        order: 2;
    }
    
    .map-wrapper {
        order: 1;
        height: 400px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 4rem 1rem;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

.contact-card{
  position:absolute;
  left:5%;
  top:50%;
  transform:translateY(-50%);
  width:380px;
  background:#fffaf4;
  padding:42px 38px;
  border-radius:20px;
  box-shadow:0 40px 90px rgba(0,0,0,.18);
  z-index:10;
  font-family:Poppins,system-ui,sans-serif;
}

.contact-card h3{
  font-size:24px;
  font-weight:600;
  color:#2e2e2e;
  margin-bottom:10px;
}

.contact-subtext{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-bottom:30px;
}

/* Floating fields */
.field{
  position:relative;
  margin-bottom:22px;
}

.field input,
.field textarea{
  width:100%;
  padding:16px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  background:#fff;
  font-size:14px;
  outline:none;
}

.field textarea{
  resize:none;
  height:120px;
}

.field label{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  background:#fffaf4;
  padding:0 6px;
  color:#888;
  font-size:13px;
  pointer-events:none;
  transition:.25s ease;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label{
  top:-8px;
  font-size:12px;
  color:#c08b3c;
}

/* Button */
.contact-card button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:50px;
  background:linear-gradient(135deg,#c08b3c,#e0b15c);
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}

.contact-card button:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(192,139,60,.4);
}

/* Success */
.contact-success{
  display:none;
  text-align:center;
  animation:fadeUp .5s ease;
}

.success-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#c08b3c;
  color:#fff;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
}

.contact-success h4{
  font-size:20px;
  margin-bottom:8px;
}

.contact-success p{
  font-size:14px;
  color:#555;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

/* Responsive */
@media(max-width:900px){
  .contact-card{
    position:relative;
    transform:none;
    left:auto;
    top:auto;
    margin:0 auto 40px;
    width:100%;
    max-width:420px;
  }
}



.main-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
}

.footer-top { padding: 4rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 3fr 1fr 1fr 2fr; gap: 4rem; }

.footer-brand img { max-width: 180px; filter: drop-shadow(0 4px 12px rgba(255,140,66,0.3)); margin-bottom: 1.5rem; }
.footer-brand p { opacity: 0.85; line-height: 1.6; margin-bottom: 2rem; }

.social-links { display: flex; gap: 1rem; }
.social-btn { 
    width: 52px; height: 52px; border-radius: 16px; 
    background: rgba(255,255,255,0.12); color: #fff; 
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.social-btn:hover { 
    background: linear-gradient(135deg, #ff8c42, #ff6b35); 
    transform: translateY(-4px) scale(1.05);
}

.footer-column h4 { 
    font-size: 1.15rem; font-weight: 700; color: #fff; 
    margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 1rem; opacity: 0.9; }
.footer-column li strong { color: #ff8c42; }

.footer-column a { 
    display: block; color: inherit; text-decoration: none; 
    padding: 0.5rem 0; opacity: 0.9; transition: opacity 0.3s;
}
.footer-column a:hover { opacity: 1; color: #ff8c42; }

.footer-bottom { 
    background: #080808; padding: 1.5rem 0; 
    border-top: 1px solid rgba(255,255,255,0.04);
}

.bottom-grid { 
    display: flex; justify-content: space-between; align-items: center; 
    font-size: 0.9rem; opacity: 0.7;
}

.partners { display: flex; align-items: center; gap: 1rem; }
.partners img { height: 24px; opacity: 0.85; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .bottom-grid { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Container utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }



/* get started */


.cta-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    background: white;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.3);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-toggle.active + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #FF3366, #FF6B9D);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255,51,102,0.08);
    color: var(--strawberry-red, #FF3366);
    padding-left: 2rem;
    transform: translateX(8px);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item i {
    font-size: 1.2rem;
    width: 20px;
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 220px;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    .dropdown-toggle.active + .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}


.nav-center {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212,165,116,0.1);
}

.search-btn {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover { color: #d4a574; }

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.suggestions-list.show {
    opacity: 1;
    visibility: visible;
}

.suggestion-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #f8f9fa;
}

.suggestion-highlight {
    background: #ffeb3b;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 500;
}

.nav-primary {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: center;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover { color: #d4a574; }

@media (max-width: 768px) {
    .nav-primary { flex-wrap: wrap; gap: 1rem; }
    .search-input { font-size: 16px; /* Prevents zoom on iOS */ }
}


.testimonials-chat {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244,67,54,0.3), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(244,67,54,0.15),
        0 8px 25px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(244,67,54,0.25),
        0 12px 35px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: #ff9800;
    font-size: 1.2rem;
    margin-right: auto;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8bbd9;
}

.testimonial-body {
    margin-bottom: 1.5rem;
}

.testimonial-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.customer-name {
    font-weight: 600;
    color: #d81b60;
}

.order-date {
    background: #f8bbd9;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .testimonials-chat {
        padding: 3rem 1rem;
    }
}


.testimonial-slider-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 60px 0 !important;
  background: linear-gradient(135deg, #ff69b4 0%, #ffc0cb 100%) !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  box-sizing: border-box !important;
}

.slider-container {
  width: 100% !important;
  max-width: none !important;
  height: 500px !important;
  margin: 0 !important;
  padding: 0 60px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.slides-wrapper {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-shrink: 0 !important;
}

.slide {
  flex: 0 0 33.333% !important;
  padding: 0 10px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.testimonial-card {
  width: 100% !important;
  height: 420px !important;
  padding: 30px 25px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative !important;
  border: 1px solid rgba(255,105,180,0.2) !important;
}

.nav-prev, .nav-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.9) !important;
  border: 2px solid #ff69b4 !important;
  font-size: 22px !important;
  font-weight: bold !important;
  z-index: 20 !important;
  box-shadow: 0 10px 25px rgba(255,105,180,0.3) !important;
  transition: all 0.3s ease !important;
}

.nav-prev {
  left: 20px !important;
}

.nav-next {
  right: 20px !important;
}

.nav-prev:hover, .nav-next:hover {
  background: #ff69b4 !important;
  color: white !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 15px 35px rgba(255,105,180,0.5) !important;
}

.pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 12px !important;
  z-index: 15 !important;
}

.pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.7) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

.pagination-bullet.active {
  background: #ff69b4 !important;
  transform: scale(1.3) !important;
  box-shadow: 0 4px 15px rgba(255,105,180,0.4) !important;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .slide { flex: 0 0 50% !important; } /* 2 cards */
}

@media (max-width: 768px) {
  .testimonial-slider-section { padding: 40px 0 !important; }
  .slider-container { 
    height: 450px !important; 
    padding: 0 40px !important; 
  }
  .slide { flex: 0 0 100% !important; } /* 1 card */
  .testimonial-card { 
    height: 380px !important; 
    padding: 25px 20px !important; 
  }
  .nav-prev, .nav-next { 
    width: 50px !important; 
    height: 50px !important; 
    font-size: 18px !important; 
  }
  .nav-prev { left: 10px !important; }
  .nav-next { right: 10px !important; }
}

@media (max-width: 480px) {
  .slider-container { padding: 0 30px !important; }
  .nav-prev, .nav-next { width: 45px !important; height: 45px !important; }
}


/* product_list.html*/

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    background: linear-gradient(135deg, #fff8e7 0%, #f7e1a1 100%); 
    min-height: 100vh; 
    padding: 2rem; 
}
.plp-product-list { max-width: 1400px; margin: 0 auto; }
.plp-product-list h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    color: #c25429; 
    margin-bottom: 3rem; 
    font-weight: 600; 
}
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem; 
}
.product-card {
    background: rgba(247, 225, 161, 0.4); 
    backdrop-filter: blur(20px); 
    border-radius: 24px; 
    padding: 1.5rem;
    border: 1px solid rgba(214, 124, 46, 0.3); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; 
    overflow: hidden;
}
.product-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 4px; 
    background: linear-gradient(90deg, #f2b95f, #d67c2e); 
}
.product-card:hover {
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 32px 64px rgba(242, 185, 95, 0.4);
}
.product-media { margin-bottom: 1rem; }
.product-media img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    border-radius: 20px; 
}
.product-title { 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #8b4513; 
    margin-bottom: 0.5rem; 
}
.product-short-description { 
    color: #d2691e; 
    font-size: 0.95rem; 
    line-height: 1.5; 
    margin-bottom: 1rem; 
}
.product-price { 
    font-size: 1.75rem; 
    font-weight: 700; 
    color: #f2b95f; 
    margin-bottom: 1rem; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.quantity-input { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
}
.quantity-input input { 
    width: 60px; 
    height: 44px; 
    border: 1px solid rgba(214, 124, 46, 0.4); 
    border-radius: 12px; 
    text-align: center; 
    font-size: 1.1rem; 
    background: rgba(255, 248, 231, 0.9); 
}
.qty-minus, .qty-plus { 
    width: 44px; 
    height: 44px; 
    border: none; 
    background: linear-gradient(135deg, #f2b95f, #d67c2e); 
    color: #8b4513; 
    border-radius: 12px; 
    font-size: 1.2rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s; 
}
.qty-minus:hover, .qty-plus:hover { 
    transform: scale(1.05); 
    box-shadow: 0 4px 12px rgba(242, 185, 95, 0.5); 
}
.add-to-cart-btn {
    width: 100%; 
    height: 52px; 
    background: linear-gradient(135deg, #d67c2e, #c25429); 
    color: white; 
    border: none;
    border-radius: 16px; 
    font-size: 1.1rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s;
}
.add-to-cart-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 24px rgba(214, 124, 46, 0.5); 
}
.cart-summary { 
    text-align: center; 
    margin-top: 4rem; 
    font-size: 1.2rem; 
    color: #c25429; 
    font-weight: 500; 
}

/* Responsive */
@media (max-width: 768px) { 
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } 
}
@media (max-width: 480px) { 
    .product-grid { grid-template-columns: 1fr; } 
    body { padding: 1rem; } 
}

/* ===============================
   FULL VIDEO HERO – PURPLE BAKERY STYLE
================================ */

.hero-video-section{
  position:relative;
  width:100%;
  height:78vh;          /* ↓ reduced height */
  min-height:520px;     /* keeps premium look */
  max-height:820px;
  overflow:hidden;
}




.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
  pointer-events:none;
}

.hero-slide.active{
  opacity:1;
  pointer-events:auto;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.35)
  );
}

/* CENTER CONTENT (UNCHANGED DESIGN) */
.hero-center-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  pointer-events:none;
}



.hero-heading{
  font-size:clamp(32px,5vw,60px);
  font-weight:700;
  margin-bottom: 16px;
  
}

.hero-order-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 40px;
  background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #FBBF24 100%);
  color:#2b1b0f;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 16px 40px rgba(227,176,75,.45);
  margin-top:16px auto 40px auto;;
  pointer-events:auto;
   
  
}



/* ARROWS */
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.25);
  border:none;
  font-size:32px;
  padding:12px 18px;
  border-radius:50%;
  cursor:pointer;
  color:#fff;
  backdrop-filter:blur(6px);
  z-index:5;
}

.hero-arrow.prev{left:30px}
.hero-arrow.next{right:30px}

/* DOTS */
.hero-dots{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.hero-dots button{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.4);
  cursor:pointer;
}

.hero-dots button.active{
  background:#e3b04b;
}

/* Mobile refinement */
@media (max-width:768px){
  .hero-video-section{
    height:65vh;
    min-height:420px;
  }
}



/* cake menu */

/* FLOATING CAKE MENU (DOES NOT TOUCH NAVBAR) */
.cake-menu-float{
  position:absolute;
  top:22px;
  left:26px;
  z-index:999;
}

/* BUTTON */
.cake-menu-btn{
  background:none;
  border:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  cursor:pointer;
  padding:6px;
}

.cake-menu-btn span{
  font-family:Poppins,system-ui,sans-serif;
  font-size:13px;
  font-weight:600;
  color:#7a3f16;
}

/* DROPDOWN */
.cake-menu-dropdown{
  position:absolute;
  top:56px;
  left:0;
  min-width:260px;
  background:#ffffff;
  border-radius:18px;
  padding:12px 0;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  display:none;
}

.cake-menu-dropdown a{
  display:block;
  padding:12px 22px;
  font-family:Poppins;
  font-size:15px;
  font-weight:500;
  color:#7a3f16;
  text-decoration:none;
}

.cake-menu-dropdown a:hover{
  background:#fff2cc;
}

.cake-menu-btn svg{
  width:48px;
  height:48px;
}

/* footer */

html, body {
  height: 100%;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}


.site-footer {
  background: #fff3dc;
  padding: 60px 40px 0;
  color: #7a3f16;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #7a3f16;
  text-decoration: none;
  font-weight: 500;
}

.footer-col a:hover {
  color: #9a5aff;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  color: #7a3f16;
  transition: transform .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
  background: #fff8ea;
}


/* ================================
   DELIVERY HIGHLIGHTS SECTION
================================ */

.delivery-highlights{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  gap:36px;
  max-width:1200px;
  margin:90px auto;
  padding:60px 40px;
  background:#fff9e8;
  border-radius:26px;
  box-shadow:0 28px 70px rgba(122,63,22,.18);
}

.highlight-item{
  display:flex;
  gap:22px;
  align-items:flex-start;
}

.highlight-icon{
  font-size:38px;
  line-height:1;
}

.highlight-content h3{
  font-size:24px;
  font-weight:600;
  color:#0b3a5a;
  margin-bottom:10px;
}

.highlight-content p{
  font-size:17px;
  color:#333;
  line-height:1.6;
  max-width:300px;
}

.highlight-divider{
  width:1px;
  height:90px;
  background:#3ccfcf;
  opacity:.7;
}

/* ================================
   MOBILE
================================ */
@media(max-width:900px){
  .delivery-highlights{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .highlight-item{
    justify-content:center;
  }

  .highlight-divider{
    display:none;
  }
}


.el
.elite-testimonial-wrap{
  position:relative;
  padding:100px 24px;
  background:
    radial-gradient(circle at top left,#f5c76a,transparent 60%),
    linear-gradient(135deg,#111,#000);
  font-family:Poppins,system-ui,sans-serif;
  overflow:hidden;
}

.elite-slider{
  max-width:1100px;
  margin:auto;
  position:relative;
}

.elite-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(20px) scale(.98);
  transition:all .8s cubic-bezier(.4,0,.2,1);
  padding:60px;
  border-radius:28px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.elite-slide.active{
  position:relative;
  opacity:1;
  transform:translateY(0) scale(1);
}

.elite-quote{
  font-size:clamp(22px,3vw,30px);
  line-height:1.6;
  color:#000000;
  margin-bottom:32px;
}

.elite-author{
  display:inline-block;
  font-size:14px;
  letter-spacing:1.4px;
  font-weight:600;
  color:#f5c76a;
  text-transform:uppercase;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.25);
}

.elite-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:50px;
}

.elite-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:transparent;
  border:2px solid rgba(255,255,255,.4);
  cursor:pointer;
  transition:.3s;
}

.elite-dot.active{
  background:#f5c76a;
  border-color:#f5c76a;
}

@media(max-width:768px){
  .elite-slide{
    padding:40px 26px;
    text-align:center;
  }
}

/* image slider */


.velvet-bestsellers{
  background:#f8e2f8;
  padding:70px 0 90px;
  font-family:Poppins,system-ui,sans-serif;
}

.velvet-title{
  font-size:34px;
  font-weight:600;
  margin:0 0 30px 60px;
  color:#111;
}

.velvet-slider-wrapper{
  position:relative;
}

.velvet-slider{
  display:flex;
  gap:26px;
  padding:10px 60px;
  overflow-x:auto;
  scroll-behavior:smooth;
}

.velvet-slider::-webkit-scrollbar{
  display:none;
}

.velvet-card{
  background:#fff;
  border-radius:10px;
  width:260px;
  flex:0 0 auto;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  padding:14px;
}

.velvet-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:14px;
}

.velvet-card h3{
  font-size:15px;
  font-weight:500;
  color:#111;
  margin:0 0 8px;
  line-height:1.4;
}

.velvet-rating{
  font-size:14px;
  color:#f5b400;
  margin-bottom:6px;
}

.velvet-rating span{
  color:#777;
  font-size:13px;
  margin-left:4px;
}

.velvet-price{
  font-size:14px;
  color:#111;
}

.velvet-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  cursor:pointer;
  font-size:18px;
}

.velvet-nav.left{
  left:18px;
}

.velvet-nav.right{
  right:18px;
}

@media(max-width:768px){
  .velvet-title{
    margin-left:24px;
  }
  .velvet-slider{
    padding:10px 24px;
  }
  .velvet-nav{
    display:none;
  }
}


/* bakery products */

.bakery-products-modern{
  padding:110px 24px;
  background:#faf4ea;
  font-family:Poppins,system-ui,sans-serif;
}

.bakery-products-header{
  max-width:780px;
  margin:0 auto 80px;
  text-align:center;
}

.bakery-products-header h2{
  font-size:26px;
  font-weight:600;
  letter-spacing:1.6px;
  color:#6b4a34;
  margin-bottom:18px;
}

.header-accent{
  width:90px;
  height:3px;
  background:#f4a11e;
  margin:0 auto 20px;
}

.bakery-products-header p{
  font-size:16px;
  line-height:1.7;
  color:#666;
}

.bakery-products-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

.product-panel{
  position:relative;
  padding:40px 28px;
  background:#fafafa;
  border-radius:18px;
  transition:transform .35s ease, box-shadow .35s ease;
}

.product-panel:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.panel-accent{
  width:38px;
  height:3px;
  background:#f4a11e;
  margin-bottom:22px;
}

.product-panel h3{
  font-size:15px;
  font-weight:600;
  letter-spacing:1px;
  color:#6b4a34;
  margin-bottom:16px;
}

.product-panel p{
  font-size:15px;
  line-height:1.7;
  color:#666;
}

.panel-link{
  display:inline-block;
  margin-top:20px;
  font-size:14px;
  font-weight:500;
  letter-spacing:.6px;
  color:#6b4a34;
  text-decoration:none;
}

.panel-link:hover{
  text-decoration:underline;
}

@media(max-width:1024px){
  .bakery-products-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bakery-products-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}


/* Different types of bread products */

.bread-hero-section{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Poppins,system-ui,sans-serif;
  overflow:hidden;
  background:#f7f3ee;
}

/* Background layer */
.bread-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,.92),
      rgba(255,255,255,.78),
      rgba(255,255,255,.65)
    ),
    url("/wp-content/themes/velvet_bakery/assets/images/differet_types_of_bread.jpg");
  background-size:cover;
  background-position:center;
  filter:grayscale(100%);
  z-index:1;
}

/* Content */
.bread-hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  text-align:center;
  padding:0 24px;
}

.bread-hero-content h2{
  font-size:clamp(28px,4vw,42px);
  font-weight:600;
  letter-spacing:1.6px;
  color:#6b4a34;
  margin-bottom:18px;
}

.bread-hero-content p{
  font-size:18px;
  color:#7a7a7a;
}

/* Product image */
.bread-hero-product{
  position:absolute;
  bottom:-40px;
  right:12%;
  z-index:3;
}

.bread-hero-product img{
  width:360px;
  max-width:80vw;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

/* Responsive */
@media(max-width:1024px){
  .bread-hero-product{
    right:6%;
  }
}

@media(max-width:768px){
  .bread-hero-section{
    min-height:520px;
  }

  .bread-hero-product{
    position:relative;
    bottom:auto;
    right:auto;
    margin-top:40px;
  }

  .bread-hero-content{
    margin-top:60px;
  }
}

.trust-strip-elite{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  gap:80px;
  padding:64px 48px;
  background:#f7f2eb;
  font-family:Poppins,system-ui,sans-serif;
}

.trust-elite-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  color:#3e2a1f;
  transition:transform .35s ease, opacity .35s ease;
}

.trust-elite-item:hover{
  transform:translateY(-3px);
}

.trust-elite-icon{
  font-size:34px;
  line-height:1;
  color:#c49a6c;
}

.trust-elite-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:1.8px;
  white-space:nowrap;
}

/* Tablet */
@media(max-width:900px){
  .trust-strip-elite{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    padding:56px 32px;
  }
}

/* Mobile */
@media(max-width:480px){
  .trust-strip-elite{
    grid-template-columns:1fr;
    gap:26px;
    padding:48px 24px;
  }

  .trust-elite-icon{
    font-size:30px;
  }

  .trust-elite-text{
    font-size:16px;
  }
}



/* submenu */

.cake-menu-dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:260px;
  background:#ffffff;
  border-radius:14px;
  padding:10px 0;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  font-family:Poppins,system-ui,sans-serif;
  z-index:999;
  display:none;
}

.cake-menu-dropdown.open{
  display:block;
}


.cake-menu-dropdown a,
.cake-menu-dropdown button{
  all:unset;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:12px 20px;
  font-size:14px;
  font-weight:500;
  font-family:inherit;
  color:#7a4a2d;
  line-height:1.4;
  cursor:pointer;
  box-sizing:border-box;
}

.cake-menu-dropdown a:hover,
.cake-menu-dropdown button:hover{
  background:#f7f2eb;
}

.has-submenu{
  position:relative;
}

.submenu-arrow{
  font-size:14px;
  opacity:.6;
  transition:transform .25s ease;
}

.submenu{
  display:none;
  flex-direction:column;
  background:#fafafa;
  border-top:1px solid #eee;
}

.submenu a{
  padding-left:36px;
  font-size:13.5px;
  color:#7a4a2d;
}

.has-submenu.active .submenu{
  display:flex;
}

.has-submenu.active .submenu-arrow{
  transform:rotate(90deg);
}

@media(max-width:768px){
  .cake-menu-dropdown{
    position:relative;
    width:100%;
    border-radius:18px;
  }
}



/* ================================
   TESTIMONIAL SECTION
================================ */
.ts-wrapper{
  padding:80px 20px;
  background:#f6f6f6;
  font-family:Poppins,system-ui,sans-serif;
  position:relative;
  overflow:visible;
}

.ts-title{
  text-align:center;
  font-size:26px;
  font-weight:600;
  margin-bottom:50px;
  color:#1f2937;
}

/* ================================
   SLIDER LAYOUT
================================ */
.ts-slider{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  position:relative;
  z-index:1;
}

/* ================================
   VIEWPORT (CLIPS SLIDES ONLY)
================================ */
.ts-viewport{
  width:100%;
  overflow:hidden;
  position:relative;
  z-index:2;
  pointer-events:auto;
}

/* ================================
   TRACK (MOVES LEFT / RIGHT)
   IMPORTANT: DOES NOT BLOCK ARROWS
================================ */
.ts-track{
  display:flex;
  gap:24px;
  width:max-content;
  transition:transform .4s ease;
  pointer-events:none; /* 🔥 critical fix */
}

/* ================================
   CARD
================================ */
.ts-card{
  width:320px;
  height:380px;
  flex-shrink:0; /* 🔥 prevents shrinking */
  background:#ffffff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  pointer-events:auto;
}

.ts-card img{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:16px;
}

.ts-card p{
  font-size:14px;
  line-height:1.6;
  color:#374151;
  margin-bottom:auto;
}

.ts-card strong{
  margin-top:16px;
  font-size:13px;
  color:#111827;
}

.ts-card span{
  font-size:12px;
  color:#6b7280;
}


.ts-arrow{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:#ffffff;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  font-size:22px;
  cursor:pointer;

  position:relative;
  z-index:9999;          
  pointer-events:auto;  
  user-select:none;
}

.ts-arrow:active{
  transform:scale(0.95);
}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:1024px){
  .ts-card{
    width:300px;
  }
}

@media(max-width:768px){
  .ts-slider{
    gap:12px;
  }

  .ts-card{
    width:85vw;
  }
}

/* SECTION */
.ts-wrapper{
  padding:80px 20px;
  background:#f6f6f6;
  font-family:Poppins,system-ui,sans-serif;
}

/* TITLE */
.ts-title{
  text-align:center;
  font-size:26px;
  margin-bottom:40px;
}

/* SLIDER */
.ts-slider{
  position:relative;
  max-width:1100px;
  margin:0 auto;
}

/* VIEWPORT */
.ts-viewport{
  overflow:hidden;
  width:100%;
}

/* TRACK */
.ts-track{
  display:flex;
  gap:24px;
  transition:transform .4s ease;
}

/* CARD */
.ts-card{
  width:320px;
  height:380px;
  flex-shrink:0;
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.ts-card img{
  width:72px;
  height:72px;
  border-radius:50%;
  margin-bottom:16px;
}

.ts-card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:auto;
}

.ts-card strong{
  margin-top:16px;
  font-size:13px;
}

.ts-card span{
  font-size:12px;
  color:#777;
}

/* ARROWS */
.ts-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  font-size:22px;
  cursor:pointer;
  z-index:5;
}

.ts-prev{ left:-60px; }
.ts-next{ right:-60px; }

/* RESPONSIVE */
@media(max-width:1024px){
  .ts-prev{ left:-40px; }
  .ts-next{ right:-40px; }
}

@media(max-width:768px){
  .ts-card{ width:85vw; }

@media(max-width:768px){
  .ts-prev{ left:8px; }
  .ts-next{ right:8px; }
}}



/* ===========================
   RESERVE A TABLE – VELVET
=========================== */


/* MAIN CARD */
.reserve-wrapper{
  max-width:980px;
  margin:auto;
  background:#ffffff;
  border-radius:34px;
  box-shadow:0 40px 90px rgba(122,63,22,.35);
  overflow:hidden;
}

/* HEADER */
.reserve-header{
  background:linear-gradient(135deg,#e8c15c,#f4e2a4);
  padding:42px;
  text-align:center;
}
.reserve-header h1{
  font-size:36px;
  font-weight:700;
  color:#5c2c10;
}
.reserve-header p{
  margin-top:10px;
  font-size:16px;
  color:#7a4a22;
}

/* CONTENT */
.reserve-body{
  padding:44px 48px;
}

/* SECTION */
.section{
  margin-bottom:38px;
}
.section-title{
  font-size:20px;
  font-weight:600;
  color:#7a3f16;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
}
.section-title i{color:#c89b2c}

/* GUEST COUNT */
.guest-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:18px;
}
.guest-card{
  border:2px solid #e7c77d;
  border-radius:18px;
  padding:22px;
  text-align:center;
  cursor:pointer;
  transition:.25s ease;
}
.guest-card:hover,
.guest-card.active{
  background:#fff6d8;
  border-color:#c89b2c;
  box-shadow:0 10px 26px rgba(200,155,44,.3);
}
.guest-card strong{
  display:block;
  font-size:18px;
  color:#5c2c10;
}
.guest-card span{
  font-size:14px;
  color:#7a5a38;
}

/* DATE + TIME */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
input,textarea{
  width:100%;
  padding:14px 18px;
  border-radius:16px;
  border:2px solid #e7c77d;
  font-family:Poppins;
  font-size:15px;
}
input:focus,textarea:focus{
  outline:none;
  border-color:#c89b2c;
  box-shadow:0 0 0 4px rgba(200,155,44,.25);
}

/* TIME SLOTS */
.time-slots{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(130px,1fr));
  gap:14px;
}
.time-slots button{
  padding:14px;
  border-radius:16px;
  border:2px solid #c89b2c;
  background:#ffffff;
  font-family:Poppins;
  font-size:14px;
  cursor:pointer;
  transition:.25s ease;
}
.time-slots button.active{
  background:#c89b2c;
  color:#ffffff;
}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
@media(max-width:768px){
  .grid-2,.form-grid{grid-template-columns:1fr}
}

/* CTA */
.reserve-footer{
  margin-top:48px;
  text-align:center;
}
.reserve-btn{
  background:linear-gradient(135deg,#7a5a96,#9a78b8);
  color:#fff;
  border:none;
  padding:18px 60px;
  border-radius:24px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(122,90,150,.45);
  transition:.2s ease;
}
.reserve-btn:hover{
  transform:translateY(-2px);
}

/* SUCCESS */
.success-screen{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:80px 40px;
  text-align:center;
}
.success-icon{
  width:80px;height:80px;
  border-radius:50%;
  background:#2e7d32;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:36px;
  margin-bottom:24px;
}
.success-screen h2{
  font-size:28px;
  color:#2e7d32;
}
.success-screen p{
  margin-top:10px;
  font-size:15px;
  color:#555;
}


/* products list */

.bakery-collection{
  background:linear-gradient(180deg,#f7f3f7 0%,#f8e2f8 100%);
  padding:120px 28px 180px;
  font-family:Poppins,system-ui,sans-serif;

}

/* MAIN TITLE */
.bakery-title{
  text-align:center;
  font-size:42px;
  font-weight:600;
  color:#8a4a1f;
  margin:0;                /* reset */
}

/* SUBTITLE */
.bakery-subtitle{
  text-align:center;
  font-size:26px;
  font-weight:500;
  color:#9c5a28;
  margin-top:18px;         /* 👈 controlled spacing */
  margin-bottom:70px;     /* space before cards */
}

/* GRID – MORE SPACE BETWEEN CARDS */
.bakery-grid{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:180px;
  row-gap:140px;
}

/* CARD – REDUCED SIZE */
.bakery-card{
  position:relative;
  background:#f7f9f6;
  border-radius:28px;
  padding:36px 38px 40px 220px;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}

/* IMAGE CIRCLE – SMALLER */
.bakery-img{
  position:absolute;
  left:-115px;
  top:50%;
  transform:translateY(-50%);
  width:230px;
  height:230px;
  background:#ffffff;
  border-radius:50%;
  padding:10px;
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}

.bakery-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  display:block;
}

/* CONTENT */
.bakery-content h3{
  font-size:24px;
  font-weight:600;
  color:#8a4a1f;
  margin-bottom:14px;
}

.bakery-content p{
  font-size:14.2px;
  line-height:1.6;
  color:#9b5a26;
  max-width:420px;
  margin-bottom:26px;
}

/* QTY + PRICE ROW */
.bakery-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}

.qty-ui{
  display:flex;
  align-items:center;
  gap:14px;
  background:#ffe7b0;
  border-radius:12px;
  padding:8px 14px;
}

.qty-btn{
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  color:#7a3f16;
}

.qty-btn:active{
  transform:scale(0.9);
}

.qty-value{
  min-width:22px;
  text-align:center;
  font-size:15px;
  font-weight:600;
  color:#7a3f16;
}

.price{
  font-size:20px;
  font-weight:600;
  color:#e0892f;
}



/* BUTTON */
.bakery-content button{
  width:100%;
  background:#d36a2c;
  color:#ffffff;
  border:none;
  padding:14px;
  border-radius:14px;
  font-size:14.5px;
  font-weight:600;
  cursor:pointer;
  transition:background .25s ease, transform .15s ease;
}

.bakery-content button:hover{
  background:#b8561e;
  transform:translateY(-2px);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media(max-width:980px){

  .bakery-grid{
    grid-template-columns:1fr;
    row-gap:120px;
  }

  .bakery-card{
    padding:210px 26px 40px;
  }

  .bakery-img{
    left:50%;
    top:0;
    transform:translate(-50%,-50%);
    width:210px;
    height:210px;
  }

  .bakery-content p{
    max-width:100%;
  }
}


/* ===============================
   FLOATING CART BAR – FINAL ALIGNMENT
================================ */

.bakery-cart-bar{
  position:fixed;
  left:50%;
  bottom:-180px;
  transform:translateX(-50%);
  width:100%;
  max-width:920px;
  padding:0 20px;
  z-index:9999;
  transition:bottom .35s ease;
}

.bakery-cart-bar.active{
  bottom:80px; /* ⬅️ MOVED UP */
}

/* INNER CARD */
.cart-bar-inner{
  background:#ffffff;
  border:2.5px solid #7a5a96;
  border-radius:26px;
  padding:30px 40px;
  display:grid;
  grid-template-columns: 1fr auto; /* 🔑 key change */
  align-items:center;              /* 🔑 true vertical center */
  gap:32px;
  box-shadow:0 24px 60px rgba(122,90,150,.3);
}




/* SUMMARY LINE */
.cart-summary{
  display:flex;
  align-items:center;
  gap:18px;
  line-height:1;
  margin:0;
}

/* LABEL */
.cart-label{
  font-size:18px;              /* ⬅️ increased */
  font-weight:500;
  color:#4b3a67;
}

/* COUNT BADGE */
.cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  background:#7a5a96;
  color:#ffffff;
  font-size:17px;
  font-weight:600;
  border-radius:12px;
}

/* TOTAL PRICE */
.cart-total{
  font-size:22px;              /* ⬅️ increased */
  font-weight:600;
  color:#4b3a67;
}

/* VIEW CART BUTTON */
.view-cart-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#7a5a96;
  color:#ffffff;
  border:none;
  padding:16px 40px;
  border-radius:18px;
  font-size:17px;
  font-weight:600;
  line-height:1;
}


.view-cart-btn:hover{
  background:#654681;
  transform:translateY(-1px);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .bakery-cart-bar.active{
    bottom:24px;
  }

  .cart-bar-inner{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:22px;
    padding:26px;
  }

  .cart-summary{
  display:flex;
  align-items:center;            /* force same center as button */
  gap:18px;
  line-height:1;                 /* 🔑 KEY FIX */
  margin:0;                      /* remove any browser default */
}


  .view-cart-btn{
  display:flex;                  /* 🔑 makes text vertically perfect */
  align-items:center;
  justify-content:center;
  background:#7a5a96;
  color:#ffffff;
  border:none;
  padding:16px 40px;
  border-radius:18px;
  font-size:17px;
  font-weight:600;
  line-height:1;                 /* 🔑 same baseline */
  cursor:pointer;
  transition:background .25s ease, transform .15s ease;
}

}

.qty-ui,
.qty-btn,
.bakery-content button {
  pointer-events: auto !important;
  position: relative;
  z-index: 5;
}

.bakery-card,
.bakery-content,
.bakery-row {
  pointer-events: auto;
}

/* Cart page */

body{
  margin:0;
  font-family:Poppins,system-ui,sans-serif;
  background:
    radial-gradient(circle at top,#fff8e6 0%,#fde4a7 55%,#f7d58a 100%);
}

/* MAIN CART CARD */
.cart-container{
  max-width:980px;
  margin:140px auto 160px;
  padding:56px 48px;
  background:#ffffff;
  border-radius:34px;
  box-shadow:
    0 30px 80px rgba(122,63,22,.25),
    inset 0 1px 0 rgba(255,255,255,.6);
}

/* TITLE */
.cart-title{
  text-align:center;
  font-size:38px;
  font-weight:600;
  color:#8a4a1f;
  margin-bottom:50px;
}

/* EMPTY CART */
.empty-cart{
  text-align:center;
  padding:90px 20px;
  color:#9c5a28;
  font-size:19px;
  line-height:1.7;
}

/* CART LIST */
.cart-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* CART ITEM CARD */
.cart-item{
  display:grid;
  grid-template-columns: 1.6fr auto auto auto auto;
  align-items:center;
  gap:24px;
  padding:26px 28px;
  background:linear-gradient(180deg,#fff6da,#ffe9b6);
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* PRODUCT NAME */
.cart-item-name{
  font-size:17px;
  font-weight:600;
  color:#7a3f16;
}

/* PRICE TEXT */
.cart-item div:nth-child(3),
.cart-item div:nth-child(4){
  font-weight:600;
  color:#4b3a67;
  font-size:15px;
}

/* QTY CONTROLS */
.cart-qty{
  display:flex;
  align-items:center;
  gap:14px;
  background:#ffe4a3;
  padding:8px 14px;
  border-radius:14px;
}

.cart-qty button{
  background:none;
  border:none;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  color:#7a3f16;
  transition:transform .15s ease;
}

.cart-qty button:active{
  transform:scale(.9);
}

.cart-qty span{
  min-width:24px;
  text-align:center;
  font-weight:600;
  font-size:15px;
  color:#7a3f16;
}

/* REMOVE */
.remove-btn{
  background:none;
  border:none;
  color:#b8561e;
  font-size:14px;
  cursor:pointer;
  transition:color .2s ease;
}

.remove-btn:hover{
  color:#8f3c10;
}

/* FOOTER */
.cart-footer{
  margin-top:54px;
  padding-top:36px;
  border-top:1px dashed rgba(122,63,22,.25);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* TOTAL */
.cart-grand-total{
  font-size:24px;
  font-weight:600;
  color:#4b3a67;
}

/* CHECKOUT */
.checkout-btn{
  background:linear-gradient(135deg,#7a5a96,#9a78b8);
  color:#ffffff;
  border:none;
  padding:16px 42px;
  border-radius:20px;
  font-size:17px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 14px 36px rgba(122,90,150,.35);
  transition:transform .15s ease, box-shadow .15s ease;
}

.checkout-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(122,90,150,.45);
}

/* ===============================
   MOBILE
=============================== */
@media(max-width:900px){

  .cart-container{
    margin:110px 18px 140px;
    padding:36px 24px;
  }

  .cart-item{
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
  }

  .cart-qty{
    justify-content:center;
  }

  .cart-footer{
    flex-direction:column;
    gap:24px;
  }
}

/* ===============================
   DELIVERY OPTIONS – CART PAGE
=============================== */

.delivery-wrapper{
  margin-top:50px;
}

.delivery-title{
  font-size:24px;
  font-weight:600;
  color:#7a3f16;
  margin-bottom:22px;
}

.delivery-card{
  background:#ffffff;
  border-radius:22px;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  overflow:hidden;
}

.delivery-option{
  display:block;
  cursor:pointer;
}

.delivery-option input{
  display:none;
}

.delivery-ui{
  display:flex;
  gap:18px;
  align-items:center;
  padding:22px 26px;
  border-bottom:1px solid rgba(0,0,0,.08);
  transition:background .25s ease;
}

.delivery-option:last-child .delivery-ui{
  border-bottom:none;
}

.delivery-ui i{
  font-size:22px;
  color:#7a5a96;
}

.delivery-ui strong{
  font-size:16px;
  color:#4b3a67;
}

.delivery-ui p{
  margin:4px 0 0;
  font-size:14px;
  color:#6b5a7a;
}

.delivery-option input:checked + .delivery-ui{
  background:#fff4cf;
}

/* ADDRESS */
.delivery-address{
  line-height:1.5;
}

/* DELIVERY DETAILS */
.delivery-details{
  display:none;
  padding:22px 26px;
  background:#fff8e4;
}

.field-label{
  display:block;
  font-size:14px;
  font-weight:600;
  color:#7a3f16;
  margin-bottom:8px;
}

.delivery-details input[type="date"]{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #e3c57a;
  font-family:Poppins;
  margin-bottom:18px;
}

/* TIME SLOTS */
.time-slots{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:14px;
}

.time-slots button{
  border:1px solid #7a5a96;
  background:#ffffff;
  padding:12px;
  border-radius:14px;
  font-family:Poppins;
  font-size:14px;
  cursor:pointer;
  transition:all .2s ease;
}

.time-slots button.active{
  background:#7a5a96;
  color:#ffffff;
}

/* SPECIAL INSTRUCTIONS */
.instructions-box{
  margin-top:32px;
}

.instructions-box textarea{
  width:100%;
  min-height:120px;
  padding:14px;
  border-radius:18px;
  border:1px solid #e3c57a;
  font-family:Poppins;
  resize:none;
}

/* MOBILE */
@media(max-width:768px){
  .delivery-ui{
    flex-direction:column;
    align-items:flex-start;
  }
}
.delivery-summary{
  margin-top:18px;
  padding:14px 16px;
  background:#ffffff;
  border:1px solid #7a5a96;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  font-weight:500;
  color:#4b3a67;
  box-shadow:0 8px 22px rgba(122,90,150,.2);
}

.delivery-summary i{
  color:#7a5a96;
  font-size:18px;
}

/* ===============================
   CART ITEM – IMAGE REFINED LAYOUT
=============================== */

/* Grid rebalance */
.cart-item{
  grid-template-columns: 220px auto auto auto auto;
  gap: 22px;
}

/* Product block */
.cart-product{
  display:flex;
  align-items:center;
  gap:18px;
}

/* Product image */
.cart-product-img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  flex-shrink:0;
}

/* Product name */
.cart-item-name{
  font-size:16px;
  font-weight:600;
  color:#7a3f16;
  line-height:1.35;
  max-width:140px;
}

/* Qty stays compact */
.cart-qty{
  justify-content:center;
  min-width:110px;
}

/* Price columns tighter */
.cart-item div:nth-child(3),
.cart-item div:nth-child(4){
  min-width:90px;
  text-align:center;
}

/* Remove button aligned */
.remove-btn{
  justify-self:end;
}

/* ===============================
   MOBILE – STACK CLEANLY
=============================== */
@media(max-width:900px){

  .cart-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cart-product{
    flex-direction:column;
  }

  .cart-item-name{
    max-width:100%;
  }

  .cart-qty{
    margin:auto;
  }
}


.hero-video-section,
.hero-slide,
.hero-overlay,
.hero-center-content {
  pointer-events: none;
}

/* ✅ Allow clicks ONLY on hero buttons */
.hero-order-btn,
.hero-arrow,
.hero-dots,
.hero-dots button {
  pointer-events: auto;
}


.reserve-wrapper,
.reserve-wrapper * {
  position: relative;
  z-index: 10000;
  pointer-events: auto !important;
}

