/* =========================================
   Variables & Base Settings
   ========================================= */
:root {
  --primary: #123524;
  --secondary: #3E7C17;
  --accent: #E8D39E;
  --accent-light: #F4E7C4;
  --bg-dark: #0A0F0D;
  --bg-panel: #141A17;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --success: #10B981;
  --danger: #EF4444;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(62, 124, 23, 0.1);
  color: var(--accent);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(232, 211, 158, 0.2);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-primary-lg, .btn-outline, .btn-ghost-lg, .btn-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary, .btn-primary-lg, .btn-shop {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover, .btn-primary-lg:hover, .btn-shop:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 211, 158, 0.3);
}

.btn-primary-lg, .btn-ghost-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-muted);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-lg {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-ghost-lg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   Age Gate
   ========================================= */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
}

.age-gate-inner {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.age-gate-logo {
  margin-bottom: 2rem;
}

.age-gate-logo h1 {
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 2px;
}

.tagline {
  color: var(--secondary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.age-gate-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.age-gate-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background: rgba(10, 15, 13, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 15, 13, 0.95);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.region-selector {
  position: relative;
}

.region-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.region-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.region-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.region-dropdown.show {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.region-option {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.region-option:hover, .region-option.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(62, 124, 23, 0.15) 0%, rgba(10, 15, 13, 1) 60%);
  z-index: -1;
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* =========================================
   Live Inventory Banner
   ========================================= */
.inventory-banner {
  background: var(--bg-panel);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 73px;
  z-index: 99;
}

.banner-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.warehouse-tabs {
  display: flex;
  gap: 0.5rem;
}

.wh-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  font-weight: 500;
}

.wh-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wh-tab.active {
  background: rgba(62, 124, 23, 0.2);
  border-color: var(--secondary);
  color: #fff;
}

/* =========================================
   Catalogue Section
   ========================================= */
.catalogue {
  padding: 6rem 0;
  min-height: 800px;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg-panel);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--secondary);
  background: rgba(0, 0, 0, 0.4);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filter-group {
  display: flex;
  gap: 0.5rem;
}

.filter-select {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

.filter-select:focus {
  border-color: var(--secondary);
}

.results-count {
  font-weight: 500;
  color: var(--accent);
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(62, 124, 23, 0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.brand-name {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.meta-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stock-status {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.in-stock { color: var(--success); }
.out-stock { color: var(--danger); }

.stock-qty {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #fff;
}

.product-price {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.price-por {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.25rem 0 1rem;
  letter-spacing: -1px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================================
   Featured Breeders
   ========================================= */
.brands-section {
  padding: 6rem 0;
  background: var(--bg-panel);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  width: 180px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.brand-img-wrap {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brand-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: var(--transition);
}

.brand-card:hover .brand-img-wrap img {
  opacity: 1;
}

.brand-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.brand-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}

.brand-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--accent);
  color: #fff;
}

/* =========================================
   Why Us / Dropship / Crypto
   ========================================= */
.why-us {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(20, 26, 23, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-panel);
  border-color: rgba(232, 211, 158, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
}

.dropship-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropship-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.dropship-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ds-feature {
  display: flex;
  gap: 1rem;
}

.ds-icon {
  background: rgba(62, 124, 23, 0.2);
  color: var(--success);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropship-pricing {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.dropship-pricing h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.price-flag {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-val {
  display: block;
  font-weight: 700;
  color: var(--accent);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ds-card-stack {
  position: relative;
  height: 400px;
}

.ds-card {
  position: absolute;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  width: 250px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.ds-card span { font-size: 2rem; }
.ds-card p { font-weight: 600; color: #fff; }

.ds-card-1 { top: 0; left: 0; z-index: 1; transform: rotate(-5deg); }
.ds-card-2 { top: 80px; left: 40px; z-index: 2; transform: rotate(2deg); }
.ds-card-3 { top: 160px; left: 80px; z-index: 3; transform: rotate(-2deg); }
.ds-card-4 { top: 240px; left: 120px; z-index: 4; transform: rotate(5deg); border-color: var(--success); }

.ds-card-stack:hover .ds-card {
  transform: rotate(0) translateX(0) translateY(0);
}
.ds-card-stack:hover .ds-card-1 { top: 0; left: 0; }
.ds-card-stack:hover .ds-card-2 { top: 90px; left: 0; }
.ds-card-stack:hover .ds-card-3 { top: 180px; left: 0; }
.ds-card-stack:hover .ds-card-4 { top: 270px; left: 0; }


.crypto-section {
  padding: 6rem 0;
}

.crypto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.crypto-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 211, 158, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
  border: 1px solid rgba(232, 211, 158, 0.3);
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step-content p {
  color: var(--text-muted);
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-q {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

.faq-a {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-a {
  padding: 0 1.25rem 1.25rem;
  max-height: 300px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.crypto-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit span {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================
   Shipping & Contact
   ========================================= */
.shipping-section {
  padding: 6rem 0;
  background: var(--bg-panel);
}

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

.fulfillment-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.08));
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.fulfillment-banner h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.fulfillment-banner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.fulfillment-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rate-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #fff;
}

.rate-pill strong {
  color: var(--accent);
}


.shipping-region {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
}

.shipping-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flag-lg {
  font-size: 2.5rem;
}

.shipping-header h3 {
  font-size: 1.8rem;
  color: #fff;
}

.shipping-region ul {
  list-style: none;
  margin-bottom: 2rem;
}

.shipping-region ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.payment-methods h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-details, .shipping-note {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
}

.bank-details h5 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.bank-details table {
  width: 100%;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bank-details td {
  padding: 0.25rem 0;
}

.bank-details td:first-child {
  font-weight: 600;
  width: 40%;
}

.shipping-note p {
  font-size: 0.9rem;
  color: var(--accent);
}

.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--transition);
}

.contact-link:hover {
  text-decoration-color: var(--accent);
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #050806;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.footer-warehouses {
  display: flex;
  gap: 1rem;
}

/* =========================================
   Modal
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  opacity: 0;
}

.modal-overlay.show .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--danger);
}

.modal-content {
  padding: 2.5rem;
}

.modal-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-brand {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.modal-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.modal-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.modal-stock {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--success);
}

.modal-stock h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.wh-stock-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wh-stock-item:last-child {
  border-bottom: none;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
  .dropship-inner, .crypto-grid {
    grid-template-columns: 1fr;
  }
  .ds-card-stack {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-panel);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    clip-path: circle(0 at 100% 0);
    transition: clip-path 0.4s ease;
  }
  .nav-links.active {
    clip-path: circle(150% at 100% 0);
  }
  .hamburger {
    display: flex;
  }
  .filter-group {
    flex-direction: column;
    width: 100%;
  }
  .filter-select {
    width: 100%;
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Cart Sidebar
   ========================================= */
.cart-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.cart-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-panel);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.cart-item-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-details p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0,0,0,0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Checkout Modal Styles */
.checkout-modal {
  max-width: 800px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.checkout-form .form-group {
  margin-bottom: 1rem;
}

.checkout-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.checkout-form input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  outline: none;
}

.checkout-form input:focus {
  border-color: var(--secondary);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.checkout-summary {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.checkout-items-list {
  flex: 1;
  overflow-y: auto;
  max-height: 200px;
  margin: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-items-list .ci-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.crypto-payment-info {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: auto;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Promotions Section
   ========================================== */
.promos-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.promo-banner {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 87, 34, 0.1));
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #ff5722, #ffc107);
  background-size: 200%;
  animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.promo-banner h3 {
  font-size: 1.6rem;
  color: #ffc107;
  margin: 0.5rem 0 0.75rem;
}

.promo-banner p { color: var(--text-muted); }

.promo-flash {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff5722;
  text-transform: uppercase;
}

.promo-cat-title {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.promo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.promo-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.promo-card--merch {
  border-color: rgba(99, 102, 241, 0.2);
}

.promo-card--merch:hover {
  border-color: #6366f1;
}

.promo-header {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 0.75rem;
}

.promo-brand {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.promo-tiers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.promo-tiers li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.tier-qty {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.tier-free {
  color: var(--accent);
  font-weight: 600;
}

.promo-gift {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.promo-gift em { color: #ccc; font-style: normal; }

.promo-threshold {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.promo-merch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.promo-merch-list li {
  font-size: 0.85rem;
  color: #ccc;
  padding-left: 1.2rem;
  position: relative;
}

.promo-merch-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366f1;
}

.promo-shop-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.promo-shop-btn:hover {
  background: var(--accent);
  color: #000;
}

.promo-disclaimer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.7;
}
