
/* ===== PREVENT HORIZONTAL SCROLL ===== */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fix for mobile viewport */
@media screen and (max-width: 768px) {
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Prevent horizontal scroll on all containers */
  .container,
  .section,
  header,
  footer,
  .hero,
  .products-grid,
  .categories,
  .deals-weekly,
  .steps-grid,
  .testimonials-grid,
  .footer-grid {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix images */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Fix buttons and inputs */
  button, input, select, textarea {
    max-width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
/* ========================================
   KARING KIND - COMPLETE STYLESHEET
   Version: 2.0 (Production Ready)
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary: #7cfc00;
  --primary-dark: #6ae000;
  --primary-light: #9aff33;
  --secondary: #1a1a1a;
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-lighter: #222222;
  --text-light: #eaeaea;
  --text-muted: #a0a0a0;
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --telegram: #0088cc;
  --moonpay: #635bff;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, #2d1b3d 0%, #1a3d2d 100%);
  --gradient-2: linear-gradient(135deg, #1a3d2d 0%, #2d1b3d 100%);
  --gradient-primary: linear-gradient(90deg, var(--primary), #00d4aa);
  
  /* Shadows */
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-hover: 0 20px 60px rgba(124, 252, 0, 0.15);
  --shadow-telegram: 0 6px 25px rgba(0, 136, 204, 0.4);
  
  /* Spacing */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hide-mobile {
  display: inline;
}

.hide-desktop {
  display: none;
}

/* ===== BUTTONS ===== */
button, .btn {
  cursor: pointer;
  border: none;
  background: var(--primary);
  color: #000;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  touch-action: manipulation;
  font-family: inherit;
}

button:hover, .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

button:active, .btn:active {
  transform: translateY(0);
}

button:focus, .btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button.secondary, .btn.secondary {
  background: var(--bg-lighter);
  color: var(--text-light);
  border: 1px solid #333;
}

button.secondary:hover {
  background: #333;
  border-color: #444;
}

button.outline, .btn.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

button.outline:hover {
  background: var(--primary);
  color: #000;
}

button.disabled, .btn.disabled,
button:disabled, .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img.lazy {
  background: var(--bg-lighter);
  min-height: 200px;
}

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

#age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  border: 1px solid #333;
  box-shadow: var(--shadow);
}

.age-gate-content .cannabis-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.age-gate-content h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.age-gate-content p {
  color: var(--text-muted);
  margin: 15px 0;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-group button {
  min-width: 180px;
}

/* ===== HEADER ===== */
header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(15, 15, 15, 0.98);
  box-shadow: var(--shadow);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-actions a {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  white-space: nowrap;
}

.header-actions a:hover {
  background: rgba(124, 252, 0, 0.1);
}

.cart-btn {
  background: var(--bg-lighter);
  color: var(--text-light);
  position: relative;
  min-width: 50px;
  padding: 10px 14px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--text-light);
  font-size: 1.5rem;
  padding: 10px;
  min-width: auto;
}

.nav {
  display: flex;
  gap: 2px;
  border-top: 1px solid #333;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  padding: 16px 24px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--primary);
  background: rgba(124, 252, 0, 0.05);
}

.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-bottom: 1px solid #333;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 15px 24px;
  color: var(--text-muted);
  border-bottom: 1px solid #333;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  background: rgba(124, 252, 0, 0.05);
}

.deals-banner {
  background: var(--gradient-1);
  padding: 12px 0;
  text-align: center;
  font-size: 0.95rem;
}

.animate-text {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
              url('../images/hero-banner.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 180px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid #333;
}

.stat-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-card .label {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 0.9rem;
  display: block;
}

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  background: var(--bg-card);
  padding: 30px 0;
  border-bottom: 1px solid #333;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.delivery-item {
  text-align: center;
  padding: 15px;
}

.delivery-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.delivery-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.delivery-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CATEGORIES ===== */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  border: 1px solid #333;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.category-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-light);
}

.category-count {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #333;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.product-image {
  height: 220px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  max-width: 100%;
  max-height: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.badge {
  background: var(--primary);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.sale {
  background: var(--danger);
  color: #fff;
}

.badge.new {
  background: var(--success);
  color: #fff;
}

.badge.limited {
  background: var(--warning);
  color: #000;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}

.product-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 8px 0;
  line-height: 1.3;
  color: var(--text-light);
  flex-grow: 1;
}

.product-strain {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 8px 0;
}

.strain-sativa {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.strain-indica {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.strain-hybrid {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.old-price {
  text-decoration: line-through;
  color: #666;
  font-size: 0.95rem;
  margin-left: 8px;
}

.stock-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 0;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-dot.in-stock {
  background: var(--success);
}

.stock-dot.low-stock {
  background: var(--warning);
}

.stock-dot.out-stock {
  background: var(--danger);
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  justify-content: center;
}

/* ===== CATEGORY FILTER ===== */
.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg-lighter);
  border: 1px solid #333;
  border-radius: 50px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* ===== MENU CONTROLS ===== */
.menu-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.menu-controls input,
.menu-controls select {
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 1rem;
  min-height: 48px;
  font-family: inherit;
}

.menu-controls input {
  flex: 1;
  min-width: 200px;
}

.menu-controls input:focus,
.menu-controls select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 252, 0, 0.1);
}

.menu-controls select {
  min-width: 180px;
  cursor: pointer;
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.step-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.step-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  background: var(--gradient-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

.about-feature span {
  color: var(--text-light);
  font-weight: 500;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-images img {
  border-radius: var(--radius);
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid #333;
}

.about-images img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}

/* ===== MAP ===== */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #333;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 30px;
  color: #fff;
}

.map-overlay h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.map-overlay p {
  margin-bottom: 15px;
  line-height: 1.8;
  margin: 0 0 15px 0;
}

/* ===== CRYPTO PREVIEW ===== */
.crypto-preview {
  text-align: center;
}

.crypto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.crypto-step {
  background: var(--bg-lighter);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid #333;
}

.step-badge {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 35px;
}

.crypto-step h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.crypto-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== AWARDS ===== */
.awards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}

.award-badge {
  background: rgba(124, 252, 0, 0.1);
  border: 1px solid var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.award-badge i {
  color: var(--primary);
}

.award-badge span {
  color: var(--text-light);
}

/* ===== DEALS ===== */
.deals-weekly {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.deal-day {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid #333;
  overflow: hidden;
  transition: var(--transition);
}

.deal-day:hover {
  border-color: #444;
}

.deal-day.today {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 252, 0, 0.2);
}

.deal-day-header {
  background: var(--bg-lighter);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-day-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-light);
}

.deal-content {
  padding: 25px;
  text-align: center;
}

.deal-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.deal-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.deal-content p {
  color: var(--text-muted);
  margin: 0 0 15px 0;
}

/* ===== LOYALTY ===== */
.loyalty {
  background: var(--bg-card);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.loyalty-card {
  background: var(--bg-lighter);
  padding: 35px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid #333;
  transition: var(--transition);
}

.loyalty-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.loyalty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.loyalty-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.loyalty-points {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1;
}

.loyalty-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 8px 0;
}

/* ===== FAQ ===== */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 15px;
  border: 1px solid #333;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #444;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  color: var(--text-light);
}

.faq-question:hover {
  background: rgba(124, 252, 0, 0.05);
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 15px 0;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 30px 0;
}

.contact-info {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(124, 252, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 3px 0;
}

.contact-form {
  background: var(--bg-lighter);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
}

.contact-form h2 {
  color: var(--text-light);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 252, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== SHIPPING ===== */
.shipping-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.zone-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: #444;
}

.zone-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.zone-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.zone-card ul {
  margin-left: 20px;
  color: var(--text-muted);
}

.zone-card li {
  margin: 8px 0;
  line-height: 1.6;
}

/* ===== PACKAGING ===== */
.packaging-section {
  margin: 50px 0;
}

.packaging-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.packaging-item {
  text-align: center;
  padding: 20px;
}

.packaging-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.packaging-item h4 {
  margin-bottom: 8px;
  color: var(--text-light);
}

.packaging-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== TIMELINE ===== */
.timeline-section {
  margin: 50px 0;
}

.timeline-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: -27px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== TRACKING ===== */
.tracking-section {
  margin: 50px 0;
}

.tracking-section h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.tracking-section > p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.tracking-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-num {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.tracking-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== AGE VERIFICATION ===== */
.age-verification-section {
  margin: 50px 0;
}

.age-verification-section h2 {
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.verification-item {
  text-align: center;
  padding: 20px;
}

.verification-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.verification-item h4 {
  margin-bottom: 8px;
  color: var(--text-light);
}

.verification-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CRYPTO GUIDE ===== */
.crypto-guide {
  max-width: 900px;
  margin: 0 auto;
}

.step-card.large {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  margin-bottom: 25px;
  text-align: left;
}

.step-card.large .step-number {
  margin: 0 0 20px 0;
}

.step-card.large h3 {
  color: var(--primary);
  margin: 15px 0 10px;
}

.step-card.large p {
  color: var(--text-muted);
  margin: 10px 0;
}

.step-card.large ol,
.step-card.large ul {
  margin-left: 20px;
  color: var(--text-muted);
}

.step-card.large li {
  margin: 8px 0;
  line-height: 1.6;
}

.step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 15px 0;
  border: 1px solid #333;
}

.crypto-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.crypto-item {
  background: var(--bg-lighter);
  padding: 15px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
}

.crypto-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.crypto-item strong {
  color: var(--text-light);
}

.warning-box,
.success-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--warning);
  padding: 15px;
  border-radius: var(--radius);
  margin: 15px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.warning-box i,
.success-box i {
  margin-right: 8px;
}

.success-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.payment-method {
  background: var(--bg-lighter);
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #333;
  color: var(--text-muted);
}

.payment-method i {
  color: var(--primary);
  margin-right: 8px;
}

/* ===== FEES ===== */
.fees-section {
  margin: 50px 0;
}

.fees-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.fee-card {
  background: var(--bg-lighter);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid #333;
  text-align: center;
}

.fee-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.fee-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0;
}

.fee-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== SUPPORT BOX ===== */
.support-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  text-align: center;
  margin: 40px 0;
}

.support-box h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.support-box p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* ===== WALLET REQUEST ===== */
.wallet-request {
  background: var(--bg-lighter);
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
  margin: 40px 0;
}

.wallet-request h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.wallet-request ol {
  margin-left: 20px;
  color: var(--text-muted);
  margin: 20px 0;
}

.wallet-request li {
  margin: 10px 0;
  line-height: 1.6;
}

/* ===== SECURITY NOTICE ===== */
.security-notice {
  background: rgba(124, 252, 0, 0.05);
  border: 1px solid var(--primary);
  padding: 25px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.security-notice h2 {
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-notice ul {
  margin-left: 20px;
  color: var(--text-muted);
}

.security-notice li {
  margin: 8px 0;
  line-height: 1.6;
}

/* ===== ORDER INSTRUCTIONS ===== */
.order-instructions {
  background: var(--bg-card);
  padding: 40px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.instruction-card {
  background: var(--bg-lighter);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #333;
}

.instruction-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.instruction-card ol {
  margin-left: 20px;
  color: var(--text-muted);
}

.instruction-card li {
  margin: 10px 0;
  line-height: 1.6;
}

.instruction-card a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 15px 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--bg-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid #333;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin: 10px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #222;
  color: var(--text-muted);
}

.copyright p {
  margin: 10px 0;
}

.copyright a {
  color: var(--text-muted);
}

.copyright a:hover {
  color: var(--primary);
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.compliance-badge {
  background: rgba(124, 252, 0, 0.05);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.compliance-badge i {
  color: var(--primary);
}

/* ===== TELEGRAM WIDGET ===== */
#telegram-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.telegram-hint {
  background: var(--bg-card);
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid #333;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.telegram-btn {
  background: var(--telegram);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-telegram);
  transition: var(--transition);
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 136, 204, 0.6);
}

.telegram-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--success);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== FLOATING CART ===== */
#floating-cart {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: var(--shadow);
  z-index: 998;
  display: none;
}

#floating-cart.active {
  display: block;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.cart-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.1rem;
}

.cart-close {
  background: var(--bg-lighter);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--danger);
  color: #fff;
}

.cart-items {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-remove {
  color: var(--danger);
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 15px 0;
  border-top: 1px solid #333;
  margin-bottom: 15px;
}

.checkout-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
  min-width: 140px;
  justify-content: center;
}

.checkout-btn.crypto {
  background: var(--moonpay);
  color: #fff;
}

.checkout-btn.crypto:hover {
  background: #554ce6;
}

.cart-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
  margin: 12px 0 0 0;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 997;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(124, 252, 0, 0.4);
}

#scroll-top.visible {
  display: flex;
}

#scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 252, 0, 0.6);
}

/* ===== RESPONSIVE - TABLET (1024px) ===== */
@media screen and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .loyalty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE - MOBILE (768px) ===== */
@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
  }
  
  .nav {
    display: none !important;
  }
  
  .hide-mobile {
    display: none;
  }
  
  .hide-desktop {
    display: inline;
  }
  
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-card .number {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0;
  }
  
  .product-card {
    width: 100%;
  }
  
  .product-image {
    height: 250px;
  }
  
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .category-card {
    padding: 15px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .about-images img:first-child {
    grid-column: 1;
  }
  
  .deals-weekly {
    grid-template-columns: 1fr;
  }
  
  .loyalty-grid {
    grid-template-columns: 1fr;
  }
  
  .shipping-zones {
    grid-template-columns: 1fr;
  }
  
  .packaging-grid {
    grid-template-columns: 1fr;
  }
  
  .tracking-steps {
    grid-template-columns: 1fr;
  }
  
  .verification-grid {
    grid-template-columns: 1fr;
  }
  
  .crypto-steps {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #telegram-widget {
    bottom: 20px;
    right: 20px;
  }
  
  #floating-cart {
    left: 15px;
    right: 15px;
    bottom: 100px;
    min-width: auto;
    max-width: none;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 25px;
  }
  
  .age-gate-content {
    padding: 30px 20px;
  }
  
  .age-gate-content h1 {
    font-size: 2rem;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group button {
    width: 100%;
    justify-content: center;
  }
}

/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .categories {
    grid-template-columns: 1fr;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  
  .product-image {
    height: 200px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-card .number {
    font-size: 1.75rem;
  }
  
  .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .fees-grid {
    grid-template-columns: 1fr;
  }
  
  .crypto-list {
    grid-template-columns: 1fr;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checkout-options {
    flex-direction: column;
  }
  
  .checkout-btn {
    width: 100%;
  }
}

/* ===== RESPONSIVE - EXTRA SMALL (360px) ===== */
@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===== LANDSCAPE MOBILE ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    display: none;
  }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  #telegram-widget,
  #floating-cart,
  #scroll-top,
  .mobile-menu-btn,
  .nav,
  .mobile-nav,
  .btn,
  button {
    display: none !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .section {
    padding: 20px 0;
  }
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fix deals banner on mobile */
@media screen and (max-width: 768px) {
  .deals-banner {
    position: relative;
    font-size: 0.8rem;
    padding: 8px 0;
  }
  
  .animate-text {
    font-size: 0.75rem;
  }
  
  /* Add padding to bottom of page for floating elements */
  body {
    padding-bottom: 100px;
  }
}

/* Mobile Navigation - Better positioning */
.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-bottom: 1px solid #333;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  display: block;
  max-height: 500px; /* Adjust based on menu items */
  overflow-y: auto;
}

.mobile-nav a {
  display: block;
  padding: 15px 24px;
  color: var(--text-muted);
  border-bottom: 1px solid #333;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  background: rgba(124, 252, 0, 0.05);
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

