/* ========================================
   BOLD THEME — Fashion/Textile Storefront
   ======================================== */

/* CSS Variables */
:root {
  --bg: #f0eeeb;
  --surface: #ffffff;
  --text: #0a0a0a;
  --text-muted: #6e6e6e;
  --accent: #c41e3a;
  --accent-muted: #f5e8e8;
  --border: #d5d0ca;

  --font-display: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --max-width: 1280px;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Utility */
.max-width {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--surface);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
}

.center {
  text-align: center;
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
}
.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
}

.lang-item {
  padding: var(--space-xs) var(--space-sm);
  min-width: 32px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.lang-item:hover {
  border-color: var(--border);
}

.lang-item.is-current {
  background: var(--text);
  color: var(--surface);
  border-color: var(--text);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 4px;
  transition: all 0.2s ease;
}

.hamburger {
  top: 15px;
}

.hamburger::before {
  content: "";
  top: -7px;
}

.hamburger::after {
  content: "";
  top: 7px;
}

.mobile-menu-toggle.is-active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.is-active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
  }

  .nav-link {
    font-size: 1rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: clamp(500px, 80vh, 800px);
  min-height: clamp(500px, 80dvh, 800px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-noimage {
  background:
    radial-gradient(110% 120% at 20% 0%, #211e1c 0%, transparent 60%),
    linear-gradient(160deg, #141312 0%, #2b2624 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--surface);
  max-width: 600px;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-xl);
  background: var(--accent);
  color: var(--surface);
  transition: all 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus {
  background: #a31830;
  transform: translateY(-2px);
}

.hero-cta:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 var(--space-lg);
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--text);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-wrap: balance;
}

.section-title.center {
  text-align: center;
  margin: 0 auto var(--space-xl);
  border-bottom: 2px solid var(--text);
  padding-bottom: var(--space-md);
  display: inline-block;
}

.section-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.section-link:hover {
  color: var(--accent);
}

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */

.featured-products,
.product-list {
  padding: var(--space-4xl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

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

/* Mixed-size grid for bold theme - first item spans 2 columns */
.products-grid .product-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .products-grid .product-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .products-grid .product-card:first-child {
    grid-column: span 1;
  }
}

.product-card {
  background: var(--surface);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(60, 20, 10, 0.12);
}

.product-card:active {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
  }
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg);
}

.product-card:first-child .product-image-wrap {
  aspect-ratio: 1;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .product-card:hover .product-image {
    transform: none;
  }
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.product-info {
  padding: var(--space-md);
  border-top: 1px solid var(--border);
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card:first-child .product-name {
  font-size: 1.25rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.product-card:first-child .product-price {
  font-size: 1.5rem;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */

.categories-section {
  padding: var(--space-4xl) 0;
  background: var(--surface);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.category-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-tile:hover .category-bg {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .category-tile:hover .category-bg {
    transform: none;
  }
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease;
}

.category-tile:hover .category-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.category-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: var(--space-md);
}

/* ========================================
   CATEGORY FILTER (PILLS)
   ======================================== */

.category-filter {
  background: var(--surface);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.filter-pill {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--border);
  background: var(--surface);
  transition: all 0.15s ease;
}

.filter-pill:hover,
.filter-pill:focus {
  border-color: var(--text);
}

.filter-pill:active {
  transform: translateY(1px);
}

.filter-pill.is-active {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.pagination-prev,
.pagination-next {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
  color: var(--accent);
}

.pagination-info {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.no-results {
  text-align: center;
  padding: var(--space-4xl) 0;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */

.product-detail {
  background: var(--surface);
}

/* Gallery */
.gallery-wrap {
  background: var(--bg);
}

.main-image-container {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.main-image-placeholder {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  color: var(--text-muted);
}

/* Thumbnails */
.gallery-thumbnails {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.thumbnails-scroll {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.thumbnails-scroll::-webkit-scrollbar {
  height: 6px;
}

.thumbnails-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.thumb-btn {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover,
.thumb-btn:focus {
  border-color: var(--border);
}

.thumb-btn.active {
  border-color: var(--accent);
}

/* Product Info */
.product-info-wrap {
  padding: var(--space-3xl) 0;
}

.product-info-narrow {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.back-link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xl);
}

.back-link a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.back-link a:hover {
  color: var(--accent);
}

.product-category {
  margin-bottom: var(--space-md);
}

.product-category a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.product-category a:hover {
  color: var(--accent);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.product-short-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.product-price-large {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xl);
  font-variant-numeric: tabular-nums;
}

.product-description {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.product-description p {
  margin-bottom: var(--space-md);
}

.product-description p:last-child {
  margin-bottom: 0;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Request form on product detail */
.request-form {
  text-align: left;
  width: 100%;
}

.request-form p {
  margin: 0 0 var(--space-lg) 0;
}

.request-form p:last-child {
  margin-bottom: 0;
}

/* ========================================
   PAGE TEMPLATE
   ======================================== */

.page-header {
  background: var(--surface);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-hero {
  min-height: clamp(300px, 50vh, 500px);
  min-height: clamp(300px, 50dvh, 500px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4)
  );
}

.page-content {
  padding: var(--space-3xl) 0;
}

.page-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.page-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  text-align: center;
  text-wrap: balance;
}

.page-body {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-body p {
  margin-bottom: var(--space-lg);
}

.page-body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

.contact-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.contact-block {
  margin-bottom: var(--space-xl);
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  transition: color 0.15s ease;
  font-variant-numeric: tabular-nums;
}

.contact-phone:hover {
  color: var(--accent);
}

.contact-email {
  font-size: 1.125rem;
  color: var(--text);
  transition: color 0.15s ease;
}

.contact-email:hover {
  color: var(--accent);
}

.contact-address,
.contact-hours {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--surface);
  padding: var(--space-xl);
  border: 3px solid var(--text);
}

@media (min-width: 769px) {
  .contact-form-wrap {
    padding: var(--space-2xl);
  }
}

.form-field {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

input,
textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  background: var(--surface);
  transition: border-color 0.15s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-errors {
  background: var(--accent-muted);
  border-left: 4px solid var(--accent);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-errors p {
  color: var(--accent);
  font-weight: 600;
}

.field-error {
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-section {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.thanks-content {
  max-width: 480px;
  margin: 0 auto;
}

.thanks-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.thanks-message {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-md) var(--space-xl);
  text-align: center;
  transition: all 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: #a31830;
  transform: translateY(-1px);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--text);
  color: var(--surface);
}

.btn-full {
  width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--surface);
  border-top: 4px solid var(--accent);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-address {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.15s ease;
  font-variant-numeric: tabular-nums;
}

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

.footer-email {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

.footer-hours {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  color: var(--text);
  transition: all 0.15s ease;
}

.social-link:hover,
.social-link:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.social-link:active {
  transform: scale(0.95);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   Content enrichment: stats, how-it-works,
   testimonials, logo strip, FAQ, badges, specs
   ======================================== */

/* Stats — oversized numerals as a graphic element */
.stats-section {
  padding: var(--space-3xl) 0;
  background: var(--text);
  color: var(--surface);
}
.stats-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--surface);
}
.stat-item:nth-child(even) .stat-value { color: var(--accent); }
.stat-label {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.14); }
}

/* How it works */
.how-section {
  padding: var(--space-4xl) 0;
  background: var(--surface);
}
.how-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}
.how-step {
  position: relative;
  padding-top: var(--space-xl);
  border-top: 3px solid var(--text);
}
.how-number {
  position: absolute;
  top: -1.1rem;
  left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  background: var(--surface);
  padding-right: var(--space-sm);
}
.how-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.how-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* Testimonials */
.testimonials-section {
  padding: var(--space-4xl) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}
.testimonial-quote { margin: 0; }
.testimonial-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--text);
}
.testimonial-quote p::before { content: "\201C"; color: var(--accent); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 2px solid var(--text);
  padding-top: var(--space-md);
}
.testimonial-photo {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.1);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  display: block;
}
.testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Logo strip */
.logo-strip-section {
  padding: var(--space-3xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}
.logo-strip-img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.65;
  transition: opacity var(--space-xs) ease, filter var(--space-xs) ease;
}
.logo-strip-link:hover .logo-strip-img,
.logo-strip-img:hover { opacity: 1; filter: grayscale(0); }

/* FAQ */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--surface);
}
.faq-list {
  margin-top: var(--space-xl);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.faq-answer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}
.faq-answer p { margin-bottom: var(--space-sm); }
.faq-answer p:last-child { margin-bottom: 0; }

/* Product card badges */
.product-image-wrap { position: relative; }
.product-card-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: flex-start;
  pointer-events: none;
}
.product-badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  line-height: 1;
}
.product-badge--new { background: var(--accent); }
.product-badge--featured { background: var(--text); }

/* Product specs + spec sheet */
.product-specs {
  margin-top: var(--space-xl);
  border-top: 2px solid var(--text);
  padding-top: var(--space-md);
}
.product-specs-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.product-specs-list { margin: 0; }
.product-spec-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}
.product-spec-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.product-spec-value {
  margin: 0;
  color: var(--text);
}
.product-spec-sheet {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: 0.6rem var(--space-md);
  background: var(--text);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-spec-sheet:hover { background: var(--accent); color: var(--surface); }

/* Contact map */
.contact-map-section { line-height: 0; }
.contact-map-iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.contact-whatsapp {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
