/* ============================================================
   KAUSHAR INVESTMENT — Global Stylesheet
   Font: Open Sans (Google Fonts)
   Theme: Orange (#F97316), White, Black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --orange: #F97316;
  --orange-dark: #EA6C0A;
  --orange-light: #FED7AA;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --dark2: #2A2A2A;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --facebook: #1877F2;
  --tiktok: #010101;
  --red-special: #DC2626;
  --red-light: #FEF2F2;
  --yellow-special: #FCD34D;
  --font: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-sm: 6px;
  --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 20px rgba(249,115,22,0.18);
}
.header-inner {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* REPLACE logo src in HTML with your own logo */
.logo-wrap img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child {
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-text span:last-child {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 12px;
}
.desktop-nav a {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.desktop-nav a:hover { background: var(--orange); color: var(--white); }
.desktop-nav a.active { color: var(--orange); }
@media (max-width: 900px) { .desktop-nav { display: none; } }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 12px;
}
.header-nav a {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  background: var(--orange);
  color: var(--white);
}
.header-nav a.active {
  color: var(--orange);
}

/* Cart icon in header */
.cart-btn {
  position: relative;
  background: none;
  color: var(--white);
  font-size: 22px;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  margin-left: 0;
}
.cart-btn:hover { background: var(--orange); color: var(--white); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-badge.visible { display: flex; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: var(--transition);
  width: 280px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--orange); color: var(--white); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--dark);
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.hero-slide-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-slide-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}
.hero-slide-text .btn-hero {
  background: var(--orange);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
  transition: var(--transition);
}
.hero-slide-text .btn-hero:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(249,115,22,0.55);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CATEGORY BAR
   ============================================================ */
.category-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 72px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.category-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cat-btn svg { width: 18px; height: 18px; }
.cat-btn:hover { color: var(--orange); border-bottom-color: var(--orange); }
.cat-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section { padding: 56px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.section-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
}
.section-heading span { color: var(--orange); }

/* ============================================================
   PRODUCT SLIDESHOW (Home)
   ============================================================ */
.product-slider-wrap {
  position: relative;
}
.product-slider-viewport {
  overflow: hidden;
}
.product-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.92);
  border: 1px solid #eee;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: var(--transition);
  color: var(--dark);
}
.slider-arrow:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.30);
}
.slider-arrow.left { left: -22px; }
.slider-arrow.right { right: -22px; }
.slider-arrow svg { width: 20px; height: 20px; }

/* View all button */
.btn-view-all {
  display: block;
  margin: 28px auto 0;
  background: none;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 11px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-view-all:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.28);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--white);
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #f97316;  /* Add this line */

}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-3px);
  border-color: var(--orange-light);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray-light);
}
.product-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 10px;
}
.product-card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-inquire {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}
.btn-inquire:hover {
  background: var(--orange-dark);
  box-shadow: 0 3px 14px rgba(249,115,22,0.35);
}
.btn-cart {
  background: var(--gray-light);
  color: var(--dark);
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-cart:hover {
  background: var(--black);
  color: var(--white);
}
.btn-cart svg { width: 18px; height: 18px; }

/* ============================================================
   ON SPECIAL SECTION
   ============================================================ */
.special-section {
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #111 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
/* When banner is showing above, remove top gap */
#specialBannerWrap + .special-section,
#specialBannerWrap[style*="block"] + .special-section {
  padding-top: 40px;
}
/* Diagonal gold accent lines background pattern */
.special-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(249,115,22,0.03) 40px,
    rgba(249,115,22,0.03) 41px
  );
  pointer-events: none;
}
/* Glow orb top-right */
.special-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.special-section .section-inner { position: relative; z-index: 1; }
.special-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.35);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(249,115,22,0.15);
}
.special-tag svg { width: 14px; height: 14px; }
.special-section .section-heading { color: var(--white); margin-bottom: 6px; }
.special-section .section-heading span { color: var(--white); }
.special-subtitle { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 32px; letter-spacing: 0.3px; }

/* Special card */
.product-card.special {
  border: 1.5px solid rgba(249,115,22,0.25);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}
.product-card.special:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(249,115,22,0.2);
}
.product-card.special .product-card-title { color: var(--white); }
.product-card.special .product-card-desc { color: rgba(255,255,255,0.65); }
.product-card.special .product-card-price { color: var(--orange); }
.product-card.special .btn-cart {
  background: rgba(255,255,255,0.12);
  color: var(--dark);
  border: none;
}
.product-card.special .btn-cart:hover {
  background: var(--black);
  color: var(--white);
}
.special-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red-special);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220,38,38,0.4);
}
.product-card-img-wrap {
  position: relative;
}
.original-price {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--gray-light);
  padding: 56px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.location-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.location-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}
.location-info h2 span { color: var(--orange); }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.location-detail-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-detail-icon svg { width: 20px; height: 20px; }
.location-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.location-detail-text span {
  font-size: 13.5px;
  color: var(--gray);
}

/* ============================================================
   DELIVERY SECTION
   ============================================================ */
.delivery-section { padding: 56px 0; }
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.delivery-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.delivery-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}
.delivery-card-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.delivery-card-icon svg { width: 28px; height: 28px; }
.delivery-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}
.delivery-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}
.delivery-list { margin-bottom: 20px; }
.delivery-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13.5px;
  color: var(--dark);
}
.delivery-list li:last-child { border-bottom: none; }
.delivery-list .price-tag {
  font-weight: 700;
  color: var(--orange);
}
.delivery-note {
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 26px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ============================================================
   CONTACT & FOLLOW SECTION
   ============================================================ */
.contact-section {
  background: var(--dark);
  padding: 64px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-part h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-part h2 span { color: var(--orange); }
.contact-part > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.btn-whatsapp-glow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: whatsapp-glow 2s ease-in-out infinite;
}
@keyframes whatsapp-glow {
  0%,100% { box-shadow: 0 0 18px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 0 36px rgba(37,211,102,0.65); }
}
.btn-whatsapp-glow:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}
.btn-whatsapp-glow svg { width: 24px; height: 24px; }

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-facebook {
  background: var(--facebook);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(24,119,242,0.30);
}
.btn-facebook:hover {
  background: #1565C0;
  box-shadow: 0 6px 22px rgba(24,119,242,0.45);
  transform: translateY(-2px);
}
.btn-tiktok {
  background: var(--tiktok);
  color: var(--white);
  border: 1px solid #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.btn-tiktok:hover {
  background: #222;
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}
.btn-social svg { width: 20px; height: 20px; }

/* TikTok mobile mockup */
.tiktok-mockup {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}
.phone-frame {
  width: 160px;
  background: #111;
  border-radius: 28px;
  border: 3px solid #333;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 14px;
  background: #111;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--orange);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--orange); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  max-width: 95vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.16);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  background: var(--black);
  color: var(--white);
}
.cart-sidebar-header h3 {
  font-size: 16px;
  font-weight: 700;
}
.cart-close-btn {
  background: none;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}
.cart-items {
  flex: 1 1 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gray);
}
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 12px; opacity: 0.35; }
.cart-item {
  display: flex;
  gap: 12px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  align-items: center;
}
.cart-item img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin-top: 3px;
}
.cart-item-remove {
  background: none;
  color: #EF4444;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.cart-item-remove:hover { background: #FEE2E2; }
.cart-item-remove svg { width: 15px; height: 15px; }
.cart-sidebar-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: var(--white);
  display: flex;
  justify-content: center;
}
.btn-inquire-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  width: auto;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.30);
  white-space: nowrap;
}
.btn-inquire-all:hover {
  background: var(--whatsapp-dark);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 6px 26px rgba(37,211,102,0.45);
}
.btn-inquire-all svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   PRODUCT POPUP / MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform 0.25s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--orange); }

/* Modal image gallery */
.modal-gallery {
  position: relative;
  background: var(--gray-light);
  border-radius: 14px 0 0 14px;
  overflow: hidden;
}
.modal-img-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.modal-img-slide {
  min-width: 100%;
  aspect-ratio: 1;
}
.modal-img-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: 1px solid #ddd;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 5;
  transition: var(--transition);
  color: var(--dark);
}
.modal-gallery-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.modal-gallery-arrow.left { left: 10px; }
.modal-gallery-arrow.right { right: 10px; }
.modal-gallery-arrow svg { width: 16px; height: 16px; }
.modal-img-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.modal-img-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.modal-img-dot.active { background: var(--orange); }

/* Modal info */
.modal-info {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.modal-info h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.modal-info .full-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.modal-info .modal-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
}
.modal-actions {
  display: flex;
  gap: 10px;
}
.modal-actions .btn-inquire { padding: 12px 20px; font-size: 14px; }
.modal-actions .btn-cart { width: 44px; height: 44px; }

/* ============================================================
   CATEGORY PAGE LAYOUT
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 100%);
  padding: 40px 0 32px;
  border-bottom: 3px solid var(--orange);
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.page-hero-sub span {
  display: inline-block;
  margin: 0 4px;
  color: rgba(255,255,255,0.35);
}

/* Search bar */
.search-bar-wrap {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  position: sticky;
  top: 135px;
  z-index: 800;
}
.search-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.search-input-wrap {
  position: relative;
  max-width: 520px;
}
.search-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--gray);
}
.search-input {
  width: 100%;
  padding: 11px 16px 11px 44px;
  border: 2px solid var(--orange);
  border-radius: 30px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.search-input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 900;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.search-dropdown.open { display: block; }
.search-dropdown-item {
  padding: 11px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.search-dropdown-item:hover { background: var(--gray-light); color: var(--orange); }

/* Products grid */
.products-section { padding: 32px 0 56px; }
.products-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* No results */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px 0;
  color: var(--gray);
  font-size: 15px;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-section {
  padding: 56px 0;
  background: var(--white);
}
.policy-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.policy-card h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.policy-card h1 span { color: var(--orange); }
.policy-updated {
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 32px;
}
.policy-item { margin-bottom: 32px; }
.policy-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}
.policy-item p, .policy-item ul li {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}
.policy-item ul { padding-left: 20px; margin-top: 8px; list-style: disc; }
.policy-item ul li { margin-bottom: 6px; }
.policy-divider {
  height: 1px;
  background: #eee;
  margin: 28px 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 56px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; object-fit: cover; }
.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}
.about-text h2 span { color: var(--orange); }
.about-text p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.about-value {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.about-value:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.about-value-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.about-value-icon svg { width: 22px; height: 22px; }
.about-value h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.about-value p { font-size: 12.5px; color: var(--gray); }

/* ============================================================
   ADMIN / MANAGEMENT PAGE
   ============================================================ */
.admin-section { padding: 40px 0; min-height: 100vh; background: var(--gray-light); }
.admin-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-header h1 { font-size: 26px; font-weight: 800; color: var(--black); }
.admin-header h1 span { color: var(--orange); }
.admin-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  margin-top: 28px;
}
.form-section-label:first-child { margin-top: 0; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Image upload */
.img-upload-area {
  border: 2px dashed #ddd;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-light);
}
.img-upload-area:hover { border-color: var(--orange); background: var(--orange-light); }
.img-upload-area svg { width: 36px; height: 36px; color: var(--gray); margin: 0 auto 10px; }
.img-upload-area p { font-size: 13px; color: var(--gray); }
.img-upload-area input { display: none; }
.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.img-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.img-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.img-preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.img-preview-remove:hover { background: #EF4444; }

/* Category select pills */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-pill {
  padding: 7px 16px;
  border-radius: 20px;
  border: 2px solid #ddd;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}
.cat-pill:hover { border-color: var(--orange); color: var(--orange); }
.cat-pill.selected { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Special toggle */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toggle {
  width: 48px; height: 26px;
  background: #ddd;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.toggle.on { background: var(--orange); }
.toggle::after {
  content: '';
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle.on::after { left: 25px; }
.toggle-label { font-size: 13px; font-weight: 600; color: var(--dark); }

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  margin-top: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,0.28);
}
.btn-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(249,115,22,0.40);
  transform: translateY(-1px);
}

/* Product list in admin */
.admin-products { margin-top: 40px; }
.admin-products h2 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 16px; }
.admin-product-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.admin-product-item:hover { box-shadow: var(--shadow); }
.admin-product-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.admin-product-item-info { flex: 1; min-width: 0; }
.admin-product-item-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.admin-product-item-info span {
  font-size: 12px;
  color: var(--gray);
}
.admin-product-item-actions { display: flex; gap: 8px; }
.admin-edit-btn {
  background: var(--gray-light);
  color: var(--dark);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.admin-edit-btn:hover { background: var(--orange); color: var(--white); }
.admin-delete-btn {
  background: #FEE2E2;
  color: #EF4444;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.admin-delete-btn:hover { background: #EF4444; color: var(--white); }

/* Contact info cards (contact page) */
.contact-info-cards {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
}
.contact-info-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}
.contact-info-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-info-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.contact-info-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.contact-page-section { padding-top: 48px !important; }

/* Page hero (used on contact, delivery, about, policy) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1c1c1c 100%);
  padding: 56px 24px 48px;
  border-bottom: 1px solid rgba(249,115,22,0.15);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-inner h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero-inner h1 span { color: var(--orange); }
.page-hero-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Admin page styles ── */
.admin-page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}
.admin-tab {
  padding: 12px 22px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  border-radius: 8px 8px 0 0;
}
.admin-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: rgba(249,115,22,0.06);
}
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }

.admin-form {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 32px;
}
.admin-form h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark2); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Category pill selector */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-pill.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 14px rgba(249,115,22,0.4);
}

/* Special toggle */
.special-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-track { background: var(--orange); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(22px); }

/* Image upload drop zone */
.img-upload-zone {
  border: 2px dashed rgba(249,115,22,0.35);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(249,115,22,0.03);
}
.img-upload-zone:hover,
.img-upload-zone.drag-over {
  border-color: var(--orange);
  background: rgba(249,115,22,0.07);
}
.img-upload-zone input { display: none; }
.img-upload-zone svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 10px;
  opacity: 0.8;
}
.img-upload-zone p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.img-upload-zone strong { color: var(--orange); }

.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.img-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.img-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  border: none;
  color: white;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.img-preview-badge {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

/* Admin form buttons */
.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.btn-admin-submit {
  padding: 14px 28px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px rgba(249,115,22,0.35);
}
.btn-admin-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 0 24px rgba(249,115,22,0.5);
}
.btn-admin-cancel {
  padding: 14px 22px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-admin-cancel:hover { color: white; border-color: rgba(255,255,255,0.3); }

/* Admin product list */
.admin-product-list { display: flex; flex-direction: column; gap: 14px; }
.admin-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.admin-product-item:hover { border-color: rgba(249,115,22,0.3); }
.admin-product-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.admin-product-item-info { flex: 1; min-width: 0; }
.admin-product-item-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.admin-product-item-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-product-item-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.admin-product-item-meta .cat-tag {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.admin-product-item-meta .special-tag {
  background: rgba(220,38,38,0.2);
  color: #f87171;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.admin-product-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-admin-edit {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-admin-edit:hover { background: rgba(249,115,22,0.15); color: var(--orange); border-color: var(--orange); }
.btn-admin-delete {
  padding: 8px 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  color: #f87171;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-admin-delete:hover { background: rgba(239,68,68,0.25); border-color: #f87171; }
.admin-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}
.admin-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-header-bar h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.admin-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-filter-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
}
.admin-filter-pill.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.1);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
}
.admin-stat-card .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.admin-stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Toast — mobile top position */
.toast.toast-top {
  bottom: auto;
  top: 84px;
  right: 16px;
  left: 16px;
  transform: translateY(-20px);
}
.toast.toast-top.show { transform: translateY(0); }

/* Featured tag in manage list */
.feat-tag {
  background: rgba(59,130,246,0.18);
  color: #60a5fa;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

/* Drag handle */
.drag-handle {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  cursor: grab;
  user-select: none;
  padding: 0 8px 0 4px;
  flex-shrink: 0;
  touch-action: none;
}
.drag-handle:active { cursor: grabbing; }
.admin-product-item.dragging {
  opacity: 0.5;
  background: rgba(249,115,22,0.1);
  border-color: var(--orange);
}

/* Cart remove confirm dialog */
.cart-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cart-confirm-box {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 320px;
  width: 100%;
  text-align: center;
}
.cart-confirm-box p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.cart-confirm-actions {
  display: flex;
  gap: 12px;
}
.cart-confirm-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-confirm-remove {
  background: #EF4444;
  color: white;
}
.btn-confirm-remove:hover { background: #dc2626; }
.btn-confirm-cancel {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.12) !important;
}
.btn-confirm-cancel:hover { background: rgba(255,255,255,0.15); }

/* Manage image drag reorder */
.img-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  min-height: 10px;
}
.img-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: grab;
  flex-shrink: 0;
  touch-action: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.img-preview-item.img-dragging {
  opacity: 0.5;
  border-color: var(--orange);
  transform: scale(0.95);
  box-shadow: 0 0 16px rgba(249,115,22,0.4);
}
.img-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--whatsapp); }
.toast.error { border-left: 4px solid #EF4444; }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .hero-slider { height: 280px; }
  .hero-slide-overlay { padding: 0 28px; }
  .hero-slide-text h2 { font-size: 22px; }
  .hero-slide-text p { font-size: 14px; }

  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-grid .delivery-card:first-child { order: 1; }
  .delivery-grid .delivery-card:last-child { order: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid .contact-part:first-child { order: 1; }
  .contact-grid .contact-part:last-child { order: 2; }
  .location-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: 14px 14px 0 0; }
  .modal-img-slide { min-width: 100%; aspect-ratio: 4/3; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Mobile product card: image, title, price only */
  .product-card-desc { display: none; }
  .product-card-actions { display: none; }
  .product-card-body { padding: 10px 10px 12px; }
  .product-card-price { margin-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }
  .img-preview-grid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 36px 0; }
  .special-section { padding: 36px 0; }
  .location-section { padding: 36px 0; }
  .delivery-section { padding: 36px 0; }
  .contact-section { padding: 48px 0; }

  .search-bar-wrap { top: 72px; }

  .policy-card { padding: 24px 20px; }
  .admin-form { padding: 24px 20px; }
}

@media (max-width: 560px) {
  .hero-slide-text h2 { font-size: 18px; }
  .hero-slide-text p { display: none; }
  .hero-slide-text .btn-hero { padding: 10px 20px; font-size: 13px; }
  .category-bar { top: 72px; }
  .about-values { grid-template-columns: 1fr; }
  .tiktok-mockup { justify-content: center; }
  .cart-sidebar { width: 100%; max-width: 100%; }
}
