/* =========================================================
   THE ROLLING DOUGH - PREMIUM GOURMET PIZZERIA STYLES
   ========================================================= */

:root {
    --bg-primary: #0f0f11;
    --bg-secondary: #18181c;
    --bg-card: #202026;
    --bg-card-hover: #2a2a32;
    --accent-red: #e63946;
    --accent-orange: #f4a261;
    --accent-gold: #e7c169;
    --text-primary: #f8f9fa;
    --text-secondary: #a0a0ab;
    --text-muted: #6c757d;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(24, 24, 28, 0.75);
    --glass-border: rgba(255, 255, 255, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif, Georgia;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 25px rgba(230, 57, 70, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header & Glass Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo-img {
    height: 36px;
    max-height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

.logo-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-direct-call {
    background: linear-gradient(135deg, var(--accent-orange), #e65100);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.btn-direct-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 162, 97, 0.6);
}

.btn-direct-lg {
    background: linear-gradient(135deg, var(--accent-orange), #e65100);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.5);
}

.btn-direct-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.7);
}

.btn-direct-sm {
    background: linear-gradient(135deg, var(--accent-orange), #e65100);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-direct-sm:hover {
    transform: translateY(-1px);
}

.direct-chip {
    background: rgba(244, 162, 97, 0.15);
    border: 1px solid rgba(244, 162, 97, 0.4);
    color: var(--accent-orange);
    cursor: pointer;
}

.btn-zomato {
    background: #cb202d;
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(203, 32, 45, 0.35);
}

.btn-zomato:hover {
    background: #e22534;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(203, 32, 45, 0.5);
}

.btn-swiggy {
    background: #fc8019;
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(252, 128, 25, 0.35);
}

.btn-swiggy:hover {
    background: #ff9133;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 128, 25, 0.5);
}

.btn-zomato-lg {
    background: linear-gradient(135deg, #cb202d, #e22534);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(203, 32, 45, 0.45);
}

.btn-zomato-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 32, 45, 0.65);
}

.btn-swiggy-lg {
    background: linear-gradient(135deg, #fc8019, #ff9133);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(252, 128, 25, 0.45);
}

.btn-swiggy-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 128, 25, 0.65);
}

.menu-online-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.link-chip {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.zomato-chip {
    background: rgba(203, 32, 45, 0.15);
    border: 1px solid rgba(203, 32, 45, 0.4);
    color: #ff5252;
}

.swiggy-chip {
    background: rgba(252, 128, 25, 0.15);
    border: 1px solid rgba(252, 128, 25, 0.4);
    color: #ffa726;
}

.rating-badge {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #d62828);
    color: white;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.cart-btn {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-orange);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(15,15,17,0.4) 0%, var(--bg-primary) 100%),
                url('pizza.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(15,15,17,0.85) 0%, rgba(15,15,17,0.95) 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(244, 162, 97, 0.15);
    border: 1px solid rgba(244, 162, 97, 0.3);
    border-radius: 30px;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hero-title span {
    color: var(--accent-orange);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-badge-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.hero-badge-text h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
}

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

/* Feature Cards / Menu Header */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Menu Controls & Categories */
.menu-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: var(--bg-secondary);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent-red);
    color: white;
}

.menu-filter-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    width: 200px;
}

.search-input:focus {
    border-color: var(--accent-orange);
}

/* Custom Unique Veg Only Toggle Switch */
.veg-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    user-select: none;
    cursor: pointer;
}

.veg-toggle-wrapper:hover {
    background: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.3);
}

.veg-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
    margin: 0;
}

.veg-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.veg-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #2a2a32;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    padding: 2px;
}

.veg-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.veg-switch input:checked + .veg-slider {
    background: linear-gradient(135deg, #1e824c, #2ecc71);
    border-color: #2ecc71;
    box-shadow: 0 0 14px rgba(46, 204, 113, 0.4);
}

.veg-switch input:checked + .veg-slider .veg-knob {
    transform: translateX(22px);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.veg-label-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.veg-toggle-wrapper:has(input:checked) .veg-label-text {
    color: #2ecc71;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 162, 97, 0.4);
    box-shadow: var(--shadow-card);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    background: #111;
    overflow: hidden;
}

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

.menu-card:hover .card-img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-veg {
    background: rgba(46, 204, 113, 0.9);
    color: #000;
}

.tag-spicy {
    background: rgba(231, 76, 60, 0.9);
    color: #fff;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

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

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.add-cart-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.add-cart-btn:hover {
    background: #d62828;
}

/* About / Story Section */
.about-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Location & Contact Section */
.location-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

/* Cart Side Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

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

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

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 4px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: bold;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-card);
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-orange);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--accent-orange);
    color: var(--text-primary);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Footer */
footer {
    background: #08080a;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    .nav-links {
        display: none;
    }
    .hero-container, .about-grid, .location-card {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}