/* ==========================================================================
   Bake & Juice - Global Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-main: hsl(220, 25%, 8%);
    --bg-card: hsla(220, 25%, 12%, 0.7);
    --bg-card-hover: hsla(220, 25%, 16%, 0.85);
    --border-glass: hsla(220, 25%, 20%, 0.4);
    --border-glass-glow: hsla(24, 100%, 55%, 0.3);
    
    /* Branding Accents */
    --accent-bake: hsl(24, 100%, 55%);
    --accent-bake-glow: hsla(24, 100%, 55%, 0.15);
    --accent-juice: hsl(145, 80%, 48%);
    --accent-juice-glow: hsla(145, 80%, 48%, 0.15);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--accent-bake), var(--accent-juice));
    --grad-bake: linear-gradient(135deg, hsl(24, 100%, 55%), hsl(14, 100%, 50%));
    --grad-juice: linear-gradient(135deg, hsl(145, 80%, 48%), hsl(160, 90%, 40%));
    --grad-dark: linear-gradient(180deg, hsl(220, 25%, 6%), var(--bg-main));
    
    /* Status Colors */
    --status-open: hsl(145, 80%, 45%);
    --status-closed: hsl(0, 80%, 55%);
    
    /* Text Colors */
    --text-primary: hsl(0, 0%, 96%);
    --text-muted: hsl(220, 12%, 65%);
    --text-dark: hsl(220, 25%, 8%);
    
    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Dimensions */
    --nav-height: 80px;
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    
    /* Animation Timings */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset & Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    background-image: var(--grad-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bake);
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Main Container Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: hsla(220, 25%, 8%, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: hsla(220, 25%, 6%, 0.85);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Glow Brand Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px hsla(24, 100%, 55%, 0.2);
}

.logo span {
    font-weight: 400;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dynamic Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-juice);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-juice-glow);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--grad-bake);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

/* Hamburger mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Delivery Platform Logo Buttons in Header */
.delivery-logo-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px 7px 8px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.swiggy-btn {
    background: hsla(28, 97%, 55%, 0.12);
    color: #FC8019;
    border-color: hsla(28, 97%, 55%, 0.35);
}

.swiggy-btn:hover {
    background: #FC8019;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(28, 97%, 55%, 0.4);
}

.zomato-btn {
    background: hsla(356, 76%, 55%, 0.12);
    color: #E23744;
    border-color: hsla(356, 76%, 55%, 0.35);
}

.zomato-btn:hover {
    background: #E23744;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(356, 76%, 55%, 0.4);
}

.delivery-logo-btn svg {
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.delivery-logo-label {
    display: inline;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Glowing Blurs */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.hero::before {
    top: 10%;
    left: -10%;
    background: var(--accent-bake);
}

.hero::after {
    bottom: 10%;
    right: -10%;
    background: var(--accent-juice);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h2 {
    font-size: 1.25rem;
    color: var(--accent-juice);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content h1 span.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

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

/* Styled Primary Buttons */
.btn-primary {
    background: var(--grad-primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--border-radius-lg);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px hsla(24, 100%, 55%, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px hsla(145, 80%, 48%, 0.35);
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 15px 35px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Floating Hero Image Box */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-border {
    position: relative;
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--border-glass), transparent 50%, var(--border-glass));
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

/* Floating Badges overlay */
.hero-badge-floating {
    position: absolute;
    background: hsla(220, 25%, 12%, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-badge-1 {
    top: 20%;
    left: -15%;
    border-left: 3px solid var(--accent-bake);
}

.hero-badge-2 {
    bottom: 15%;
    right: -10%;
    border-left: 3px solid var(--accent-juice);
}

.hero-badge-floating h4 {
    font-size: 1rem;
    font-weight: 700;
}

.hero-badge-floating p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Categories Quick Nav
   ========================================================================== */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    position: relative;
}

.category-slide-indicator {
    position: absolute;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1), top 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 224, 150, 0.3);
}

.category-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.category-pill svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    transition: var(--transition-smooth);
}

.category-pill:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.category-pill.active {
    background: var(--grad-primary);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(24, 100, 55, 0.2);
}

.category-pill.active svg {
    stroke: var(--text-dark);
}

/* ==========================================================================
   Menu Filtering & Grid Layout
   ========================================================================== */
.menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    min-width: 280px;
}

.search-box input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 14px 20px 14px 50px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--accent-juice);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-juice-glow);
}

.search-box svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Veg/Non-Veg Filter Buttons */
.filter-tags {
    display: flex;
    gap: 12px;
}

.tag-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.tag-btn .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.tag-btn-veg .dot {
    background-color: var(--accent-juice);
}

.tag-btn-nonveg .dot {
    background-color: var(--accent-bake);
}

.tag-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.tag-btn.active.tag-btn-veg {
    background: var(--accent-juice-glow);
    border-color: var(--accent-juice);
    color: var(--text-primary);
}

.tag-btn.active.tag-btn-nonveg {
    background: var(--accent-bake-glow);
    border-color: var(--accent-bake);
    color: var(--text-primary);
}

/* Responsive Food Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Beautiful Premium Card Design */
.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.food-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-bake);
    box-shadow: 0 12px 30px rgba(255, 107, 38, 0.25), 0 0 15px rgba(255, 107, 38, 0.05);
    background: var(--bg-card-hover);
}

.food-card.veg-card:hover {
    border-color: var(--accent-juice);
    box-shadow: 0 12px 30px rgba(0, 224, 150, 0.25), 0 0 15px rgba(0, 224, 150, 0.05);
}

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

.food-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Overlay badges */
.food-card-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.card-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.badge-bestseller {
    background: var(--grad-bake);
    color: var(--text-primary);
}

.badge-spicy {
    background: hsl(0, 80%, 50%);
    color: var(--text-primary);
}

.diet-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    background: hsla(220, 25%, 8%, 0.75);
    backdrop-filter: blur(8px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    z-index: 2;
}

.diet-indicator .diet-box {
    width: 14px;
    height: 14px;
    border: 2px solid;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diet-indicator.veg .diet-box {
    border-color: var(--accent-juice);
}

.diet-indicator.nonveg .diet-box {
    border-color: var(--accent-bake);
}

.diet-indicator .diet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.diet-indicator.veg .diet-dot {
    background-color: var(--accent-juice);
}

.diet-indicator.nonveg .diet-dot {
    background-color: var(--accent-bake);
}

/* Card Body details */
.food-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 8px;
}

.food-card-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.food-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(45, 100%, 55%);
}

.food-card-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

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

.food-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--border-glass);
}

.food-card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
}

.empty-menu-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ==========================================================================
   Shopping Cart Slide Drawer
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: hsl(220, 25%, 10%);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cart-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-smooth);
}

.cart-close-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.cart-close-btn svg {
    width: 24px;
    height: 24px;
}

/* Scrollable Item Container */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
    animation: slideIn 0.3s ease forwards;
}

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

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

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Quantity Selector control */
.cart-item-qty {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: var(--bg-card-hover);
    color: var(--accent-bake);
}

.qty-val {
    width: 24px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
}

.btn-remove-item:hover {
    color: var(--status-closed);
}

.btn-remove-item svg {
    width: 18px;
    height: 18px;
}

.cart-empty-state {
    text-align: center;
    margin: auto;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cart-empty-state svg {
    width: 64px;
    height: 64px;
    stroke: var(--border-glass);
}

/* Sticky Footer Calculations */
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-glass);
    background: hsla(220, 25%, 8%, 0.8);
    backdrop-filter: blur(10px);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cart-summary-line.total {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-glass);
}

.cart-summary-line.total span:last-child {
    color: var(--accent-bake);
}

.btn-checkout {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--border-radius-lg);
    background: var(--grad-primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(24, 100, 55, 0.2);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 80, 48, 0.3);
}

/* ==========================================================================
   Outlet Locations
   ========================================================================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-glow);
    background: var(--bg-card-hover);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.location-title {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Dynamic Open status indicator */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: hsla(0, 0%, 0%, 0.3);
}

.status-pill .indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-pill.open {
    color: var(--status-open);
}

.status-pill.open .indicator-dot {
    background-color: var(--status-open);
    box-shadow: 0 0 8px var(--status-open);
}

.status-pill.closed {
    color: var(--status-closed);
}

.status-pill.closed .indicator-dot {
    background-color: var(--status-closed);
}

.location-details {
    margin-bottom: 28px;
}

.location-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.location-detail-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-bake);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 12px;
}

.btn-delivery {
    background: var(--accent-bake-glow);
    border: 1px solid var(--accent-bake);
    color: var(--accent-bake);
    text-align: center;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-delivery:hover {
    background: var(--accent-bake);
    color: var(--text-dark);
}

.btn-delivery-zomato {
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid #E23744;
    color: #ff4a5a;
    text-align: center;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-delivery-zomato:hover {
    background: #E23744;
    color: var(--text-primary);
}

.btn-map {
    background: var(--accent-juice-glow);
    border: 1px solid var(--accent-juice);
    color: var(--accent-juice);
    text-align: center;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-map:hover {
    background: var(--accent-juice);
    color: var(--text-dark);
}

/* ==========================================================================
   Customer Testimonials Slider
   ========================================================================== */
.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 12px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 24px;
    text-align: center;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.testimonial-meta {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: hsl(45, 100%, 55%);
    font-size: 0.8rem;
    margin-top: 4px;
}

.testimonial-rating svg {
    width: 12px;
    height: 12px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-glass);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-juice);
    transform: scale(1.3);
}

/* ==========================================================================
   Contact / Inquiries Form
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info-panel p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-channel-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-channel-icon {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-juice);
    flex-shrink: 0;
}

.contact-channel-icon svg {
    width: 20px;
    height: 20px;
}

.contact-channel-detail h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

/* Glass styled form fields */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: hsla(220, 25%, 6%, 0.5);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-message {
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.form-message.error {
    color: var(--status-closed);
    display: block;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-bake);
    box-shadow: 0 0 0 3px var(--accent-bake-glow);
    background: hsla(220, 25%, 6%, 0.8);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    background: var(--grad-bake);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(24, 100, 55, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(24, 100%, 55%, 0.3);
}

/* ==========================================================================
   Checkout Success Centered Overlay Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.85);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-juice-glow);
    border: 2px solid var(--accent-juice);
    color: var(--accent-juice);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-success-icon svg {
    width: 36px;
    height: 36px;
}

.modal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.modal-details {
    background: hsla(220, 25%, 6%, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 16px 20px;
    margin-bottom: 32px;
    text-align: left;
    border: 1px solid var(--border-glass);
}

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modal-detail-row:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px dashed var(--border-glass);
    font-weight: 700;
}

.btn-modal-close {
    background: var(--grad-primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-modal-close:hover {
    box-shadow: 0 4px 15px rgba(24, 100, 55, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: hsl(220, 25%, 6%);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-bake);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-logo span {
    font-weight: 400;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    border-color: var(--accent-juice);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    color: var(--accent-juice);
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-col address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 100, 55, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(24, 100, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 100, 55, 0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.gallery-section {
    background: var(--bg-body-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-item--tall {
    grid-row: span 2;
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

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

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    /* Hide label text on mobile, show icon only for delivery buttons */
    .delivery-logo-label {
        display: none;
    }
    
    .delivery-logo-btn {
        padding: 6px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: hsl(220, 25%, 8%);
        border-top: 1px solid var(--border-glass);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 24px;
        z-index: 999;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links.open {
        left: 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge-1 {
        left: 5%;
    }
    
    .hero-badge-2 {
        right: 5%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .filter-controls-group {
        margin-left: 0 !important;
        width: 100%;
        justify-content: space-between;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item--tall {
        grid-column: span 2;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-badge-floating {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-item--tall {
        min-height: 180px;
    }
}

/* ==========================================================================
   Reviews System, Dynamic Star-Rating, Sorting Selects & WhatsApp Floating Icon
   ========================================================================== */

/* Menu sorting control selects */
.sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    padding-right: 32px;
}

.sort-select:focus {
    border-color: var(--accent-juice);
    box-shadow: 0 0 0 3px var(--accent-juice-glow);
}

.sort-select-wrapper::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--text-muted);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Floating WhatsApp ordering shortcut with pulse action */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

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

/* Testimonials rating statistics header summary */
.ratings-aggregate-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 30px 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.aggregate-score-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.score-number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
}

.score-scale {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.reviews-summary-stars {
    display: flex;
    gap: 4px;
}

.aggregate-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sync-actions-box {
    text-align: right;
}

/* Google Reviews refresh button styling */
.btn-sync-reviews {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-sync-reviews:hover:not(:disabled) {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-sync-reviews:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

/* Write a review submission card block style */
.write-review-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.write-review-header {
    margin-bottom: 24px;
}

.write-review-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.write-review-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.review-submission-form {
    display: flex;
    flex-direction: column;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-group.full-width {
    grid-column: 1 / -1;
}

.review-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-submission-form input[type="text"],
.review-submission-form textarea {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.review-submission-form input[type="text"]:focus,
.review-submission-form textarea:focus {
    border-color: var(--accent-juice);
    box-shadow: 0 0 0 2px var(--accent-juice-glow);
}

.review-submission-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Gold star rating visual clicker items */
.review-stars {
    display: flex;
    gap: 8px;
    font-size: 2.2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.review-stars span {
    transition: color 0.2s ease, transform 0.2s ease;
}

.review-stars span:hover,
.review-stars span.selected {
    color: hsl(45, 100%, 55%);
    transform: scale(1.15);
}

/* Extra responsive overrides for reviews form */
@media (max-width: 768px) {
    .ratings-aggregate-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .sync-actions-box {
        text-align: left;
    }
    .review-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .write-review-container {
        padding: 24px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   FAQ Accordion Section Styles
   ========================================================================== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent-bake-glow);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question span {
    padding-right: 16px;
}

.faq-question:focus-visible {
    background: var(--bg-card-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-content {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--accent-bake);
    box-shadow: 0 4px 20px rgba(255, 107, 38, 0.1);
}

.faq-item.active .faq-question {
    color: var(--accent-bake);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-bake);
}
