/* ========================================
   BRANDS Platform — Base Styles
   Modern, premium, dark luxury theme
   ======================================== */

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-color);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* --- Typography Scale --- */
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.text-accent { color: var(--accent-color); }
.text-muted { opacity: 0.7; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* --- Section Styles --- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-dark {
  background: var(--primary-color);
}

.section-accent {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
}

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

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--heading-font);
  letter-spacing: 0.05em;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.4) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.9) 100%
  );
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 0.4rem 1.5rem;
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-color);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(var(--accent-rgb), 0.05);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-image .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--bg-color);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.product-card-body .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.product-card-body .btn {
  width: 100%;
  margin-top: 1rem;
}

/* --- Product Detail --- */
.product-detail {
  padding-top: 8rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 6rem;
}

.product-gallery-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 3/4;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  opacity: 0.6;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-info .product-price {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-info .product-description {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.product-details-list {
  margin-bottom: 2rem;
}

.product-details-list dt {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.product-details-list dd {
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* --- Store Locator --- */
.store-locator-page {
  padding-top: 6rem;
}

.store-locator-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  height: calc(100vh - 6rem);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.store-sidebar {
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.store-search {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.store-search h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.store-search-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.store-search-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s ease;
}

.store-search-input input:focus {
  border-color: var(--accent-color);
}

.store-search-input button {
  padding: 0.75rem 1rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.store-search-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.store-search-controls select {
  flex: 1;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-color);
  outline: none;
}

.store-search-controls select option {
  background: var(--bg-color);
}

.store-location-btn {
  padding: 0.5rem 0.75rem;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 6px;
  color: var(--accent-color);
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-location-btn:hover {
  background: rgba(var(--accent-rgb), 0.25);
}

.store-results {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.store-results::-webkit-scrollbar {
  width: 4px;
}

.store-results::-webkit-scrollbar-track {
  background: transparent;
}

.store-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.store-result-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-result-card:hover,
.store-result-card.active {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.05);
}

.store-result-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.store-result-card .store-address {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.store-result-card .store-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.store-result-card .store-category {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent-color);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.store-map-container {
  min-height: 400px;
}

.store-map-container #storeMap {
  width: 100%;
  height: 100%;
}

.store-count {
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Store locator widget (embedded in home page) */
.store-locator-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.store-locator-widget .widget-map {
  height: 300px;
}

.store-locator-widget .widget-search {
  padding: 1.5rem;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
  color: var(--accent-color);
}

.blog-card-body p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card .read-more svg {
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more svg {
  transform: translateX(4px);
}

/* Blog Post Page */
.blog-post-page {
  padding-top: 8rem;
}

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

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.blog-post-header .blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.blog-post-hero-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  aspect-ratio: 21/9;
}

.blog-post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
}

.blog-post-content h2 {
  margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
  margin: 2rem 0 0.75rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content img {
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  opacity: 0.85;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Newsletter Form */
.newsletter-section {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.02));
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--accent-color);
}

.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.newsletter-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.newsletter-message.success { color: #4caf50; }
.newsletter-message.error { color: #ef5350; }

/* Contact Form */
.contact-page {
  padding-top: 8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-color);
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

.contact-form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-form-message.success { color: #4caf50; }
.contact-form-message.error { color: #ef5350; }

/* --- Footer --- */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 0;
}

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

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.footer-about p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-color);
}

.footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-3px);
}

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-color);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: var(--accent-color);
}

.footer-newsletter-form button {
  padding: 0.65rem 1rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Problems Section --- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.problem-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* --- Image-Text Block --- */
.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-text-block.reverse {
  direction: rtl;
}

.image-text-block.reverse > * {
  direction: ltr;
}

.image-text-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-text-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-text-content h2 {
  margin-bottom: 1rem;
}

.image-text-content p {
  opacity: 0.8;
  line-height: 1.8;
}

/* --- Experience Section --- */
.experience-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.6));
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.experience-content h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.experience-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* --- Why Choose / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-3px);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.6;
}

/* --- Quality Section --- */
.quality-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.quality-image img {
  width: 100%;
  height: auto;
}

.quality-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 12px;
}

.quality-content h2 {
  margin-bottom: 1.5rem;
}

.quality-content p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quality-list {
  margin-top: 1.5rem;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.quality-list li svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.03));
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Badges & Tags --- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent-color);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 0.25rem;
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* --- Loading States --- */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

/* --- Products Page --- */
.products-page {
  padding-top: 8rem;
}

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

.products-page-header h1 {
  margin-bottom: 0.75rem;
}

.products-page-header p {
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Page Header (generic) --- */
.page-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.05), transparent);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .store-locator-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .store-map-container {
    height: 400px;
    order: -1;
  }

  .store-results {
    max-height: 400px;
  }

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

  .product-gallery {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .image-text-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-text-block.reverse {
    direction: ltr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: 85vh;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .experience-section {
    min-height: 40vh;
    background-attachment: scroll;
  }

  .experience-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .hero {
    min-height: 80vh;
    padding-top: 60px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .section {
    padding: 3rem 0;
  }

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

  .experience-section {
    min-height: 35vh;
  }

  .experience-content h2 {
    font-size: 1.3rem;
  }

  .experience-content p {
    font-size: 0.95rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .age-gate-modal {
    padding: 2rem 1.5rem;
  }

  .age-gate-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .age-gate-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   Age Verification Gate
   ======================================== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: ageGateIn 0.4s ease;
}

@keyframes ageGateIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

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

.age-gate-logo img {
  max-height: 60px;
  width: auto;
}

.age-gate-logo h2 {
  font-family: var(--heading-font, var(--font-family));
  color: var(--primary-color);
  font-size: 1.6rem;
}

.age-gate-modal h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font, var(--font-family));
}

.age-gate-modal p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.age-gate-question {
  font-weight: 600;
  color: #333 !important;
  font-size: 1.05rem !important;
  margin: 1.5rem 0 !important;
}

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

.age-gate-buttons .btn {
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  min-width: 140px;
}

.age-gate-buttons .btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.age-gate-buttons .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.age-gate-buttons .btn-secondary {
  background: #e8e8e8;
  color: #333;
}

.age-gate-buttons .btn-secondary:hover {
  background: #ddd;
}

.age-gate-disclaimer {
  font-size: 0.78rem !important;
  color: #999 !important;
  margin-top: 1rem !important;
}

/* ========================================
   Bright Theme Override
   ======================================== */
body.theme-bright {
  background-color: var(--bg-color, #FBF9F4);
  color: var(--text-color, #333);
}

body.theme-bright .nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e8e4de;
  backdrop-filter: blur(10px);
}

body.theme-bright .nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.theme-bright .nav-logo,
body.theme-bright .nav-logo a {
  color: var(--primary-color);
}

body.theme-bright .nav-link {
  color: #555;
}

body.theme-bright .nav-link:hover,
body.theme-bright .nav-link.active {
  color: var(--primary-color);
}

body.theme-bright .hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0099ff 50%, #00bfff 100%);
  color: #fff;
}

body.theme-bright .hero-title,
body.theme-bright .hero-subtitle {
  color: #fff;
}

body.theme-bright .section {
  background: var(--bg-color, #FBF9F4);
}

body.theme-bright .section:nth-child(even) {
  background: #fff;
}

body.theme-bright .section-title {
  color: #222;
}

body.theme-bright .section-subtitle {
  color: #666;
}

body.theme-bright .product-card {
  background: #fff;
  border: 1px solid #e8e4de;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

body.theme-bright .product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

body.theme-bright .product-name {
  color: #222;
}

body.theme-bright .product-desc {
  color: #666;
}

body.theme-bright .problem-card,
body.theme-bright .feature-card,
body.theme-bright .why-card {
  background: #fff;
  border: 1px solid #e8e4de;
  color: #333;
}

body.theme-bright .problem-card h3,
body.theme-bright .feature-card h3,
body.theme-bright .why-card h3 {
  color: #222;
}

body.theme-bright .problem-card p,
body.theme-bright .feature-card p,
body.theme-bright .why-card p {
  color: #666;
}

body.theme-bright .blog-card {
  background: #fff;
  border: 1px solid #e8e4de;
}

body.theme-bright .blog-card-title {
  color: #222;
}

body.theme-bright .blog-card-excerpt {
  color: #666;
}

body.theme-bright .newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), #0099ff);
  color: #fff;
}

body.theme-bright .footer {
  background: #1a1a2e;
  color: #ccc;
}

body.theme-bright .btn-primary {
  background: var(--primary-color);
  color: #fff;
}

body.theme-bright .btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

body.theme-bright .experience-section {
  background: linear-gradient(135deg, var(--primary-color), #0099ff);
  color: #fff;
}

body.theme-bright .experience-overlay {
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.75), rgba(0, 153, 255, 0.5));
}

body.theme-bright .quality-section {
  background: #fff;
}

body.theme-bright .quality-section h2,
body.theme-bright .quality-section h3 {
  color: #222;
}

body.theme-bright .quality-section p {
  color: #555;
}

body.theme-bright .text-section h2 {
  color: #222;
}

body.theme-bright .text-section p {
  color: #555;
}

body.theme-bright .cta-section {
  background: linear-gradient(135deg, var(--primary-color), #0099ff);
  color: #fff;
}
