@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');


*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

a,
a:hover {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color) !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/*===== Variable Define =====*/
:root {
  --primary-color: #ffc333;
  --secondry-color: #00a149;
  --white-color: #fff;
  --text-color: #b0b0b0;
  --black-color: #1E1D23;
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e9ecef;
  --primary-font: 'Roboto', sans-serif;
  --secondry-font: 'Quicksand', sans-serif;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --primary-color: #ffc333;
  --secondry-color: #00a149;
  --white-color: #ffffff;
  --text-color: #cccccc;
  --black-color: #ffffff;
  --bg-color: #1a1a1a;
  --card-bg: #2d2d2d;
  --border-color: #404040;
  --text-muted: #999999;
  --hover-bg: #3a3a3a;
}

/* Theme Transition */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
  background-color: var(--bg-color);
  color: var(--black-color);
}

::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondry-color);
}


h1 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white-color);
  text-shadow: 1px 0 6px #b04949;
}

h1 span {
  color: cyan;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
  text-transform: capitalize;
  font-family: var(--secondry-font);
  color: var(--secondry-color);
  line-height: 3rem;
}

h4 {
  color: var(--secondry-color);
  font-family: var(--secondry-font);
  text-transform: capitalize;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

h5 {
  color: var(--black-color);
  text-transform: capitalize;
  font-family: var(--secondry-font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 1px;
}

.main-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--primary-color);
  border: 0.1875rem solid var(--primary-color);
  color: var(--black-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.main-btn:hover {
  background-color:transparent;
  color: var(--primary-color);
}

.wrapper {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.text-content {
  width: 70%;
  margin: auto;
}

/*
   Header Design

*/
.navigation-wrap{
  position:fixed;
  width:100%;
  left:0;
  z-index:1000;
  -webkit-transition:all 0.3s ease-out;
  transition:all 0.3s ease-out;
}
.navigation-wrap .nav-item{
  padding:0 0.625rem;
  transition:all 0.3s linear;
} 
.navbar-toggler:focus{
  outline:unset;
  border:unset;
  box-shadow: none;
}
.nav-link{
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  color:var(--white-color);
  letter-spacing:1px;
}
.nav-link:hover,
.nav-link.active{
  color:var(--primary-color) !important;
}
.navigation-wrap .main-btn{
  padding:0.3125rem 1.4375rem;
  box-shadow: none;
  margin-left:0.625rem;
}

/* Change navbar styling on scroll */
.navigation-wrap.scroll-on{
  position:fixed;
  background-color:var(--white-color);
  top:0;
  left:0;
  width:100%;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0,0,0,0.09);
  transition: all 0.15s ease-in-out 0s;
}
.navigation-wrap.scroll-on .nav-link{
  color:var(--black-color);
}
.navigation-wrap.scroll-on .nav-link:hover,
.navigation-wrap.scroll-on .nav-link.active{
  color:var(--primary-color);
}
/*
   top-banner Design
*/
.top-banner{
  width:100%;
  background:url('../bg/bg-1.jpg') no-repeat center;
  background-size: cover;
  padding:16.875rem 0 9.375rem;
}
.top-banner p{
  color:var(--white-color);
}

/*
  our-menu Design
*/
.our-menu .card{
  border:none;
}
.our-menu .link_category_product{
  position:relative;
  display:block;
  z-index:1;
} 
.our-menu .link_category_product::before{
  position:absolute;
  content:'';
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  border-radius: 50%;
  border:2px dotted var(--secondry-color);
  z-index:-1;
  transform:translateX(-50%) translateY(-50%) scale(0);
  background:var(--primary-color);
  -webkit-transition:all .4s ease;
  -moz-transition:all .4s ease;
  -ms-transition:all .4s ease;
  -o-transition:all .4s ease;
  transition:all .4s ease;
}
.card:hover .link_category_product::before{
  transform:translateX(-50%) translateY(-50%) scale(1);
}

.our-menu .cat-title a{
  text-align: center;
  font-size: 0.8125rem;
  position:relative;
  display:inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color:var(--black-color);
}
.card:hover .cat-title a{
  color:var(--primary-color);
}

.about-section{
  background:var(--white-color);
  padding-top: 120px;
  margin-top: -80px;
}
.about-section .card,
.about-section .card img{
  border-radius: 0.625rem;
}
.about-section .text-sec{
  padding-left:2rem;
}
 

.food-type{
  padding-top:3.25rem;
}
.food-type ul li{
  font-size: 1rem;
  color:orange;
  line-height: 32px;
  position:relative;
  margin-left:30px;
}
.food-type ul li::before{
  position:absolute;
  left:-2.1875rem;
  color:cyan;
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  content:'\f00c';
  display:inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.explore-food .card{
  border:none;
  background-color:transparent;
  border-radius: 0.9375rem;
}
.explore-food .card img{
  border-radius: 15px 15px 0 0;
  object-fit: cover;
}
.explore-food .card span{
  display:block;
  font-size: 1.5rem;
  font-weight: 700;
  color:var(--primary-color);
  padding-bottom: 1rem;
  border-bottom:0.0625rem solid #eee;
}
.explore-food p{
  color:var(--text-color);
  font-size: 14px;
  line-height: 22px;
}

/* Logo and Image Fixes */
.navbar-brand img {
  height: 50px;
  width: auto;
}

.our-menu .cat-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.our-menu .card:hover .cat-image img {
  transform: scale(1.1);
}

.about-section .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Social Icons */
.socail-icon {
  font-size: 1.5rem;
  margin: 0 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.socail-icon:hover {
  color: var(--secondry-color);
}

/* New Features CSS */
.price {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.stars {
  color: #ffc107;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 195, 51, 0.25);
  z-index: 2;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Navigation scroll effect */
.navigation-wrap.scroll-on {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Menu item hover effect */
.border-bottom {
  transition: all 0.3s ease;
}

.border-bottom:hover {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Menu Page Specific Styles */
.menu-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../bg/bg-1.jpg') no-repeat center;
  background-size: cover;
  padding: 150px 0 100px;
  margin-top: 0;
}

.menu-hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-hero .lead {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Enhanced Card Styling */
.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.btn-outline-warning {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-warning:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--black-color);
}

/* Menu Section Spacing */
.menu-section {
  padding: 60px 0;
}

.menu-section:nth-child(even) {
  background-color: #f8f9fa;
}

/* Cart Sidebar Styles */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 1050;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

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

.cart-header h4 {
  margin: 0;
  color: var(--black-color);
}

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

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

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

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

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

.cart-item-details h6 {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: var(--black-color);
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 5px;
}

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

.cart-item-quantity button {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}

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

.cart-total {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.empty-cart {
  text-align: center;
  color: var(--text-color);
  padding: 40px 20px;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: -300px;
  background: var(--secondry-color);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1060;
  transition: right 0.3s ease;
}

.cart-notification.show {
  right: 20px;
}

/* Empty Cart Notification */
.empty-cart-notification {
  position: fixed;
  top: 100px;
  right: -350px;
  background: #dc3545;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1060;
  transition: right 0.3s ease;
  max-width: 300px;
  font-size: 14px;
}

.empty-cart-notification.show {
  right: 20px;
}

/* Cart Badge */
.badge {
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Button Fix */
.btn.position-relative {
  overflow: visible;
}

.position-absolute.badge {
  top: -8px !important;
  right: -8px !important;
  transform: none !important;
}

/* Checkout Modal Enhancements */
.modal-body h6 {
  color: var(--secondry-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-body input[type="radio"] {
  margin-right: 8px;
}

.modal-body label {
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
}

#cardDetails {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Responsive Cart */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100vw;
    right: -100vw;
  }
}

/* Combo Card Styles */
.combo-card {
  border: 2px solid var(--primary-color) !important;
  position: relative;
}

.combo-savings {
  background: var(--secondry-color);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.price {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Menu Section Alternating Backgrounds */
.menu-section:nth-child(odd) {
  background-color: #fff;
  padding: 40px 0;
}

.menu-section:nth-child(even) {
  background-color: #f8f9fa;
  padding: 40px 0;
}

/* Beverage Cards with Icons */
.card-body .fa-3x {
  color: var(--primary-color) !important;
}

/* Enhanced Card Hover Effects */
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.combo-card:hover {
  border-color: var(--secondry-color) !important;
}

/* Menu Category Headers */
.menu-section h2 {
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 30px;
}

.menu-section h2 i {
  color: var(--primary-color);
}

/* Card Image Optimization */
.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Price Display Enhancement */
.card-body .price {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Button Styling */
.btn-outline-warning:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

/* Kids Menu Styling */
.kids-card {
  border: 2px solid #ff6b6b !important;
  border-radius: 15px !important;
}

.kids-card:hover {
  border-color: #ff5252 !important;
  transform: translateY(-5px) rotate(1deg);
}

.kids-card .card-title {
  color: #ff6b6b;
  font-weight: 600;
}

.kids-card .price {
  color: #ff6b6b;
}

/* Success Animation */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-overlay.show {
  opacity: 1;
}

.success-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.success-overlay.show .success-content {
  transform: scale(1);
}

.success-checkmark {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../bg/bg-1.jpg') no-repeat center;
  background-size: cover;
  padding: 150px 0 100px;
  margin-top: 0;
}

.contact-hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-hero .lead {
  font-size: 1.3rem;
  opacity: 0.9;
}

.contact-form-card {
  border-radius: 15px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.contact-info-card {
  border-radius: 15px;
  background: linear-gradient(135deg, #ffc333 0%, #ff6b6b 100%);
  color: white;
}

.contact-info-card h4 {
  color: white;
}

.contact-info-card p,
.contact-info-card span {
  color: rgba(255,255,255,0.9);
}

.contact-info-card a {
  color: white;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: rgba(255,255,255,0.8);
}

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

.social-link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
  color: white;
}

/* Enhanced Form Styling */
.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 195, 51, 0.25);
  transform: translateY(-2px);
}

.form-label {
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 8px;
}

/* Contact Page Background Pattern */
.wrapper {
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23ffc333" opacity="0.1"/><circle cx="75" cy="75" r="2" fill="%23ff6b6b" opacity="0.1"/><circle cx="75" cy="25" r="1.5" fill="%2300a149" opacity="0.1"/><circle cx="25" cy="75" r="1.5" fill="%23ffc333" opacity="0.1"/></svg>');
  background-size: 100px 100px;
}

/* Reservation Page Styles */
.reservation-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../bg/bg-1.jpg') no-repeat center;
  background-size: cover;
  padding: 150px 0 100px;
  margin-top: 0;
}

.reservation-hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reservation-hero .lead {
  font-size: 1.3rem;
  opacity: 0.9;
}

.reservation-card {
  border-radius: 15px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.reservation-info-card {
  border-radius: 15px;
  background: linear-gradient(135deg, #ffc333 0%, #ff6b6b 100%);
  color: white;
}

.reservation-info-card h4,
.reservation-info-card h6 {
  color: white;
}

.reservation-info-card p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.reservation-info-card .btn-outline-warning {
  border-color: white;
  color: white;
}

.reservation-info-card .btn-outline-warning:hover {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

/* Form validation styles */
.form-control.is-valid {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.44 1.44L7.4 4.5l.94.94L4.66 9.2z'/%3e%3c/svg%3e");
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4M7.2 4.6l-1.4 1.4'/%3e%3c/svg%3e");
}

/* Select box styling */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

[data-theme="dark"] select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

/* Custom Checkbox Styling */
.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-left: 0;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-right: 12px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.form-check-label {
  cursor: pointer;
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
}

[data-theme="dark"] .form-check-input {
  border-color: var(--primary-color);
  background-color: var(--card-bg);
}

[data-theme="dark"] .form-check-input:checked {
  background-color: var(--primary-color);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: linear-gradient(45deg, #ffc333, #ff6b6b);
  border: none;
  border-radius: 25px;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.theme-toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: white;
}

[data-theme="dark"] .theme-toggle-btn {
  background: linear-gradient(45deg, #4a4a4a, #666666);
}

[data-theme="dark"] .theme-toggle-btn:hover {
  color: white;
}

/* Mobile Theme Toggle - Fixed Position */
.mobile-theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9998;
  background: linear-gradient(45deg, #ffc333, #ff6b6b);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
  transform: scale(1.1);
  color: white;
}

[data-theme="dark"] .mobile-theme-toggle {
  background: linear-gradient(45deg, #4a4a4a, #666666);
}

@media (max-width: 991px) {
  .mobile-theme-toggle {
    display: flex;
  }
  .theme-toggle-btn {
    display: none;
  }
}

/* Order Success Animation */
.order-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-success-overlay.show {
  opacity: 1;
}

.order-success-content {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.order-success-overlay.show .order-success-content {
  transform: scale(1);
}

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

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.checkmark svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4CAF50;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4CAF50;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4CAF50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark path {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4CAF50;
  }
}

.order-details {
  background: var(--card-bg);
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  border: 1px solid var(--border-color);
}

.delivery-info, .dine-info {
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondry-color));
  border-radius: 15px;
  color: white;
}

.delivery-animation, .dine-animation {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.delivery-time {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.time-countdown {
  color: #FFE082;
}

.delivery-status {
  font-size: 0.9rem;
  opacity: 0.9;
}

[data-theme="dark"] .order-success-content {
  background: var(--card-bg);
  color: var(--white-color);
}

[data-theme="dark"] .order-details {
  background: var(--bg-color);
}

/* Interactive Hover Animations */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: left 0.3s ease;
}

.nav-link:hover::before {
  left: 0;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,195,51,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  animation: shine 0.6s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

/* Pulse Animation for Prices */
.price {
  animation: pulse-price 3s infinite;
}

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

/* Loading Dots Animation */
.loading-dots::after {
  content: '';
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0%, 20% {
    content: '.';
  }
  40% {
    content: '..';
  }
  60%, 100% {
    content: '...';
  }
}

/* Notification Slide Animation */
.notification {
  position: fixed;
  top: 20px;
  right: -300px;
  background: var(--secondry-color);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1060;
  transition: right 0.3s ease;
}

.notification.show {
  right: 20px;
  animation: notification-bounce 0.5s ease;
}

@keyframes notification-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondry-color));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Interactive Icons */
.fas, .fab {
  transition: all 0.3s ease;
}

.fas:hover, .fab:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Typing Animation */
.typing-animation {
  overflow: hidden;
  border-right: 2px solid var(--primary-color);
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary-color);
  }
}

/* Dark Theme Styles */
[data-theme="dark"] .card {
  background-color: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .navbar {
  background-color: var(--card-bg) !important;
}

[data-theme="dark"] .navigation-wrap.scroll-on {
  background-color: var(--card-bg) !important;
}

[data-theme="dark"] .form-control {
  background-color: var(--card-bg);
  border-color: var(--border-color);
  color: var(--black-color);
}

[data-theme="dark"] .form-control:focus {
  background-color: var(--card-bg);
  border-color: var(--primary-color);
  color: var(--black-color);
}

[data-theme="dark"] .menu-section:nth-child(even) {
  background-color: #252525;
}

[data-theme="dark"] .wrapper {
  background-color: var(--bg-color);
}

[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .reservation-card {
  background: var(--card-bg) !important;
}

[data-theme="dark"] .alert-success {
  background-color: #155724;
  border-color: #c3e6cb;
  color: #d4edda;
}

[data-theme="dark"] .modal-content {
  background-color: var(--card-bg);
  color: var(--black-color);
}

[data-theme="dark"] .cart-sidebar {
  background-color: var(--card-bg);
}

[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .card-title {
  color: var(--white-color) !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .card-text {
  color: var(--text-color) !important;
}

[data-theme="dark"] .dropdown-item-text {
  color: var(--white-color) !important;
}

[data-theme="dark"] .menu-section h2 {
  color: var(--white-color) !important;
}

[data-theme="dark"] .menu-section h2 i {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .text-center h1,
[data-theme="dark"] .text-center h2,
[data-theme="dark"] .text-center h3,
[data-theme="dark"] .text-center h4,
[data-theme="dark"] .text-center h5,
[data-theme="dark"] .text-center h6 {
  color: var(--white-color) !important;
}

[data-theme="dark"] .btn {
  color: var(--black-color) !important;
}

[data-theme="dark"] .btn:hover {
  color: var(--black-color) !important;
}

[data-theme="dark"] .main-btn {
  color: var(--black-color) !important;
}

[data-theme="dark"] .main-btn:hover {
  color: var(--primary-color) !important;
}

[data-theme="dark"] strong {
  color: var(--white-color) !important;
}

[data-theme="dark"] .lead {
  color: var(--text-color) !important;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffc333, #ff6b6b);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  color: white;
}

.pizza-loader {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  background: #ff6b6b;
  animation: rotate 2s linear infinite;
}

.pizza-slice {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #ffc333;
  transform-origin: 20px 35px;
}

.pizza-slice:nth-child(1) { transform: rotate(0deg); }
.pizza-slice:nth-child(2) { transform: rotate(90deg); }
.pizza-slice:nth-child(3) { transform: rotate(180deg); }
.pizza-slice:nth-child(4) { transform: rotate(270deg); }

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-content h3 {
  font-size: 1.2rem;
  margin: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Auth Styles */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondry-color) 100%);
  padding: 2rem 0;
}

.auth-card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.auth-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.auth-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.divider {
  position: relative;
  text-align: center;
  margin: 1rem 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  background: var(--bg-color);
  padding: 0 1rem;
  color: var(--text-color);
  font-size: 0.875rem;
}

.g_id_signin {
  width: 100% !important;
  justify-content: center;
}

/* User Profile Dropdown */
.user-dropdown {
  position: relative;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.dropdown-menu {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
  color: var(--text-color);
  padding: 0.5rem 1rem;
}

.dropdown-item:hover {
  background: var(--hover-bg);
  color: var(--text-color);
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Apply animations to elements */
.card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.menu-section h2 {
  animation: slideInLeft 0.8s ease-out;
}

.menu-section:nth-child(even) h2 {
  animation: slideInRight 0.8s ease-out;
}

.price {
  animation: bounce 2s infinite;
  animation-delay: 1s;
}

.navbar-brand img {
  animation: float 3s ease-in-out infinite;
}

.main-btn:hover {
  animation: wiggle 0.5s ease-in-out;
}

.cart-notification {
  animation: slideInRight 0.5s ease-out;
}

.user-avatar:hover {
  animation: bounce 0.6s ease-in-out;
}

.theme-toggle-btn:hover,
.mobile-theme-toggle:hover {
  animation: wiggle 0.5s ease-in-out;
}

/* Scroll animations */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menu Section Backgrounds */
.menu-section:nth-child(1) {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffc333" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23ff6b6b" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%2300a149" opacity="0.1"/></svg>');
  background-size: 50px 50px;
}

.menu-section:nth-child(2) {
  background: linear-gradient(rgba(248,249,250,0.9), rgba(248,249,250,0.9)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="none" stroke="%23ffc333" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 60px 60px;
}

.menu-section:nth-child(3) {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="%23ff6b6b" opacity="0.05"/><rect x="70" y="30" width="15" height="15" fill="%2300a149" opacity="0.05"/></svg>');
  background-size: 80px 80px;
}

.menu-section:nth-child(4) {
  background: linear-gradient(rgba(248,249,250,0.9), rgba(248,249,250,0.9)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 70,60 80,90 50,70 20,90 30,60 10,40 40,40" fill="%23ffc333" opacity="0.05"/></svg>');
  background-size: 70px 70px;
}