/* ===================================================
   Sweet Treats – Public Stylesheet v2.0
   Mobile-first, modern, elegant bakery theme
   =================================================== */

/* ---------- Variables ---------- */
:root {
    --primary: #f1759d;
    --primary-dark: #d85a80;
    --primary-light: #ffa5c0;
    --secondary: #84e1dd;
    --secondary-dark: #5dcbc6;
    --bg-pink: #ffd7e4;
    --bg-cream: #fff9f5;
    --bg-light: #f8f4f0;
    --text-dark: #2d2d2d;
    --text-body: #555;
    --text-muted: #888;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

img { max-width: 100%; height: auto; }

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

.container { max-width: 1200px; }

/* ---------- Section Headings ---------- */
.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    position: relative;
}
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.section-subheading {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 0.75rem 0;
    transition: box-shadow var(--transition), padding var(--transition);
    z-index: 1050;
}
.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}
.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 0.5rem;
}
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
}
.navbar-toggler {
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus { box-shadow: none; }
.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 0.85rem !important;
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.88rem;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* ===================================================
   TICKER
   =================================================== */
.ticker-bar {
    background: var(--bg-pink);
    padding: 0.4rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid var(--secondary);
    font-size: 0.9rem;
}
.ticker-track {
    display: inline-block;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

/* ===================================================
   HERO
   =================================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-pink);
}
.hero-section:not(:has(.ticker-bar ~ &)) {
    margin-top: 68px;
}
.hero-section .carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}
.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .carousel-indicators {
    bottom: 20px;
    z-index: 5;
}
.hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
}
.hero-section .carousel-indicators button.active {
    opacity: 1;
    background: var(--primary);
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 5;
    width: 50px;
}
.hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
    background: rgba(0,0,0,0.35);
    min-height: 85vh;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-overlay * {
    pointer-events: auto;
}
.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 20%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-title {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition);
}
.btn-hero-primary:hover {
    background: var(--white);
    color: var(--primary);
}
.btn-hero-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition);
}
.btn-hero-whatsapp:hover {
    background: var(--white);
    color: #25D366;
}

/* ===================================================
   INSTAGRAM BAR
   =================================================== */
.instagram-bar {
    background: var(--white);
    text-align: center;
    padding: 0.65rem 0;
    box-shadow: var(--shadow-sm);
}
.instagram-bar a {
    color: #E1306C;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.instagram-bar a:hover { color: #C13584; }

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}
.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: var(--bg-pink);
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.why-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================================
   OUR STORY
   =================================================== */
.story-section {
    padding: 5rem 0;
    background: var(--white);
}
.story-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.story-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid var(--bg-pink);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.story-image {
    width: 100%;
    display: block;
}
.story-text p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: var(--text-body);
}
.story-text p:last-child { margin-bottom: 0; }
.story-section .section-heading {
    text-align: left;
}
.story-section .section-heading::after {
    margin-left: 0;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.gallery-filter {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    color: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}
.gallery-item.hidden {
    display: none;
}

/* ===================================================
   MENU
   =================================================== */
.menu-section {
    padding: 5rem 0;
    background: var(--white);
}
.menu-category {
    margin-bottom: 0.75rem;
}
.category-header {
    background: var(--bg-pink);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}
.category-header:hover {
    background: #feafc8;
}
.category-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.cat-toggle {
    transition: transform var(--transition);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.category-header.open .cat-toggle {
    transform: rotate(180deg);
}
.cat-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
}
.category-items {
    display: none;
    padding: 0.5rem 0;
}
.category-items.open {
    display: block;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f0ebe5;
    transition: background var(--transition), transform 0.15s ease;
    gap: 1rem;
    cursor: pointer;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: #fef7f9; transform: translateX(3px); }
.menu-item:active { transform: scale(0.995); }
.menu-item-expand {
    color: #ccc;
    font-size: 0.75rem;
    align-self: center;
    flex-shrink: 0;
    transition: color var(--transition);
}
.menu-item:hover .menu-item-expand { color: var(--primary); }
.menu-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

/* Diet badges (Indian food-standard style) */
.diet-badge {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid;
    position: relative;
    flex-shrink: 0;
}
.diet-badge.veg { border-color: #2ecc71; }
.diet-badge.veg::after {
    content: '';
    width: 6px; height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.diet-badge.nonveg { border-color: #8b4513; }
.diet-badge.nonveg::after {
    content: '';
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #8b4513;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-55%);
}

.menu-item-prices {
    flex-shrink: 0;
    text-align: right;
    min-width: 140px;
}
.size-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.size-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}
.size-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 3px;
    min-width: 10px;
}
.size-amount {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ===================================================
   MENU ITEM DETAIL MODAL
   =================================================== */
.item-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.item-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.item-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
}
.item-modal-backdrop.open .item-modal {
    transform: translateY(0) scale(1);
}
.item-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background var(--transition);
}
.item-modal-close:hover { background: var(--bg-pink); }
.item-modal-image {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--bg-cream);
}
.item-modal-image img#modalImage {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}
.item-modal-image.empty { display: none; }
.item-modal-gallery {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    overflow-x: auto;
    background: rgba(0,0,0,0.03);
    scrollbar-width: thin;
}
.item-modal-gallery::-webkit-scrollbar { height: 4px; }
.item-modal-gallery::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.gallery-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.65;
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(241,117,157,0.3);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.item-modal-content {
    padding: 1.5rem 1.75rem 1.75rem;
}
.item-modal-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.item-modal-badges .modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    background: #eafaf2;
    color: #27ae60;
}
.item-modal-badges .modal-badge.nonveg {
    background: #fdf2e9;
    color: #8b4513;
}
.item-modal-badges .modal-badge .diet-badge {
    width: 12px;
    height: 12px;
}
.item-modal-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-dark);
}
.item-modal-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1rem;
}
.item-modal-desc:empty { display: none; }
.item-modal-detailed-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #fff5f8 0%, #fef9f0 100%);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}
.item-modal-detailed-desc p { margin: 0; }
.item-modal-ingredients {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--bg-cream);
    border-radius: var(--radius);
    line-height: 1.6;
}
.item-modal-ingredients:empty { display: none; }
.item-modal-ingredients strong {
    color: var(--text-body);
}
.item-modal-sizes {
    margin-bottom: 1.25rem;
}
.item-modal-sizes table {
    width: 100%;
    border-collapse: collapse;
}
.item-modal-sizes th {
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0 0 0.5rem;
    border-bottom: 2px solid var(--bg-pink);
}
.item-modal-sizes th:last-child { text-align: right; }
.item-modal-sizes td {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f5f0ec;
    font-size: 0.92rem;
}
.item-modal-sizes td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--text-dark);
}
.item-modal-order {
    display: block;
    text-align: center;
    background: #25D366;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    text-decoration: none;
}
.item-modal-order:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================================
   INFO SECTION
   =================================================== */
.info-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
    text-align: center;
}
.info-card:hover { transform: translateY(-4px); }
.info-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--bg-pink);
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}
.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.info-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    margin: 0;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    flex-shrink: 0;
}
.testimonial-stars {
    margin-bottom: 1rem;
}
.testimonial-stars .fa-star {
    color: #ddd;
    font-size: 1rem;
    margin: 0 1px;
}
.testimonial-stars .fa-star.filled {
    color: #f5a623;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}
.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-prev,
.testimonial-next {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 0.85rem;
}
.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: var(--white);
}
.testimonial-dots {
    display: flex;
    gap: 0.4rem;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background var(--transition);
}
.testimonial-dot.active {
    background: var(--primary);
}

/* ===================================================
   CTA
   =================================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-pink) 0%, #ffe0ec 50%, #e0f7f5 100%);
}
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 0.75rem 2.25rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all var(--transition);
}
.btn-cta-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-cta-call {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.75rem 2.25rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
}
.btn-cta-call:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: #2d2d2d;
    color: #ccc;
    padding: 4rem 0 0;
}
.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}
.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}
.footer-brand p {
    color: #999;
    font-size: 0.9rem;
}
.site-footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.site-footer h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.footer-contact a { color: #ccc; }
.footer-contact a:hover { color: var(--primary); }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #777;
}
.footer-bottom .fa-heart { color: var(--primary); }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1060;
        background: var(--white);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
    }
    .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-heading { font-size: 2rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-logo { width: 90px; height: 90px; }
    .hero-overlay { min-height: 70vh; }
    .hero-section { min-height: 70vh; }
    .ticker-bar { margin-top: 60px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .gallery-filters {
        gap: 0.35rem;
    }
    .gallery-filter {
        font-size: 0.8rem;
        padding: 0.3rem 0.85rem;
    }

    .menu-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .menu-item-img {
        width: 48px;
        height: 48px;
    }
    .menu-item-info {
        flex: 1;
        min-width: calc(100% - 60px);
    }
    .menu-item-prices {
        text-align: left;
        min-width: unset;
        width: 100%;
    }
    .size-dots { display: none; }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 { font-size: 1.6rem; }

    .why-section,
    .story-section,
    .gallery-section,
    .menu-section,
    .info-section,
    .testimonials-section,
    .cta-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { padding: 1.5rem 0.5rem; }
    .testimonial-text { font-size: 1rem; }
    .item-modal-backdrop { padding: 0; align-items: flex-end; }
    .item-modal {
        max-height: 95vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .item-modal-content { padding: 1.25rem; }
    .item-modal-name { font-size: 1.3rem; }
    .item-modal-image img#modalImage { max-height: 220px; }
    .gallery-thumb { flex: 0 0 44px; width: 44px; height: 44px; }
    .item-modal-gallery { padding: 0.35rem 0.5rem; gap: 0.35rem; }
}
