:root {
    --maroon: #7A0010;
    --gold: #EAB308;
    --ivory: #FDF6EC;
    --charcoal: #1C1C1C;
    --light-maroon: #8B1A2B;
    --dark-maroon: #5A0008;
    --light-gold: #FCD34D;
    --dark-gold: #CA8A04;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.navbar {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-menu a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-cart {
    position: relative;
}

.cart-icon {
    color: var(--ivory);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.cart-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--maroon);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.pexels.com/photos/1267320/pexels-photo-1267320.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 0, 16, 0.7) 0%, rgba(90, 0, 8, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--ivory);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--charcoal);
}

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

.btn-outline:hover {
    background: var(--maroon);
    color: var(--ivory);
}

.promo-banner {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--light-maroon) 100%);
    padding: 1.5rem 0;
    color: var(--ivory);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.promo-icon {
    font-size: 2.5rem;
}

.promo-text h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.countdown-timer {
    color: var(--light-gold);
    font-weight: 600;
}

.popular-picks {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

.dish-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(122, 0, 16, 0.15);
}

.dish-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-tags {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tag.spicy {
    background: rgba(239, 68, 68, 0.95);
    color: var(--white);
}

.dish-info {
    padding: 1.5rem;
}

.dish-name {
    color: var(--maroon);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.dish-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.dish-price {
    font-size: 1.5rem;
    color: var(--maroon);
    font-weight: 700;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--charcoal);
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(234, 179, 8, 0.4);
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(122, 0, 16, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1rem;
    opacity: 0;
    animation: fadeIn 0.5s ease 1s forwards;
}

.floating-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 0, 16, 0.5);
}

.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding-top: 0;
}

.allergen-disclaimer {
    background: var(--maroon);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
    animation: fadeIn 0.6s ease;
}

.allergen-disclaimer h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.allergen-disclaimer p {
    color: var(--ivory);
    margin-bottom: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.allergen-disclaimer em {
    color: var(--light-gold);
    font-style: italic;
}

.disclaimer-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.disclaimer-tags span {
    display: inline-block;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 20px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-300);
}

.menu-header {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    color: var(--ivory);
    padding: 3rem 0;
    text-align: center;
}

.menu-header h1 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.menu-controls {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.menu-controls .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--gray-100);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.search-bar svg {
    color: var(--gray-600);
    margin-right: 0.75rem;
}

.search-bar input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 1rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--maroon);
    background: transparent;
    color: var(--maroon);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon);
    color: var(--ivory);
}

.menu-section {
    padding: 3rem 0;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

.cart-page,
.checkout-page,
.track-page,
.offers-header {
    padding: 3rem 0;
}

.cart-page h1,
.checkout-page h1,
.track-page h1 {
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart svg {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

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

.cart-item-name {
    color: var(--maroon);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
}

.quantity-btn {
    background: var(--maroon);
    color: var(--ivory);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--dark-maroon);
    transform: scale(1.1);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    background: transparent;
    color: #EF4444;
    border: none;
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: #DC2626;
}

.cart-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.cart-summary h2 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.coupon-section {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.coupon-section input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.coupon-section input:focus {
    border-color: var(--gold);
}

.coupon-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.coupon-message.success {
    background: #D1FAE5;
    color: #065F46;
}

.coupon-message.error {
    background: #FEE2E2;
    color: #991B1B;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-line.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--maroon);
    border-bottom: none;
    padding-top: 1rem;
}

.summary-line.discount-line {
    color: #059669;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.free-delivery-progress {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.progress-bar {
    background: var(--gray-200);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 100%);
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.free-delivery-progress p {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

.checkout-form-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--maroon);
    background: rgba(122, 0, 16, 0.05);
}

.payment-card svg {
    color: var(--maroon);
}

.payment-card span {
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.checkout-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.checkout-summary h2 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

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

.checkout-item-name {
    font-weight: 500;
}

.checkout-item-qty {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.summary-totals {
    padding-top: 1rem;
    border-top: 2px solid var(--gray-200);
}

.order-success {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    margin: 2rem auto;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: scaleIn 0.5s ease;
}

.checkmark-circle {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: dash 0.6s ease forwards;
}

.checkmark-check {
    stroke: var(--maroon);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: dash 0.5s 0.3s ease forwards;
}

.order-success h2 {
    color: var(--maroon);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.order-success p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.order-details {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.order-details p {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-input-section {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
}

.tracking-input-section p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.tracking-form {
    display: flex;
    gap: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

.tracking-form input:focus {
    border-color: var(--gold);
}

.tracking-results {
    max-width: 800px;
    margin: 2rem auto;
}

.order-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
}

.order-info-card h2 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.order-info-card p {
    color: var(--gray-600);
}

.tracking-timeline {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    position: relative;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.timeline-step.active {
    opacity: 1;
}

.timeline-step.completed {
    opacity: 1;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 70px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--gray-300);
}

.timeline-step.completed:not(:last-child)::after {
    background: var(--gold);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.timeline-step.active .step-icon {
    background: var(--gold);
    animation: pulse 2s infinite;
}

.timeline-step.completed .step-icon {
    background: var(--maroon);
}

.timeline-step.active .step-icon svg,
.timeline-step.completed .step-icon svg {
    stroke: var(--white);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--maroon);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.step-time {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-style: italic;
}

.estimated-time {
    background: var(--ivory);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.estimated-time p {
    color: var(--charcoal);
    font-size: 1.125rem;
}

.tracking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-error {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    margin: 2rem auto;
}

.tracking-error svg {
    color: #EF4444;
    margin-bottom: 1.5rem;
}

.tracking-error h2 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.tracking-error p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.offers-header {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    color: var(--ivory);
    text-align: center;
    padding: 3rem 0;
}

.offers-header h1 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.offers-section {
    padding: 3rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(122, 0, 16, 0.15);
}

.offer-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--maroon);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 1;
}

.offer-image {
    height: 250px;
    overflow: hidden;
}

.offer-card.featured .offer-image {
    height: 100%;
}

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

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 2rem;
}

.offer-content h2 {
    color: var(--maroon);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.offer-content > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.offer-details {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-timer {
    margin-bottom: 1.5rem;
}

.timer-label {
    display: block;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon);
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
}

.offer-code {
    background: var(--ivory);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border: 2px dashed var(--gold);
}

.offer-code strong {
    color: var(--maroon);
    font-size: 1.25rem;
}

.btn-copy {
    background: var(--maroon);
    color: var(--ivory);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--dark-maroon);
}

.how-to-use {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 3rem;
}

.how-to-use h2 {
    text-align: center;
    color: var(--maroon);
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'Playfair Display', serif;
}

.step-card h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--gray-600);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.fade-in {
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

@media (max-width: 1024px) {
    .offer-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 500px;
    }

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

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

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

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

    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }

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

    .floating-order-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.5rem;
    }

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

    .countdown {
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

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

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

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-controls {
        justify-content: center;
    }

    .tracking-form {
        flex-direction: column;
    }
}
