html {
font-size: 16px;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0f0f0f;
color: #f5f5f5;
box-sizing: border-box;
overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

*, *::before, *::after {
box-sizing: inherit;
}

/* Offer bar */
.offer-bar {
background: #000;
color: #fff;
text-align: center;
padding: 8px;
position: sticky;
top: 0;
z-index: 10000;
}

.offer-text {
display: none;
}

.offer-text.active {
display: block;
animation: fadeIn 0.8s ease;
}

/* Header */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 20px;
position: fixed;
top: 38px;
width: 100%;
background: rgba(0,0,0,0.7);
backdrop-filter: blur(6px);
z-index: 9999;
box-sizing: border-box;
}

.logo {
height: 45px;
}

/* Hamburger */
.menu-btn {
width: 40px;
height: 40px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
cursor: pointer;
background: rgba(255,255,255,0.1);
border-radius: 8px;
}

.menu-btn span {
height: 4px;
width: 22px;
background: #fff;
border-radius: 2px;
}

/* Cart */
.cart {
font-size: 24px;
cursor: pointer;
margin-right: 5px;
position: relative;
z-index: 10001;
}


/* Side Menu */
.side-menu {
position: fixed;
left: -260px;
top: 80px;
width: 260px;
height: calc(100% - 80px);
background: #1a1a1a;
transition: 0.3s;
padding: 20px;
z-index: 2000;
overflow-y: auto;
}

.side-menu ul {
list-style: none;
padding: 0;
margin: 0;
}

.side-menu a {
color: #ccc;
text-decoration: none;
display: block;
padding: 8px 0;
font-size: 14px;
}

.side-menu > ul > li > a,
.menu-title {
color: #ffcc70;
font-weight: bold;
font-size: 16px;
letter-spacing: 1px;
}

.menu-title {
display: block;
padding: 10px 0;
cursor: pointer;
}

.submenu {
display: none;
padding-left: 15px;
}

.dropdown.active .submenu {
display: block;
}

/* HERO */
.hero {
margin-top: 80px;
height: calc(100vh - 80px);
background:
linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
url('images/hero.png') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.hero-content {
display: flex;
flex-direction: column;
align-items: center;
}

.hero-logo {
width: 240px;
}

/* Tagline */
.tagline {
margin-top: 20px;
font-size: 22px;
letter-spacing: 2px;
color: #f5f5f5;
text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.tagline span {
display: block;
margin-top: 6px;
color: #ffb347;
font-size: 18px;
}

/* Hero animation */
.fade-up {
opacity: 0;
transform: translateY(40px);
animation: fadeUp 1.5s ease forwards;
}

.fade-up.delay {
animation-delay: 0.5s;
}

@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* Section link FIX */
.section-link {
text-decoration: none;
color: inherit;
}

/* Sections */
.section {
display: flex;
align-items: center;
padding: 60px 40px;
gap: 30px;
cursor: pointer;
}

.section.reverse {
flex-direction: row-reverse;
}

/* Image */
.slide-img {
width: 45%;
border-radius: 12px;
opacity: 0;
transform: translateX(-80px);
transition: 0.8s;
}

.section.reverse .slide-img {
transform: translateX(80px);
}

/* Text */
.slide-text {
width: 55%;
opacity: 0;
transform: translateX(-40px);
transition: 0.8s;
transition-delay: 0.2s;
}

.section.reverse .slide-text {
transform: translateX(40px);
}

/* Animation trigger */
.slide-section.show .slide-img,
.slide-section.show .slide-text {
opacity: 1;
transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
header {
padding: 10px 15px;
}

.section {
flex-direction: column !important;
padding: 40px 20px;
}

.slide-img,
.slide-text {
width: 100%;
}

.hero-logo {
width: 180px;
}

.tagline {
font-size: 16px;
}
}

/* PRODUCT SECTION */
.page-title {
  text-align: center;
  margin-top: 130px;
  font-size: 28px;
}

.product-section {
  padding: 20px;
  width: 100%;
  overflow-x: hidden;
}

/* GRID FIX */
.product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

/* MOBILE GRID */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr !important;
    padding: 0 15px;
  }

  .product-card {
    width: 100% !important;
  }
}

/* PRODUCT CARD */
.product-card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s;
  width: 100%;
}
/* 🔥 HOVER EFFECT (SAFE) */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  border: 2px solid rgba(255, 204, 112, 0.4);
}

/* IMAGE FIX */
.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
}

.product-points {
  font-size: 13px;
  margin: 10px 0;
  color: #ccc;
  text-align: left;
}

.price {
  font-size: 18px;
  color: #ffcc70;
  font-weight: bold;
  margin: 10px 0;
}

.product-card button {
  padding: 8px 12px;
  background: #ffcc70;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.product-card button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffcc70, #ff9f1c);
}

/* OPTION SELECT */
.option-btns button.active {
  border: 2px solid #ffcc70;
}

/* ANIMATION */
.product-card.added {
  animation: greenFlash 0.4s ease;
}

.product-card.removed {
  animation: redFlash 0.4s ease;
}

@keyframes greenFlash {
  50% { box-shadow: 0 0 20px #00ff88; transform: scale(1.05); }
}

@keyframes redFlash {
  50% { box-shadow: 0 0 15px red; }
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup-content button {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 80%;
}
.popup-content {
  animation: popupFade 0.25s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* QTY */
.qty-control {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}

.qty-control button {
  width: 30px;
  height: 30px;
  background: #ffcc70;
  border: none;
  border-radius: 6px;
}

.close-btn {
  background: red;
  color: white;
}

.option-btns button.active {
  border: 2px solid #ffcc70;
  box-shadow: 0 0 10px #ffcc70;
  transform: scale(1.05);
}/* PREMIUM OPTION SELECTION */
.option-btns button {
  transition: all 0.25s ease;
}

.option-btns button.active {
  border: 2px solid #ffcc70;
  background: rgba(255, 204, 112, 0.08);
  box-shadow: 0 0 8px rgba(255, 204, 112, 0.4);
  transform: scale(1.03);
}

.option-btns button:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.03);
}

/* ── SWIGGY STYLE CART PANEL ── */
.cart-popup {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #111;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.6);
}

.cart-popup.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #2a2a2a;
}

.cart-header h2 {
  font-size: 18px;
  color: #f5f5f5;
  margin: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.cart-close-btn:hover { color: #fff; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #555;
  gap: 14px;
  padding: 40px 0;
}

.cart-empty span {
  font-size: 52px;
}

.cart-empty p {
  font-size: 15px;
  color: #666;
  text-align: center;
}

.cart-empty-btn {
  background: #ffcc70;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-empty-btn:hover { transform: scale(1.04); }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #1e1e1e;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #1a1a1a;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  color: #f5f5f5;
  font-weight: bold;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-option {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  background: #222;
  border: 1px solid #333;
  color: #ffcc70;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cart-qty-btn:hover { background: #2a2a2a; }

.cart-qty-num {
  font-size: 14px;
  color: #f5f5f5;
  min-width: 16px;
  text-align: center;
}

.cart-item-price {
  font-size: 14px;
  color: #ffcc70;
  font-weight: bold;
  white-space: nowrap;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.cart-remove-btn:hover { color: #ff4444; }

.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid #2a2a2a;
  background: #111;
}

.cart-mov-note {
  font-size: 12px;
  color: #ffcc70;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
  background: rgba(255,204,112,0.07);
  border-radius: 8px;
  padding: 8px 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cart-total-label {
  font-size: 15px;
  color: #aaa;
}

.cart-total-amount {
  font-size: 20px;
  color: #f5f5f5;
  font-weight: bold;
}

.cart-whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
}

.cart-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.02);
}

/* CART ICON BADGE */

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-badge.visible { display: flex; }

/* CART OVERLAY */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99998;
  display: none;
}

.cart-overlay.open { display: block; }

@media (max-width: 768px) {
  .cart-popup {
    max-width: 100%;
    right: -100%;
  }
}
/* ── ORDER BUTTONS ── */
.cart-order-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.cart-pay-btn {
  width: 100%;
  background: #ffcc70;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s;
}

.cart-pay-btn:hover { background: #ffb830; transform: scale(1.02); }

.discount-tag {
  background: #ff4444;
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: bold;
}

.cart-wa-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-wa-btn:hover { transform: scale(1.02); }

.cart-email-btn {
  width: 100%;
  background: #4a90d9;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-email-btn:hover { transform: scale(1.02); }

.cart-offer-note {
  font-size: 13px;
  color: #4caf50;
  text-align: center;
  margin-bottom: 8px;
  padding: 8px 12px;
  background: rgba(76,175,80,0.08);
  border-radius: 8px;
}

/* ── CUSTOMER FORM ── */
.customer-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.customer-form-box {
  background: linear-gradient(145deg, #1e1e1e, #141414);
  border-radius: 20px;
  padding: 30px 25px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: popupFade 0.25s ease;
  border: 1px solid rgba(255,204,112,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.customer-form-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  cursor: pointer;
}

.customer-form-box h3 {
  font-size: 22px;
  color: #ffcc70;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.5px;
}

.customer-form-sub {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 20px;
}

.customer-input {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 13px 16px;
  color: #f5f5f5;
  font-size: 14px;
  margin-bottom: 12px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.customer-input:focus {
  border-color: #ffcc70;
  box-shadow: 0 0 0 3px rgba(255,204,112,0.1);
}


.customer-textarea {
  resize: none;
  font-family: Arial, sans-serif;
}

.customer-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffcc70, #ff9f1c);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255,204,112,0.3);
  letter-spacing: 0.3px;
}

.customer-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255,204,112,0.45);
}

/* ── PAYMENT PAGE ── */
.payment-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.payment-page-box {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: popupFade 0.25s ease;
}

.payment-order-id {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.payment-title {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.payment-amount {
  font-size: 36px;
  color: #ffcc70;
  font-weight: bold;
  margin-bottom: 10px;
}

.payment-upi-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.payment-upi-id {
  font-size: 14px;
  color: #f5f5f5;
  margin-bottom: 10px;
}

.payment-note {
  font-size: 12px;
  color: #ffcc70;
  margin-bottom: 14px;
}

.payment-upi-btn {
  display: block;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 8px;
  transition: transform 0.2s;
}

.payment-upi-btn:hover { transform: scale(1.02); }

.payment-upi-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 14px;
}

.payment-qr-box {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.payment-qr-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.payment-timer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.payment-timer-label { font-size: 13px; color: #888; }

.payment-timer {
  font-size: 22px;
  color: #ffcc70;
  font-weight: bold;
}

.payment-done-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffcc70, #ff9f1c);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
  animation: pulseBtn 1.5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(255,204,112,0.4);
}

.payment-done-btn:hover {
  transform: scale(1.03);
  animation: none;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 4px 20px rgba(255,204,112,0.3); }
  50% { box-shadow: 0 4px 30px rgba(255,204,112,0.7); transform: scale(1.01); }
  100% { box-shadow: 0 4px 20px rgba(255,204,112,0.3); }
}

/* ── ORDER CONFIRMATION ── */
.order-confirmation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.order-confirmation-box {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 35px 25px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: popupFade 0.25s ease;
}

.conf-emoji { font-size: 52px; margin-bottom: 14px; }

.order-confirmation-box h3 {
  font-size: 22px;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.order-confirmation-box p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 10px;
}

.conf-order-id { font-size: 16px !important; color: #ffcc70 !important; }
.conf-note { font-size: 13px !important; color: #666 !important; }

.conf-home-btn {
  margin-top: 20px;
  width: 100%;
  background: #ffcc70;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.conf-home-btn:hover { transform: scale(1.02); }
.payment-cancel-btn {
  width: 100%;
  background: transparent;
  color: #555;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.2s, border-color 0.2s;
}

.payment-cancel-btn:hover {
  color: #ff4444;
  border-color: #ff4444;
}

@media (max-width: 768px) {
  .payment-qr-img { width: 150px; height: 150px; }
  .payment-amount { font-size: 28px; }
  .customer-form-box { padding: 24px 18px; }
  .payment-page-box { padding: 22px 16px; }
  .order-confirmation-box { padding: 28px 18px; }
}
.customer-submit-btn:hover { background: #ffb830; transform: scale(1.02); }

