/* Chhabra's PB53 Bakers & Cafe - Custom Design Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary: #f39c12; /* Logo Golden Orange */
    --primary-light: #fff5e6;
    --primary-hover: #e67e22; /* Rich Warm Orange */
    --secondary: #1e293b;
    --accent: #ffd200; /* Vibrant Logo Yellow */
    --accent-light: #fffbeb;
    --bg-cream: #faf7f2; /* Creamy White */
    --bg-white: #ffffff;
    --bg-dark: #12100e; /* Espresso Black */
    --bg-dark-card: #1c1815;
    --text-dark: #1c1917;
    --text-muted: #78716c;
    --text-light: #f5f5f4;
    --border-color: #e7e3dc;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-subtle: 0 4px 20px rgba(28, 25, 23, 0.03);
    --shadow-medium: 0 12px 30px rgba(28, 25, 23, 0.06);
    --shadow-float: 0 20px 40px rgba(28, 25, 23, 0.12);
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
    border-left: 1px solid rgba(231, 227, 220, 0.4);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d6cfc4 0%, #b8aea0 100%);
    border: 2.5px solid var(--bg-cream);
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-hover) 100%);
}

/* Text Selection Highlight */
::selection {
    background-color: var(--primary);
    color: var(--bg-white);
}
::-moz-selection {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Header & Navigation */
.navbar-custom {
    background: rgba(18, 16, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 38, 33, 0.5);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    padding: 8px 0;
    background: rgba(18, 16, 14, 0.98);
    box-shadow: var(--shadow-subtle);
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-custom .navbar-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-custom .nav-link {
    color: rgba(231, 227, 220, 0.85);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

.navbar-custom .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-custom .nav-link.active {
    color: var(--accent) !important;
    font-weight: 700;
}

.navbar-custom .btn-nav-action {
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.navbar-custom .btn-nav-action:hover {
    background: var(--accent);
    color: #12100e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 210, 0, 0.25);
}

.navbar-toggler-custom {
    border: none;
    background: transparent;
    padding: 4px;
}

.navbar-toggler-custom:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-custom .hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-custom .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #e7e3dc;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Mobile Navigation Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(18, 16, 14, 0.98);
        border-radius: var(--border-radius-md);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(243, 156, 18, 0.15);
        box-shadow: var(--shadow-float);
    }
    .navbar-custom .nav-link {
        padding: 12px 20px !important;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    .navbar-custom .nav-link::after {
        display: none; /* Hide desktop underline animation on mobile */
    }
    .navbar-custom .nav-link.active,
    .navbar-custom .nav-link:hover {
        background: rgba(243, 156, 18, 0.1) !important;
        padding-left: 25px !important;
    }
    .navbar-custom .btn-nav-action {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Cart Icon Button */
.cart-trigger {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-trigger:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.cart-trigger i {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cart-trigger .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--bg-cream);
}

/* Page Spacing */
main.site-content {
    padding-top: 85px;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background-color: #faf7f2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(254,243,199,0.5) 0%, rgba(250,247,242,0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-premium-primary {
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.25);
}

.btn-premium-primary:hover {
    background: var(--primary-hover);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.35);
}

.btn-premium-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border-color);
}

.btn-premium-secondary:hover {
    background: var(--bg-white);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Floating Food Images Grid */
.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 50% 50% 40% 40%;
    border: 12px solid var(--bg-white);
    box-shadow: var(--shadow-float);
    animation: floatAnim 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.badge-1 {
    top: 15%;
    left: -10%;
    animation: floatAnim2 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation: floatAnim 7s ease-in-out infinite 1s;
}

.floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-badge .badge-text h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-badge .badge-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatAnim2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.03); }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
}

/* Promo Banner / Highlights */
.highlight-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(231, 227, 220, 0.4);
    height: 100%;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.highlight-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .icon-box {
    background: var(--primary);
    color: var(--bg-white);
}

.highlight-card h4 {
    margin-bottom: 12px;
    font-weight: 700;
}

/* Menu Page & Cards */
.menu-filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.15);
}

/* Food Cards */
.food-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(231, 227, 220, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(194, 65, 12, 0.2);
}

.food-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Ratio */
    overflow: hidden;
    background-color: var(--bg-cream);
}

.food-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.food-card:hover .food-card-img {
    transform: scale(1.08);
}

.food-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-cafe {
    background: #ef4444;
    color: white;
}

.badge-bakery {
    background: #0284c7;
    color: white;
}

.food-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.food-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.food-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.food-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-top: auto;
}

.food-card-price {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
}

.btn-add-cart {
    background: var(--bg-cream);
    color: var(--primary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-cart:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* About Section & Story */
.about-img-grid {
    position: relative;
    padding-bottom: 30px;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    width: 85%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.about-img-sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    border-radius: var(--border-radius-md);
    border: 8px solid var(--bg-cream);
    box-shadow: var(--shadow-float);
    object-fit: cover;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Reservation Page & Form */
.reservation-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(231, 227, 220, 0.4);
    overflow: hidden;
}

.reservation-info-pane {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reservation-info-pane h3 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.reservation-details {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.reservation-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.reservation-details li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.reservation-details li h5 {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.reservation-details li p {
    color: #a8a29e;
    margin: 0;
    font-size: 0.85rem;
}

.reservation-form-pane {
    padding: 60px 40px;
}

.custom-form-group {
    margin-bottom: 25px;
    position: relative;
}

.custom-form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    width: 100%;
    font-family: var(--font-sans);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.08);
}

/* Time slot chips */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot-chip {
    flex-grow: 1;
    text-align: center;
}

.time-slot-chip input[type="radio"] {
    display: none;
}

.time-slot-chip label {
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: block;
    margin: 0;
    transition: var(--transition-fast);
}

.time-slot-chip input[type="radio"]:checked + label {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

/* Contact page styling */
.contact-map-wrapper {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

/* Cart Offcanvas / Sidebar Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1060;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h4 {
    font-size: 1.4rem;
    margin: 0;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.btn-close-drawer:hover {
    color: var(--primary);
}

.cart-drawer-body {
    padding: 24px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.cart-empty-state i {
    font-size: 3rem;
    color: #e7e3dc;
    margin-bottom: 20px;
}

.cart-empty-state p {
    color: var(--text-muted);
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    background: var(--bg-cream);
}

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

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

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

.btn-qty {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-qty:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: var(--transition-fast);
}

.btn-remove-item:hover {
    color: #ef4444;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-cream);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #25d366; /* WhatsApp Green */
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
}

.btn-checkout:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: white;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(18, 16, 14, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: none;
}

.cart-overlay.open {
    display: block;
}

/* Testimonials / Reviews */
.testimonial-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(231, 227, 220, 0.4);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Testimonials Carousel Controls Outward Spacing */
#testimonialsCarousel {
    position: relative;
    padding: 0;
}

@media (min-width: 768px) {
    #testimonialsCarousel {
        padding: 0 40px;
    }
}

#testimonialsCarousel .carousel-control-prev {
    left: -15px;
    width: 40px;
    opacity: 0.8;
}

#testimonialsCarousel .carousel-control-next {
    right: -15px;
    width: 40px;
    opacity: 0.8;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 992px) {
    #testimonialsCarousel {
        padding: 0 80px;
    }
    #testimonialsCarousel .carousel-control-prev {
        left: 15px;
    }
    #testimonialsCarousel .carousel-control-next {
        right: 15px;
    }
}

.rating-stars {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Footer styling */
.footer {
    background: #090807; /* Ultra rich espresso dark */
    color: #a8a29e;
    padding: 85px 0 30px;
    font-size: 0.9rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%) 1;
}

.footer h4 {
    color: var(--bg-white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #a8a29e;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -12px;
    opacity: 0;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Opening Hours Schedule */
.footer-schedule {
    list-style: none;
    padding: 0;
}

.footer-schedule-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 0.88rem;
}

.footer-schedule-item .day {
    color: #a8a29e;
}

.footer-schedule-item .time {
    color: var(--bg-white);
}

/* Contact Info Layout Cards */
.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-contact-info li:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(243, 156, 18, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-contact-info .contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(243, 156, 18, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(243, 156, 18, 0.05);
}

.footer-contact-info li:hover .contact-icon {
    background: var(--primary);
    color: #090807;
    transform: rotate(10deg);
}

.footer-contact-info .contact-details {
    display: flex;
    flex-direction: column;
}

.footer-contact-info .contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.footer-contact-info .contact-value a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: block;
    text-decoration: none !important;
}

.footer-contact-info .contact-value a:hover {
    color: var(--accent);
}

.footer-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #a8a29e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    background: var(--primary);
    color: #0f0d0b;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.35);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #78716c;
}

/* Promise Cards Interactive styling */
.promise-card {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.promise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 156, 18, 0.4) !important;
    background: #251e1a !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.promise-card i {
    transition: var(--transition-smooth);
}

.promise-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent) !important;
}

/* Floating Action Widgets */
.btn-float-action {
    position: fixed;
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none !important;
}

.back-to-top {
    bottom: 90px;
    right: 25px;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.whatsapp-float {
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
}

.whatsapp-float:hover {
    background: #20ba59;
    color: white;
    transform: translateY(-5px) scale(1.05);
}

/* Floating Cart Trigger (Bottom Left) */
.cart-trigger-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    background: var(--primary);
    color: var(--bg-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-trigger-float:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.cart-trigger-float i {
    font-size: 1.3rem;
}

.cart-trigger-float .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

/* Premium Restaurant Menu List Style */
.menu-list-item {
    background: transparent;
    padding: 10px 0;
    border-bottom: none;
    transition: var(--transition-smooth);
}

.menu-list-item:hover {
    transform: translateX(5px);
}

.menu-list-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.menu-list-item-title-box {
    display: flex;
    align-items: center;
    max-width: 50%;
}

.menu-list-item-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.menu-list-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 15px;
    height: 14px;
}

.menu-list-item-price {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: right;
    max-width: 50%;
}

.btn-add-cart-list {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ==========================================
   GALLERY PAGE & LIGHTBOX STYLES
   ========================================== */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    transition: var(--transition-smooth);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(231, 227, 220, 0.4);
    background: var(--bg-white);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(194, 65, 12, 0.2);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.gallery-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 16, 14, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-overlay i {
    color: var(--accent);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 7, 0.95);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.05);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-light);
    text-align: center;
}

.lightbox-caption h4 {
    color: var(--accent);
    font-family: var(--font-serif);
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: #a8a29e;
    margin: 0;
    font-size: 0.9rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 991px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .lightbox-prev {
        left: -50px;
    }
    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 575px) {
    .lightbox-prev {
        left: -10px;
        background: rgba(18, 16, 14, 0.7);
    }
    .lightbox-next {
        right: -10px;
        background: rgba(18, 16, 14, 0.7);
    }
    .lightbox-close {
        right: 10px;
        top: -45px;
    }
}

/* Vertical Gallery Sidebar & Tabs */
.gallery-sidebar {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(18, 16, 14, 0.04);
    border: 1px solid rgba(243, 156, 18, 0.12);
    padding: 30px 24px !important;
    transition: var(--transition-smooth);
}

.gallery-sidebar:hover {
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.08);
}

.gallery-vertical-tabs {
    display: flex;
    flex-direction: column;
}

.gallery-vertical-tabs .btn-vertical-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    background: var(--bg-cream);
    color: var(--secondary);
    border: 1px solid rgba(231, 227, 220, 0.6);
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Accent border indicator on the left of each tab */
.gallery-vertical-tabs .btn-vertical-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background-color: var(--primary);
    border-radius: 0 4px 4px 0;
    transition: var(--transition-smooth);
}

.gallery-vertical-tabs .btn-vertical-tab:hover::before {
    height: 60%;
}

.gallery-vertical-tabs .btn-vertical-tab:hover {
    background: var(--bg-white);
    border-color: rgba(243, 156, 18, 0.3);
    color: var(--primary-hover);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(18, 16, 14, 0.03);
}

.gallery-vertical-tabs .btn-vertical-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-color: transparent;
    color: var(--bg-white);
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.25);
}

.gallery-vertical-tabs .btn-vertical-tab.active::before {
    height: 0; /* Hide left indicator when active */
}

.gallery-vertical-tabs .btn-vertical-tab .tab-icon {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(18, 16, 14, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    transition: var(--transition-smooth);
    border: 1px solid rgba(18, 16, 14, 0.02);
}

.gallery-vertical-tabs .btn-vertical-tab:hover .tab-icon {
    background: var(--primary-light);
    color: var(--primary);
    transform: rotate(10deg) scale(1.05);
}

.gallery-vertical-tabs .btn-vertical-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.1);
}

.gallery-vertical-tabs .btn-vertical-tab.active:hover {
    color: var(--bg-white);
    transform: none;
}

.gallery-vertical-tabs .btn-vertical-tab.active:hover .tab-icon {
    transform: rotate(10deg);
}

@media (max-width: 767px) {
    .gallery-vertical-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .gallery-vertical-tabs .btn-vertical-tab {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    .gallery-vertical-tabs .btn-vertical-tab::before {
        display: none;
    }
    .gallery-vertical-tabs .btn-vertical-tab:hover {
        transform: none;
    }
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-white);
    border: 1px solid rgba(243, 156, 18, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(18, 16, 14, 0.015);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.06);
}

.contact-info-card .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(243, 156, 18, 0.05);
}

.contact-info-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.2);
}

/* Global Mobile & Tablet Responsiveness Rules */
@media (max-width: 991px) {
    .navbar-custom {
        padding: 10px 0;
    }
    .navbar-brand img {
        height: 48px;
    }
    
    /* Hide floating badges on mobile/tablet to prevent layout overflow */
    .floating-badge {
        display: none !important;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 60px 0 30px;
    }
    .footer h4 {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    /* Contact adjustments */
    .contact-info-card {
        padding: 18px;
    }
    
    /* Disable fixed background attachment on mobile/tablet to avoid layout scroll bugs */
    section, div, .middle-banner {
        background-attachment: scroll !important;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.1rem !important;
        line-height: 1.3;
    }
    .section-desc {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
    }
    
    /* Adjust page titles on subpages cover header */
    h1[style*="font-size: 3.5rem"] {
        font-size: 2.3rem !important;
    }
    
    /* Scrollbar thumb height on touchscreens */
    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    
    .menu-list-item-name {
        font-size: 1.02rem !important;
    }
    .menu-list-item-price {
        font-size: 1.02rem !important;
    }
    .menu-list-item-dots {
        margin: 0 8px;
        height: 8px;
    }
    
    .testimonial-card {
        padding: 24px !important;
        min-height: auto !important;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    .footer-bottom .text-md-start, 
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .py-5 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }
}
