:root {
    --primary-yellow: #00BFFF; /* Blue */
    --primary-pink: #FF1493;   /* Roze */
    --text-white: #FF1493;     /* Pink instead of White */
    --bg-dark: #000000;
    --overlay: rgba(0, 0, 0, 0.6);
    --error-red: #ff4757; /* Brighter red/pink for error */
    --calendar-bg: #1a1a1a; /* Dark Calendar */
    --calendar-text: #FF1493; /* Pink */
    --selected-date: #00BFFF; /* Blue for selection (swapped) or keep pink? User said yellow -> blue, white -> pink. Selection was pink. */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(var(--overlay), var(--overlay)), url('0001.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 0px #b8860b,
        2px 2px 0px #b8860b,
        3px 3px 0px #b8860b,
        4px 4px 0px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    animation: fadeInDown 1s ease-out;
}

.logo:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    animation: fadeInDown 1s ease-out 0.3s backwards;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-shadow: 
        1px 1px 0px #555,
        2px 2px 0px rgba(0,0,0,0.5);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    box-shadow: 0 0 10px var(--primary-yellow), 0 0 20px var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-yellow);
    text-shadow: 
        1px 1px 0px #b8860b,
        2px 2px 0px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

nav ul li a:hover::after, nav ul li a.active::after {
    transform: scaleX(1);
}

.lang-selector {
    border: 1px solid var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.lang-selector:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

/* Keyframes for Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    /* Background handled by body */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 10%;
    position: relative;
}

.hero-content {
    text-align: right;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1.5s ease-out;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-white);
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    animation: fadeInUp 1.5s ease-out 1s forwards;
    opacity: 0;
}

.btn {
    text-decoration: none;
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

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

.btn-outline:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateX(-5px);
}

.btn i {
    font-size: 18px;
}

.btn-outline:nth-child(1):hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: black;
}

/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-sidebar a {
    color: var(--text-white);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-sidebar a:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

/* Reservation Section - Dark Theme */
.reservation-section {
    min-height: 100vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    color: var(--text-white);
}

.reservation-container {
    background: #111;
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); /* Subtle yellow glow */
    border: 1px solid #333;
}

/* Reservation Icons */
.reservation-icons {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.reservation-icons i {
    font-size: 24px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.reservation-icons i.active, .reservation-icons i:hover {
    color: var(--primary-yellow);
}

/* Error Message */
.error-message {
    background-color: rgba(255, 20, 147, 0.2); /* Transparent Pink */
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.section-header i {
    font-size: 24px;
    color: var(--primary-yellow);
}

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
}

/* Calendar Wrapper */
.calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.month-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.nav-btn {
    background: transparent;
    border: 1px solid #555;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s;
}

.nav-btn:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.calendar-grid {
    display: flex;
    gap: 40px;
    flex: 1;
    overflow-x: auto;
}

.month-group {
    flex: 1;
    min-width: 250px;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 15px;
}

.weekdays span {
    text-align: center;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 15px;
}

.days span {
    text-align: center;
    font-size: 14px;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.days span.selected-date {
    background-color: var(--selected-date);
    color: var(--text-white);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.days span:hover:not(.selected-date):not(:empty) {
    background-color: #333;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    color: var(--primary-yellow);
}

.days span.disabled {
    color: #333;
    cursor: not-allowed;
    pointer-events: none;
}

/* Time Range Selection Styles */
.time-range-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

.time-input-group label {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.time-select {
    width: 100%;
    padding: 12px 15px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF1493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.time-select:focus, .time-select:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.time-separator {
    color: var(--primary-pink);
    font-size: 20px;
    margin-top: 20px;
}

/* Reservation Submit Button */
.reservation-submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    padding: 15px;
    background-color: var(--primary-yellow);
    color: var(--text-white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.reservation-submit-btn:hover {
    background-color: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.5);
}

/* Menu Section */
.menu-section {
    min-height: 100vh;
    background-color: #000;
    padding: 100px 20px 50px;
    color: var(--text-white);
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-yellow);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-pink);
}

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

.menu-category {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

.menu-category h3 {
    color: var(--primary-pink);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #444;
    padding-bottom: 15px;
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    align-items: center;
}

.menu-items li span:first-child {
    font-weight: 500;
    color: #ddd;
}

.menu-items li span:last-child {
    color: var(--primary-yellow);
    font-weight: 700;
}

.menu-items li.item-desc {
    display: block;
    color: #888;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 15px;
    font-style: italic;
}

/* Add to Cart Button */
.add-btn {
    background: transparent;
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 10px;
}

.add-btn:hover {
    background: var(--primary-yellow);
    color: black;
}

/* Cart Floating Button */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-yellow);
    color: black;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

/* Cart Sidebar/Modal */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    justify-content: flex-end;
}

.cart-sidebar {
    width: 100%;
    max-width: 400px;
    background: #111;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #333;
    animation: slideIn 0.3s ease;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.cart-header h2 {
    color: var(--primary-yellow);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 5px;
}

.cart-item-info h4 {
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-item-info span {
    color: var(--primary-yellow);
    font-size: 13px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls button {
    background: transparent;
    border: 1px solid #555;
    color: var(--text-white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-item-controls button:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.cart-item-controls span {
    color: var(--text-white);
    font-weight: bold;
    font-size: 14px;
}

.cart-item-remove {
    color: var(--error-red);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
}

.cart-footer {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-white);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #d01078;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-content {
    background: #111;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--primary-yellow);
    position: relative;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text-white);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-yellow);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input {
    accent-color: var(--primary-pink);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    display: none;
}

.thank-you-message i {
    font-size: 50px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews-section {
    background-color: #000;
    padding: 100px 20px;
    color: var(--text-white);
}

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

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

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.review-text {
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-name {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 16px;
}

/* Review Form */
.review-form-container {
    margin-top: 60px;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-form-container h3 {
    text-align: center;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    font-size: 24px;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-input span {
    color: #ddd;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating i {
    color: #555;
    cursor: pointer;
    font-size: 20px;
    transition: color 0.2s;
}

.star-rating i.active, .star-rating i:hover {
    color: var(--primary-yellow);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    background-color: #222;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.contact-icon {
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-desc {
    color: #aaa;
    margin-bottom: 30px;
}

.contact-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

.call-btn {
    background-color: var(--primary-yellow);
    color: #000;
}

.call-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
}

.instagram-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.95);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        border-top: 1px solid #333;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav.active {
        display: flex;
        animation: fadeInDown 0.3s ease-out;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    
    .hero {
        align-items: center;
        padding-right: 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-group {
        align-items: center;
    }

    .calendar-grid {
        gap: 10px;
    }
    
    .month-header {
        padding: 0 10px;
    }
    
    .time-range-selection {
        flex-direction: column;
        gap: 20px;
    }

    .time-separator {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .time-input-group {
        width: 100%;
    }

    .contact-actions {
        flex-direction: column;
    }

    .phone-number {
        font-size: 24px;
    }

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

    .menu-category {
        padding: 20px;
    }

    .cart-sidebar {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .days span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .days span.selected-date {
        width: 30px;
        height: 30px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-card {
        padding: 20px;
    }

    .cart-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .home-floating-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}