/* Menu Order Styles */
.cart-icon-fixed {
    position: fixed;
    top: 120px;
    right: 30px;
    background: #b7821f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(183, 130, 31, 0.4);
    transition: all 0.3s;
}

.cart-icon-fixed:hover {
    transform: scale(1.1);
    background: #d9ba85;
}

.cart-icon-fixed i {
    font-size: 24px;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f5365c;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #b7821f;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}


.filter-btn:hover,
.filter-btn.active {
    background: #b7821f;
    color: #fff;
}

/* Menu Item Card */
.menu-item-card {
    background: #1a1814;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-item-card:hover {
    border-color: #b7821f;
    transform: translateY(-5px);
}

.menu-item-card h4 {
    color: #b7821f;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.menu-item-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-item-price {
    color: #b7821f;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: #b7821f;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.add-to-cart-btn:hover {
    background: #d9ba85;
    transform: scale(1.05);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #1a1814;
    z-index: 9999;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}


.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #37332a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #b7821f;
    margin: 0;
    font-family: "Playfair Display", serif;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    background: #0c0b09;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #37332a;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.cart-item-name {
    color: #b7821f;
    font-weight: 600;
    font-size: 16px;
}

.remove-item {
    background: none;
    border: none;
    color: #f5365c;
    cursor: pointer;
    font-size: 18px;
}

.cart-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: #b7821f;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #d9ba85;
}

.item-quantity {
    color: #fff;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.item-price {
    color: #b7821f;
    font-weight: bold;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #37332a;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.cart-total span:last-child {
    color: #b7821f;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #b7821f;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #d9ba85;
}


.empty-cart {
    text-align: center;
    color: #aaa;
    padding: 40px 20px;
}

/* Modal Styles */
.modal-content {
    background: #1a1814;
    color: #fff;
    border: 2px solid #b7821f;
}

.modal-header {
    border-bottom: 1px solid #37332a;
}

.modal-title {
    color: #b7821f;
    font-family: "Playfair Display", serif;
}

.modal-body .form-label {
    color: #b7821f;
    font-weight: 600;
}

.modal-body .form-control {
    background: #0c0b09;
    border: 1px solid #625b4b;
    color: #fff;
    border-radius: 8px;
}

.modal-body .form-control:focus {
    background: #0c0b09;
    border-color: #b7821f;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(183, 130, 31, 0.25);
}

.order-summary {
    background: #0c0b09;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.order-summary h6 {
    color: #b7821f;
    margin-bottom: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #37332a;
    color: #aaa;
}

.checkout-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #b7821f;
    font-size: 18px;
    color: #b7821f;
}


.modal-footer {
    border-top: 1px solid #37332a;
}

.btn-primary {
    background: #b7821f;
    border-color: #b7821f;
}

.btn-primary:hover {
    background: #d9ba85;
    border-color: #d9ba85;
}

.btn-secondary {
    background: #37332a;
    border-color: #37332a;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-icon-fixed {
        top: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .cart-icon-fixed i {
        font-size: 20px;
    }
    
    .category-filter {
        padding: 15px 0;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .menu-item-card {
        padding: 15px;
    }
    
    .menu-item-card h4 {
        font-size: 16px;
    }
    
    .menu-item-price {
        font-size: 18px;
    }
}


/* Menu Item Images */
.menu-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f5f5f5;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    font-size: 4em;
    border-radius: 8px 8px 0 0;
    color: #999;
}

.menu-item-content {
    padding: 15px;
}

.menu-item-card {
    overflow: hidden;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-top: 110px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #b7821f;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btns {
  display: flex;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #b7821f;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #b7821f;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* Topbar & Header Logo */
.logo img {
  max-height: 60px;
}

#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  background: rgba(12, 11, 9, 0.9);
  color: rgba(255, 255, 255, 0.7);
}

#topbar .contact-info i {
  font-style: normal;
  color: #b7821f;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul li {
  margin-left: 15px;
}

#topbar .languages ul li a {
  color: #fff;
}

#topbar .languages ul li a:hover {
  color: #b7821f;
}

.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #b7821f;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}
