@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap');

:root {
    --primary-color: #1c1917;
    --accent-color: #d97706;
    --text-color: #d6d3d1;
    --text-light: #a8a29e;
    --bg-white: #292524;
    --bg-light: #1c1917;
    --border-color: #44403c;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #1c1917;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #292524;
    box-shadow: var(--shadow);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #d6d3d1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f59e0b;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d6d3d1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero-bbq.png') center/cover no-repeat;
    margin-top: 82px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.social-links {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #b91c1c;
    color: white;
}

.btn-primary:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1c1917;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #a8a29e;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Menu Section */
.menu {
    background: #1c1917;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #292524;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.menu-item p {
    color: #a8a29e;
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f59e0b;
}

/* Order Section */
.order {
    background: #292524;
}

.order-schedule {
    text-align: center;
    background: #1c1917;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.schedule-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.schedule-subtext {
    color: #a8a29e;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.order-cart {
    background: #1c1917;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.order-cart h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.cart-items {
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.cart-item-qty {
    font-size: 0.9rem;
    color: #a8a29e;
}

.cart-item-price {
    font-weight: 700;
    color: #f59e0b;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #a8a29e;
    cursor: pointer;
    padding: 0 0.5rem;
}

.cart-item-remove:hover {
    color: #d32f2f;
}

.cart-empty {
    color: #a8a29e;
    text-align: center;
    padding: 2rem 0;
}

.cart-total {
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}

#total-amount {
    color: #f59e0b;
}

/* Forms */
.order-form, .contact-form {
    background: #1c1917;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.order-form h3, .contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #d6d3d1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #292524;
    color: #d6d3d1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background: #1c1917;
}


/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #292524;
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 100px, #8b4513 100px, #8b4513 101px);
}

.testimonials-section .section-badge {
    display: inline-block;
    background: #b45309;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: 0.125rem;
    font-family: Georgia, serif;
}

.testimonials-section .section-title-lg {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonials-section .section-title-lg .highlight {
    color: #dc2626;
}

.testimonials-section .section-divider {
    height: 4px;
    width: 6rem;
    background: #b45309;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1c1917;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #f59e0b;
    font-size: 1.25rem;
}

.testimonial-content {
    color: #d6d3d1;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: Georgia, serif;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    color: #a8a29e;
    font-size: 0.875rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #1c1917;
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    opacity: 0.1;
    font-size: 9rem;
    font-weight: 900;
    font-family: Georgia, serif;
    z-index: 1;
}

.about-bg-bbq {
    top: 5rem;
    right: 2.5rem;
    color: #991b1b;
    transform: rotate(12deg);
}

.about-bg-smoke {
    bottom: 5rem;
    left: 2.5rem;
    color: #b45309;
    transform: rotate(-12deg);
}

.about-header {
    margin-bottom: 4rem;
}

.about-header .section-badge {
    display: inline-block;
    background: #b91c1c;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: 0.125rem;
    font-family: Georgia, serif;
}

.about-header .section-title-lg {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    max-width: 64rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.about-header .highlight {
    color: #f59e0b;
}

.about-header .highlight-red {
    color: #dc2626;
}

.about-divider {
    height: 4px;
    width: 8rem;
    background: #f59e0b;
}

.about-story {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.about-text {
    font-size: 1.125rem;
    color: #d6d3d1;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.about-quote {
    font-size: 1.25rem;
    color: #f59e0b;
    line-height: 1.9;
    font-weight: 700;
    font-family: Georgia, serif;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 340px; /* slightly reduced to scale image down */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: #1c1917; /* matching section background for clean letterbox */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full image without cropping */
    object-position: center;
    padding: 1rem; /* small padding so image doesn't touch edges */
}


/* Contact Section */
.contact {
    background: #1c1917;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #292524;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    color: #d6d3d1;
}

.contact-item a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-hours h4 {
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #292524;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid var(--border-color);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #a8a29e;
    line-height: 1;
}

.modal-close:hover {
    color: #d6d3d1;
}

.modal-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: white;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #d6d3d1;
}

/* Meats Section Styles */
.meats-section {
    padding: 6rem 0;
    background: #1c1917;
    position: relative;
    overflow: hidden;
}

.meats-section .decorative-texture {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, #8b4513 80px, #8b4513 81px);
}

.meats-section .section-badge {
    display: inline-block;
    background: #b45309;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: 0.125rem;
    font-family: Georgia, serif;
}

.meats-section .section-title-lg {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.meats-section .section-title-lg .highlight {
    color: #dc2626;
}

.meats-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meats-section .divider-line {
    height: 1px;
    width: 4rem;
    background: #d97706;
}

.meats-section .section-tagline {
    color: #a8a29e;
    font-size: 1.125rem;
    font-family: Georgia, serif;
}

.meats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.meat-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: #292524;
    height: 420px;
    transition: all 0.3s;
}

.meat-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.meat-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #b91c1c;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.125rem;
    z-index: 10;
    font-family: Georgia, serif;
}

.meat-card-qty-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    background: #dc2626;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.meat-card-qty-badge.hidden {
    display: none;
}

.meat-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.meat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.meat-card:hover .meat-card-image img {
    transform: scale(1.05);
}

.meat-card-content {
    padding: 1.5rem;
    background: #292524;
}

.meat-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.meat-card-description {
    color: #a8a29e;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.meat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meat-card-price {
    color: #f59e0b;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Georgia, serif;
}

.meat-add-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #b91c1c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 700;
    font-size: 0.875rem;
}

.meat-add-btn:hover {
    background: #991b1b;
}

.meat-qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #44403c;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.meat-qty-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.125rem;
    font-weight: 700;
}

.meat-qty-btn.remove {
    background: #b91c1c;
}

.meat-qty-btn.remove:hover {
    background: #991b1b;
}

.meat-qty-btn.add {
    background: #d97706;
}

.meat-qty-btn.add:hover {
    background: #b45309;
}

.meat-qty-display {
    color: white;
    font-weight: 700;
    width: 2rem;
    text-align: center;
    font-size: 1.125rem;
}

/* Sides Section Styles */
.sides-section {
    padding: 6rem 0;
    background: #292524;
    position: relative;
    overflow: hidden;
}

.sides-section .decorative-smoke {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.sides-section .smoke-blob-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: #f59e0b;
    border-radius: 9999px;
    filter: blur(96px);
}

.sides-section .smoke-blob-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: #ef4444;
    border-radius: 9999px;
    filter: blur(96px);
}

.sides-section .section-badge {
    display: inline-block;
    background: #d97706;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: 0.125rem;
    font-family: Georgia, serif;
}

.sides-section .section-title-lg {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.sides-section .section-title-lg .highlight {
    color: #f59e0b;
}

.sides-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sides-section .divider-line {
    height: 1px;
    width: 4rem;
    background: #dc2626;
}

.sides-section .section-tagline {
    color: #a8a29e;
    font-size: 1.125rem;
    font-family: Georgia, serif;
}

.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.side-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: #1c1917;
    height: 340px;
    transition: all 0.3s;
}

.side-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.side-card-qty-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    background: #b91c1c;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.side-card-qty-badge.hidden {
    display: none;
}

.side-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.side-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.side-card:hover .side-card-image img {
    transform: scale(1.05);
}

.side-card-content {
    padding: 1.25rem;
    background: #1c1917;
}

.side-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    font-family: Georgia, serif;
}

.side-card-description {
    color: #a8a29e;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-card-price {
    color: #f59e0b;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: Georgia, serif;
}

.side-add-btn {
    width: 2.25rem;
    height: 2.25rem;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.side-add-btn:hover {
    background: #b45309;
}

.side-qty-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #44403c;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.side-qty-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    color: white;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.125rem;
    font-weight: 700;
}

.side-qty-btn.remove {
    background: #b91c1c;
}

.side-qty-btn.remove:hover {
    background: #991b1b;
}

.side-qty-btn.add {
    background: #d97706;
}

.side-qty-btn.add:hover {
    background: #b45309;
}

.side-qty-display {
    color: white;
    font-weight: 700;
    width: 1.5rem;
    text-align: center;
}

/* Combo Deals Section Styles */
.combo-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #292524, #1c1917);
    position: relative;
    overflow: hidden;
}

.combo-section .combo-decorative-smoke {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.combo-section .combo-smoke-blob-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: #f59e0b;
    border-radius: 9999px;
    filter: blur(96px);
}

.combo-section .combo-smoke-blob-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: #dc2626;
    border-radius: 9999px;
    filter: blur(96px);
}

.combo-section .section-badge {
    display: inline-block;
    background: #b91c1c;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: 0.125rem;
    font-family: Georgia, serif;
}

.combo-section .section-title-lg {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.combo-section .section-title-lg .highlight {
    color: #f59e0b;
}

.combo-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.combo-section .divider-line {
    height: 1px;
    width: 4rem;
    background: #d97706;
}

.combo-section .section-tagline {
    color: #a8a29e;
    font-size: 1.125rem;
    font-family: Georgia, serif;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.combo-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: #292524;
    border: 1px solid #44403c;
    transition: all 0.3s;
}

.combo-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: #d97706;
    transform: translateY(-4px);
}

.combo-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d97706;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    z-index: 10;
    font-family: Georgia, serif;
}

.combo-card-savings {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.combo-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.combo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.combo-card:hover .combo-card-image img {
    transform: scale(1.05);
}

.combo-card-content {
    padding: 1.5rem;
    background: #292524;
}

.combo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.combo-card-description {
    color: #a8a29e;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.combo-card-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.combo-item-tag {
    background: #44403c;
    color: #d6d3d1;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.combo-card-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.combo-card-price {
    color: #f59e0b;
    font-size: 1.875rem;
    font-weight: 700;
    font-family: Georgia, serif;
}

.combo-card-original-price {
    color: #78716c;
    font-size: 1.125rem;
    text-decoration: line-through;
}

.combo-add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #b91c1c;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 700;
    font-size: 0.875rem;
}

.combo-add-btn:hover {
    background: #991b1b;
}

.combo-add-btn span:first-child {
    font-size: 1.125rem;
}

.combo-qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #44403c;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.combo-qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.125rem;
    font-weight: 700;
}

.combo-qty-btn.remove {
    background: #b91c1c;
}

.combo-qty-btn.remove:hover {
    background: #991b1b;
}

.combo-qty-btn.add {
    background: #d97706;
}

.combo-qty-btn.add:hover {
    background: #b45309;
}

.combo-qty-display {
    color: white;
    font-weight: 700;
    width: 2.5rem;
    text-align: center;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .combo-section .section-title-lg {
        font-size: 2.5rem;
    }

    .combo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .meats-section .section-title-lg {
        font-size: 2.5rem;
    }

    .meats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .sides-section .section-title-lg {
        font-size: 2.5rem;
    }

    .sides-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .meats-section .section-title-lg {
        font-size: 2rem;
    }

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

    .sides-section .section-title-lg {
        font-size: 2rem;
    }

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

    .combo-section .section-title-lg {
        font-size: 2rem;
    }

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

    .about-section .section-title-lg {
        font-size: 2rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-bg-text {
        font-size: 4rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #292524;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description,
    .hero-cta-text {
        font-size: 1rem;
    }

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-cart {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

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