* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Carousel Wrapper ===== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px; /* important for edge cut issue */
}

/* ===== Carousel ===== */
.owl-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 24px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.owl-carousel::-webkit-scrollbar {
    display: none;
}

/* ===== Carousel Item ===== */
.owl-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

/* ===== Menu Card ===== */
.menu-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Image ===== */
.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== Content ===== */
.menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.menu-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* ===== Center Text ===== */
.justify-center {
    text-align: center;
    display: flex;
    gap: 10px !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* ===== Filter Button ===== */
.filter-btn {
    padding: 12px 24px;
    border: 2px solid #D97706;
    background: #ffffff;
    color: #333;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.filter-btn.active {
    background: #D97706;
    color: #ffffff;
}

/* ===== Reserve Button ===== */
.reserve-btn {
    margin-top: 20px;
    padding: 14px 34px;
    background-color: #691719;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background-color: #9c7754;
    transform: translateY(-2px);
}

/* ===== Dots ===== */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 28px;
    border-radius: 8px;
    background: #691719;
}

/* =======================
   RESPONSIVE BREAKPOINTS
   ======================= */

/* Mobile */
@media (max-width: 640px) {
    .owl-item {
        width: 100%;
    }

    .menu-image {
        height: 180px;
    }

    .menu-name {
        font-size: 1.2rem;
    }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .owl-item {
        width: calc(50% - 10px);
    }

    .menu-image {
        height: 190px;
    }
}

/* Laptop / Desktop */
@media (min-width: 1025px) {
    .owl-item {
        width: calc(25% - 18px);
    }
}
