/* ==========================================================================
   Çiko Tekel (cikotekel.com.tr) - Luxury Dark Theme & Premium Mobile UI
   ========================================================================== */

:root {
  --bg-dark: #090a0f;
  --bg-card: rgba(18, 22, 32, 0.85);
  --bg-card-hover: rgba(26, 32, 46, 0.95);
  --bg-header: rgba(10, 12, 18, 0.95);
  
  --gold-primary: #d4af37;
  --gold-hover: #f1c40f;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f39c12 50%, #b8860b 100%);
  
  --green-whatsapp: #25d366;
  --green-whatsapp-hover: #1ebd56;
  --green-glow: rgba(37, 211, 102, 0.3);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #f59e0b;

  --border-card: rgba(212, 175, 55, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(37, 211, 102, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
  /* Safe padding for mobile bottom sticky bar & iPhone notches */
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 16px; /* Prevents iOS auto-zoom on inputs */
  outline: none;
  touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

.text-gold {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 100%;
}

.badge-notice i {
  color: #ef4444;
  flex-shrink: 0;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-whatsapp);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.18) 0%, rgba(212, 175, 55, 0.18) 50%, rgba(239, 68, 68, 0.18) 100%);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0; /* Enables text truncation if needed */
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.35rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-info h1 {
  font-size: 1.3rem;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
}

.brand-info span {
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-header-call:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--green-whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px var(--green-glow);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-header-wa:hover {
  background: var(--green-whatsapp-hover);
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.18;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.btn-primary-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  background: var(--green-whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px var(--green-glow);
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-primary-wa:hover {
  background: var(--green-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-secondary-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.6rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-secondary-call:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-2px);
}

.hero-card-box {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  width: 100%;
}

.hero-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.cash-notice-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px dashed rgba(239, 68, 68, 0.4);
  padding: 0.95rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cash-notice-box i {
  font-size: 1.6rem;
  color: #ef4444;
  flex-shrink: 0;
}

.cash-notice-text h4 {
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.cash-notice-text p {
  color: #e2e8f0;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.35;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.stat-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  padding: 0.85rem 0.6rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-item i {
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.stat-item h4 {
  font-size: 0.88rem;
  color: #fff;
}

.stat-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Section Common Styles */
.section-padding {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.65rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Trust Pillars Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Products & Menu Section */
/* Swipeable Horizontal Scroll Bar on Mobile */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-filter-bar::-webkit-scrollbar {
  display: none;
}

.btn-cat-filter {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
}

.btn-cat-filter:hover, .btn-cat-filter.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.product-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
  padding-right: 2rem;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.btn-add-cart {
  width: 100%;
  padding: 0.65rem;
  min-height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-card);
  color: var(--gold-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  background: var(--gold-gradient);
  color: #000;
}

.btn-add-cart.added {
  background: var(--green-whatsapp);
  color: #fff;
  border-color: var(--green-whatsapp);
}

/* Floating Cart & Order Widget */
.cart-floating-bar {
  position: fixed;
  bottom: calc(85px + env(safe-area-inset-bottom));
  left: 15px;
  right: 15px;
  z-index: 90;
  background: rgba(14, 17, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  max-width: 450px;
  margin: 0 auto;
  display: none;
  animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cart-header-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.cart-header-mini h4 {
  font-size: 0.92rem;
  color: #fff;
}

.btn-send-wa-cart {
  width: 100%;
  padding: 0.75rem;
  min-height: 46px;
  background: var(--green-whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--green-glow);
}

/* Regions Section */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.region-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.region-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  gap: 0.5rem;
}

.region-card-header h3 {
  font-size: 1.15rem;
  color: #fff;
}

.delivery-badge {
  font-size: 0.75rem;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  white-space: nowrap;
}

.region-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--gold-primary);
  margin-bottom: 0.65rem;
}

.blog-card h3 {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.btn-read-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: none;
  line-height: 1.5;
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: rgba(5, 6, 9, 0.95);
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-about h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.65rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.footer-links h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Mobile Sticky Action Bar - Ultra Optimized for iPhone & Android */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(8, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-card);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.7);
}

.btn-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  min-height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-sticky-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  min-height: 48px;
  background: var(--green-whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px var(--green-glow);
}

/* Modal Overlay & General Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #0d0f17;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 1.75rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #fff;
}

/* Admin Dashboard Styles */
.admin-login-box {
  max-width: 400px;
  margin: 1rem auto;
  text-align: center;
}

.form-group {
  margin-bottom: 1.1rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 16px !important; /* Prevents mobile zoom */
}

.btn-admin-submit {
  width: 100%;
  padding: 0.85rem;
  min-height: 48px;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.admin-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 0.65rem 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-card);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Media Queries (100% Responsiveness)
   ========================================================================== */

@media (min-width: 769px) {
  /* Show header action buttons on desktop */
  .mobile-sticky-bar {
    display: none; /* Desktop uses header buttons */
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.4rem 0;
  }

  .announcement-content {
    gap: 0.85rem;
  }

  /* Header adjustments for Mobile */
  .header-actions .btn-header-call,
  .header-actions .btn-header-wa {
    display: none; /* Hidden on mobile header to avoid overlap; mobile uses bottom sticky bar */
  }

  .hero-section {
    padding: 2.2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-wa, .btn-secondary-call {
    width: 100%;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-container {
    padding: 1.25rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .brand-info h1 {
    font-size: 1.15rem;
  }

  .brand-info span {
    font-size: 0.68rem;
  }

  .badge-live {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .cash-notice-box {
    flex-direction: row;
    padding: 0.85rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .stat-item {
    padding: 0.75rem 0.4rem;
  }

  .stat-item h4 {
    font-size: 0.82rem;
  }

  .stat-item p {
    font-size: 0.68rem;
  }

  .btn-cat-filter {
    font-size: 0.82rem;
    padding: 0.5rem 0.95rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.45rem;
  }

  .btn-sticky-call, .btn-sticky-wa {
    font-size: 0.85rem;
    padding: 0.6rem;
  }
}
