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

:root {
  --primary-color: #ff6b35;
  --secondary-color: #ffd23f;
  --accent-color: #ee4266;
  --dark-color: #2d1b69;
  --light-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ee4266);
  --gradient-secondary: linear-gradient(135deg, #ffd23f, #ff6b35);
  --gradient-dark: linear-gradient(135deg, #2d1b69, #1a0e3d);
  --shadow-light: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-heavy: 0 15px 50px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
  color: white;
}

.spice-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.spice {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spice-1 {
  background: var(--primary-color);
  animation-delay: -0.32s;
}

.spice-2 {
  background: var(--secondary-color);
  animation-delay: -0.16s;
}

.spice-3 {
  background: var(--accent-color);
}

@keyframes bounce {
  0%, 80%, 100% {
      transform: scale(0);
  }
  40% {
      transform: scale(1);
  }
}

.loader h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

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

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  transition: var(--transition);
}

.cart-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/240_F_162243061_TUbVXao3vDGMXnGBr9HvCchQecRhl0r4.jpg') center/cover;
  z-index: -2;
}


.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Modal Background */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.video-modal-content {
    position: relative;
    max-width: 90%;
    width: 800px;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
}

/* Close Button */
.video-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

/* Video */
.video-modal video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.video-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.video-modal-content {
  position: relative;
  width: 400px;
}

.video-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 18px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.floating-spices {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.spice-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: float 6s infinite linear;
}

.spice-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.spice-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
  background: var(--primary-color);
}

.spice-particle:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 2s;
  background: var(--accent-color);
}

.spice-particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 3s;
}

.spice-particle:nth-child(5) {
  top: 50%;
  left: 90%;
  animation-delay: 4s;
  background: var(--primary-color);
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0deg);
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0;
  }
}

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

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat p {
  color: var(--text-light);
  font-weight: 500;
}

.image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

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

.image-overlay i {
  font-size: 4rem;
  color: white;
  cursor: pointer;
}

/* Menu Section */
.menu {
  padding: 100px 0;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto 50px;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

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

.menu-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 1;
  transform: scale(1);
}

.menu-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.menu-item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.spice-level {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.spice-level.mild { background: var(--success-color); }
.spice-level.medium { background: var(--warning-color); }
.spice-level.hot { background: var(--accent-color); }

.menu-item-content {
  padding: 25px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.menu-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.menu-item-price {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-item-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-color);
  border-radius: 25px;
  padding: 5px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition);
}

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

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

.add-to-cart {
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-heavy);
  z-index: 2000;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
}

.cart-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
}

.close-cart:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 600;
}

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

.cart-footer {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  background: var(--light-color);
}

.cart-total {
  margin-bottom: 20px;
  text-align: center;
}

.cart-total h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  justify-content: center;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal.open {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

.order-summary {
  margin-bottom: 30px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.order-item:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 2px solid var(--primary-color);
}

.customer-details h4 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.customer-details input,
.customer-details textarea,
.customer-details select {
  width: 100%;
  color: grey;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.customer-details input:focus,
.customer-details textarea:focus,
.customer-details select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.customer-details textarea {
  resize: vertical;
  min-height: 80px;
}

.payment-methods {
  margin: 20px 0;
}

.payment-methods h5 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.payment-methods label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-methods input[type="radio"] {
  width: auto;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--secondary-color);
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

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

.contact-item i {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(400px);
  transition: var(--transition);
  z-index: 4000;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 50px 0;
      transition: var(--transition);
  }

  .nav-menu.active {
      left: 0;
  }

  .hamburger {
      display: flex;
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }

  .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
  }

  .cart-sidebar {
      width: 350px;
  }
}

@media (max-width: 768px) {
  .title-main {
      font-size: 3rem;
  }

  .title-sub {
      font-size: 1.2rem;
  }

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

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

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

  .menu-filters {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 10px;
  }

  .filter-btn {
      white-space: nowrap;
      flex-shrink: 0;
  }

  .stats {
      grid-template-columns: 1fr;
      gap: 20px;
  }

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

  .modal-content {
      width: 95%;
      margin: 20px;
  }

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

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

@media (max-width: 480px) {
  .title-main {
      font-size: 2.5rem;
  }

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

  .menu-item {
      margin: 0 10px;
  }

  .contact-form {
      padding: 25px;
  }

  .toast {
      bottom: 20px;
      right: 20px;
      left: 20px;
      transform: translateY(100px);
  }

  .toast.show {
      transform: translateY(0);
  }
}

a {
  text-decoration: none; /* removes the underline */
  color: inherit;         /* inherits the color from the parent */
}


/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-up {
  animation: slideUp 0.6s ease;
}

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }


/* Watch Story Button - Always Available */
.btn-watch-story {
  background: var(--gradient-primary);
  color: white;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-watch-story:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Modal Backdrop - Only when video modal is active */
.video-modal-active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

/* Video Wrapper - Only when video modal is active */
.video-modal-active .video-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  z-index: 1050;
  display: block;
}

.video-modal-active .video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-heavy);
  display: block;
}

/* Close Button (Cross) - Only when video modal is active */
.video-modal-active .video-close-btn {
  position: fixed;
  top: -15px;
  right: -15px;
  z-index: 1051;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 24px;
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-modal-active .video-close-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #ff4444;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.video-modal-active .video-close-btn:active {
  transform: scale(0.95);
}

/* Hide video elements by default */
.video-wrapper {
  display: none;
}

.video-close-btn {
  display: none;
}

/* Modal Content Override - Only when video modal is active */
.video-modal-active .modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Prevent body scroll when modal is open */
.video-modal-active {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-modal-active .video-wrapper {
    width: 95%;
    max-width: 100%;
  }
  
  .video-modal-active .video-close-btn {
    top: -12px;
    right: -12px;
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .video-modal-active .video-wrapper {
    width: 98%;
  }
  
  .video-modal-active .video-close-btn {
    top: -10px;
    right: -10px;
    font-size: 18px;
    width: 36px;
    height: 36px;
  }
}