/* ============================================
   DRAWER MENU
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  transition: left 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
}

.drawer-menu.active {
  left: 0;
}

.drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}

.drawer-close:hover {
  color: var(--primary);
}

.drawer-user {
  padding: 25px 25px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.drawer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gray);
}

.drawer-user-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.drawer-user-text p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 15px;
}

.btn-drawer-login {
  display: inline-block;
  padding: 8px 24px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-drawer-login:hover {
  background: var(--primary);
  color: var(--white);
}

.drawer-nav {
  flex: 1;
  padding: 10px 0;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 25px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.drawer-link:hover {
  background: var(--light);
  color: var(--primary);
}

.drawer-link svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
  background: var(--secondary);
  color: var(--white);
}

.drawer-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.drawer-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.drawer-hotline:hover {
  color: var(--white);
  opacity: 0.9;
}

.drawer-hotline svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.drawer-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: all 0.3s ease;
}

.drawer-phone-btn:hover {
  background: #ff3b30;
  color: var(--white);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .drawer-menu {
    width: 100%;
    left: -100%;
  }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  touch-action: manipulation;
}

.site-logo a {
  display: block;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
}

.logo-highlight {
  color: var(--primary);
}

.primary-nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-track-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .header-track-btn {
    display: none !important;
  }
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  color: var(--dark);
}

.cart-icon:hover {
  color: var(--primary);
}

.cart-wrapper {
  position: relative;
}

.cart-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -10px;
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
  pointer-events: none;
}

.cart-wrapper:hover .cart-dropdown,
.cart-wrapper.active .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.cart-dropdown-empty svg {
  margin-bottom: 20px;
}

.cart-dropdown-empty h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-dropdown-empty p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.cart-dropdown-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.cart-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-dropdown-item:last-child {
  border-bottom: none;
}

.cart-dropdown-footer {
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.cart-dropdown-view {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.cart-dropdown-view:hover {
  text-decoration: underline;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    touch-action: manipulation;
  }

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-menu a {
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-menu a:hover {
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(to right, #FFFFFF, #F8F8F8);
  border-top: 1px solid #E0E0E0;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 14px;
  color: #555555;
  margin: 0;
  font-weight: 500;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 600;
  color: #2E7D32;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #FF6F00;
}

.footer-divider {
  color: #CCCCCC;
  font-weight: 300;
}

.btn-footer {
  padding: 8px 20px;
  font-size: 13px;
}

/* ============================================
   HOMEPAGE - HERO
   ============================================ */
.homepage {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  background: var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--dark);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: var(--primary);
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.text-outline {
  color: var(--primary);
}

.text-primary {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-plate {
  width: 400px;
  height: 400px;
  animation: float 6s ease-in-out infinite;
}

.hero-plate-img {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pizza-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
  padding: 80px 0;
  background: var(--light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.15);
}

.category-card:hover h3 {
  color: var(--primary);
}

.category-icon {
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

/* ============================================
   MENU GRID & CARDS
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.menu-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.menu-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu-card-link .menu-card-image {
  position: relative;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.menu-card-image {
  position: relative;
  height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image svg {
  width: 80%;
  height: 80%;
}

.menu-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-card-content {
  padding: 20px;
}

.menu-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.menu-card-desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.btn-add-cart {
  padding: 10px 15px;
  border-radius: var(--radius-sm);
}

.text-center {
  text-align: center;
}

/* ============================================
   DEALS SECTION
   ============================================ */
.deals-section {
  padding: 80px 0;
  background: var(--white);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.deal-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 35px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.deal-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.deal-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.deal-large {
  grid-column: span 2;
}

.deal-badge-save {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.deal-items {
  margin-bottom: 25px;
}

.deal-items li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: var(--white);
}

.deal-items li:last-child {
  border: none;
}

.deal-price {
  margin-bottom: 25px;
}

.deal-old {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 15px;
  color: var(--white);
}

.deal-new {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light) 0%, #FFF8F0 100%);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.app-content h2 span {
  color: var(--primary);
  position: relative;
}

.app-content > p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.app-features {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.app-features li:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.1);
  transform: translateY(-2px);
}

.app-features li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--dark);
  border-radius: 14px;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(34, 34, 34, 0.2);
  border-color: var(--primary);
}

.store-btn svg {
  color: var(--white);
  transition: var(--transition);
}

.store-btn:hover svg {
  color: var(--primary);
}

.store-btn small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-btn strong {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
}

.app-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-image::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8F00 100%);
  border-radius: 50%;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.phone-mockup {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.12));
  transition: var(--transition);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-card > p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
}

.testimonial-author span {
  color: var(--gray);
  font-size: 14px;
}

/* ============================================
   PAGE HERO (Shared)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  color: var(--gray);
  font-size: 18px;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-section {
  padding: 60px 0;
  background: var(--white);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 25px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-card.hidden {
  display: none;
}

/* ============================================
   RELATED PRODUCTS (Horizontal Scroll)
   ============================================ */
.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-light);
}

.related-products h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
}

.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.related-grid::-webkit-scrollbar {
  height: 6px;
}

.related-grid::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 3px;
}

.related-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.related-card {
  overflow: visible;
}

.related-card .menu-card-image {
  height: 200px;
  position: relative;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.related-card .menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .menu-card-content {
  padding: 15px;
}

.related-card .menu-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.related-card .menu-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 768px) {
  .related-card {
    flex: 0 0 220px;
  }

  .related-card .menu-card-image {
    height: 170px;
  }

  .related-card .menu-card-content {
    padding: 12px;
  }

  .related-card .menu-card-content h3 {
    font-size: 14px;
  }

  .related-card .menu-card-price {
    font-size: 16px;
  }
}

/* ============================================
   BRANCHES PAGE
   ============================================ */
.branches-section {
  padding: 60px 0;
  background: var(--light);
}

.branches-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 50px;
}

.branches-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  color: var(--dark);
  font-size: 16px;
}

.branches-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.branches-search input::placeholder {
  color: var(--gray);
}

.branches-search svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

.branch-city-header {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  color: var(--dark);
}

.branches-grid {
  display: grid;
  gap: 20px;
}

.branch-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.branch-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(255, 111, 0, 0.1);
}

.branch-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.branch-info {
  flex: 1;
}

.branch-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.branch-info p {
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.branch-map-btn {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--white);
}

.branch-map-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.branch-coming-soon {
  opacity: 0.7;
  border-style: dashed;
  border-color: var(--gray);
}

.branch-coming-soon:hover {
  border-color: var(--gray);
  box-shadow: none;
}

.branch-coming-soon .branch-icon {
  background: var(--gray);
}

.branch-coming-text {
  font-style: italic;
  color: var(--gray) !important;
}

.product-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.product-nav h1 {
  margin: 0;
  font-size: 28px;
}

.product-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.product-nav-link:hover {
  color: var(--secondary);
}

.product-featured-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ============================================
   ORDER / CART PAGE
   ============================================ */
.order-section {
  padding: 60px 0;
  background: var(--light);
}

.order-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.order-items h2,
.summary-card h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--dark);
}

.empty-cart {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.empty-cart svg {
  margin: 0 auto 20px;
  opacity: 0.5;
  color: var(--gray);
}

.empty-cart h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.empty-cart p {
  color: var(--gray);
  margin-bottom: 25px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 2fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.cart-item-size {
  color: var(--gray);
  font-size: 13px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: 5px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.qty-value {
  font-weight: 600;
  min-width: 25px;
  text-align: center;
  color: var(--dark);
}

.cart-item-total {
  font-size: 18px;
  font-weight: 700;
  min-width: 100px;
  text-align: right;
  color: var(--dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--primary);
}

.summary-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--dark);
}

.summary-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 10px 0;
}

.summary-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.checkout-form {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--gray-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.btn-block {
  width: 100%;
}

.coupon-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.coupon-form input {
  flex: 1;
  padding: 10px 12px;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.btn-coupon {
  padding: 10px 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-coupon:hover {
  background: var(--secondary);
}

.coupon-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
  font-weight: 500;
}

.coupon-message.success { color: var(--success); }
.coupon-message.error { color: var(--error, #e74c3c); }

.discount-row {
  color: var(--success);
  font-weight: 500;
}

.form-group label::after {
  content: ' *';
  color: var(--primary);
  font-weight: 600;
}

.form-group label[for="notes"]::after {
  content: '';
}

.checkout-form .btn-checkout {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   AUTH PAGE (Login/Register)
   ============================================ */
.auth-section {
  padding: 60px 0;
  background: var(--light);
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.auth-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

.auth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.auth-form .form-group {
  margin-bottom: 25px;
}

.input-icon {
  position: relative;
  display: block;
}

.input-icon svg:first-child {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  z-index: 2;
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.input-icon input {
  padding-left: 45px;
  padding-right: 45px;
  width: 100%;
}

.toggle-password {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gray);
  cursor: pointer;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: var(--transition);
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.toggle-password svg {
  width: 22px;
  height: 22px;
  display: block;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.toggle-password svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.toggle-password:hover {
  background: rgba(0, 0, 0, 0.07);
  color: var(--dark);
}

.toggle-password svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--dark);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.forgot-link {
  color: var(--primary);
  font-size: 14px;
}

.forgot-link:hover {
  color: var(--secondary);
}

.auth-switch {
  text-align: center;
  margin-top: 25px;
  color: var(--gray);
}

.auth-switch a {
  color: var(--primary);
  font-weight: 600;
}

.auth-switch a:hover {
  color: var(--secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.auth-info {
  height: 100%;
}

.auth-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c1a 100%);
  padding: 30px;
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.auth-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(255, 111, 0, 0.3);
}

.auth-info-card:hover::before {
  transform: scale(1.1);
}

.auth-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.auth-info-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: var(--transition);
}

.auth-info-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.auth-info-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.auth-features {
  text-align: left;
  position: relative;
  z-index: 1;
}

.auth-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}

  .auth-features li svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   DRAWER TOOLTIPS & AUTH BUTTON SPACING
   ============================================ */
.drawer-hotline,
.drawer-phone-btn {
  position: relative;
}

.drawer-hotline::after,
.drawer-phone-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  margin-bottom: 10px;
  z-index: 10;
}

.drawer-hotline:hover::after,
.drawer-phone-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#register-card .auth-form .btn-block {
  margin-top: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 30px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--light);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 10px;
}

.contact-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.contact-link:hover {
  color: var(--secondary);
}

.social-contact {
  padding: 20px 0;
}

.social-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--dark);
}

.social-contact .social-links {
  flex-wrap: wrap;
}

.social-contact .social-link {
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--dark);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.social-link.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); border-color: #DD2A7B; }
.social-link.tiktok:hover { background: #000; border-color: #000; }

.contact-form-card {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.contact-form-card h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--dark);
}

.map-section {
  padding: 60px 0;
  background: var(--light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-section {
  padding: 60px 0;
  background: var(--light);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.privacy-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--dark);
}

.privacy-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--dark);
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 15px;
}

.privacy-content ul {
  margin: 15px 0 25px;
  padding-left: 20px;
}

.privacy-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 8px;
  padding-left: 8px;
}

.privacy-content ul li::marker {
  color: var(--primary);
}

.privacy-content em {
  color: var(--gray);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .deal-large {
    grid-column: span 1;
  }

  .app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-features li {
    justify-content: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-image {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 20px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copyright {
    font-size: 13px;
  }

  .summary-card {
    position: static;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-info {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .header-left {
    gap: 10px;
    min-width: 0;
  }

  .site-logo a {
    display: block;
    line-height: 1;
  }

  .logo-text {
    font-size: 22px;
  }

  .primary-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 42px;
  }

  .header-actions {
    gap: 15px;
    flex-shrink: 0;
  }

  .cart-wrapper {
    flex-shrink: 0;
  }

  .header-actions .btn-outline {
    padding: 8px 12px;
    font-size: 13px;
  }

  .cart-icon {
    padding: 8px 6px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .order-items h2 {
    font-size: 20px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cart-item-image {
    display: none;
  }

  .cart-item-details h4 {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .cart-item-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .cart-item-price {
    font-size: 14px;
  }

  .cart-item-quantity {
    justify-content: flex-start;
  }

  .cart-item-total {
    text-align: left;
    font-size: 16px;
    min-width: auto;
    padding-top: 8px;
    border-top: 1px solid var(--gray-light);
  }

  .cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .cart-item {
    position: relative;
  }

  .summary-card {
    padding: 20px;
  }

  .summary-card h2 {
    font-size: 20px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-image {
    order: -1;
  }

  .app-section::before {
    display: none;
  }

  .app-content h2 {
    font-size: 36px;
  }

  .app-content > p {
    font-size: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cart-dropdown {
    position: fixed;
    top: 65px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    transform: translateY(8px);
  }

  .cart-wrapper:hover .cart-dropdown,
  .cart-wrapper.active .cart-dropdown {
    transform: translateY(0);
  }

  .cart-dropdown::before {
    right: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header-left {
    gap: 8px;
  }

  .mobile-menu-toggle {
      padding: 8px;
      gap: 5px;
    }

  .mobile-menu-toggle span {
      width: 22px;
      height: 3px;
    }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn-outline {
    padding: 5px 8px;
    font-size: 11px;
  }

  .cart-icon {
    padding: 5px 3px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .auth-card {
    padding: 25px;
  }

  .auth-info-card {
    padding: 30px;
  }

  .auth-info-card::before,
  .auth-info-card::after {
    display: none;
  }

  .auth-info-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .auth-info-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .auth-features li {
    font-size: 14px;
    padding: 10px 0;
  }

  .contact-form-card {
    padding: 25px;
  }

  .summary-card {
    padding: 20px;
  }
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  padding-top: 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.product-image {
  display: flex;
  justify-content: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
}

.placeholder-image.large svg {
  width: 100%;
  height: 100%;
}

.product-category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 111, 0, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.product-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.product-desc {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.product-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

.product-options h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.size-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--light);
  border: 2px solid var(--gray-light);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.size-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(255, 111, 0, 0.08);
}

.size-option input {
  display: none;
}

.size-option span:first-of-type {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.size-price {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
}

.quantity-selector .qty-btn {
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}

.quantity-selector .qty-btn:hover {
  color: var(--primary);
}

.quantity-selector .qty-value {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.btn-add-to-cart {
  flex: 1;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

.empty-state {
  text-align: center;
  padding: 80px 0;
}

.empty-state h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark);
}

/* ============================================
   CHECKOUT SUCCESS
   ============================================ */
.checkout-success {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 25px;
}

.checkout-success h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.checkout-success p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-tabs {
  margin-top: 50px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  padding: 30px;
}

.tab-nav {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 25px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
  background: rgba(255, 111, 0, 0.06);
}

.tab-btn.active {
  color: var(--primary);
  background: rgba(255, 111, 0, 0.06);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--light);
  border-radius: var(--radius-sm);
  text-align: center;
}

.nutrition-item span {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 5px;
}

.nutrition-item strong {
  font-size: 20px;
  color: var(--dark);
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.stars {
  color: #FFC107;
  font-size: 18px;
}

.related-products {
  margin-top: 60px;
}



@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-add-to-cart {
    width: 100%;
  }

  .size-selector {
    flex-direction: column;
  }

  .size-option {
    justify-content: center;
    padding: 10px 18px;
  }

  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-nav {
    gap: 10px;
    overflow-x: auto;
  }

  /* Mobile Polish */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header {
    padding: 15px 0;
  }

  .menu-card {
    padding: 15px;
  }

  .menu-card h3 {
    font-size: 16px;
  }

  .btn {
    min-height: 44px;
  }

  .btn-checkout {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }

  .summary-row {
    padding: 10px 0;
    font-size: 14px;
  }

  .summary-total {
    font-size: 18px;
  }

  .checkout-form {
    margin-top: 20px;
    padding-top: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .product-title {
    font-size: 24px;
  }

  .product-price {
    font-size: 24px;
  }

  .cart-item {
    padding: 15px;
    gap: 10px;
  }

  .order-grid {
    gap: 25px;
  }

  .summary-card {
    padding: 20px;
    position: static;
  }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  color: var(--dark);
  padding: 16px 24px 16px 16px;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 380px;
}

.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.toast-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.toast-content strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.toast-content span {
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

@media (max-width: 768px) {
  .toast-notification {
    left: 15px;
    right: 15px;
    bottom: 20px;
    max-width: none;
    border-radius: 12px;
  }

  .toast-content span {
    max-width: none;
    white-space: normal;
  }
}
