/* ============================================
   VIDCORT E-Commerce — Custom Styles
   Tema oscuro con acento amarillo/dorado
   Migrado de Next.js/Tailwind a HTML5/CSS3/Bootstrap
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg: #1f1f1f;
  --bg-card: #2b2b2b;
  --bg-secondary: #333333;
  --fg: #fafafa;
  --fg-muted: #a3a3a3;
  --primary: #e0b83e;
  --primary-hover: #c9a535;
  --primary-fg: #1f1f1f;
  --border: #444444;
  --destructive: #dc3545;
  --radius: 0.5rem;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

section[id] {
  scroll-margin-top: 80px;
}

/* ---- Utility ---- */
.text-primary-c { color: var(--primary) !important; }
.text-muted-c { color: var(--fg-muted) !important; }
.text-fg { color: var(--fg) !important; }
.bg-primary-c { background-color: var(--primary) !important; }
.bg-card { background-color: var(--bg-card) !important; }
.bg-dark-main { background-color: var(--bg) !important; }
.border-c { border-color: var(--border) !important; }
.tracking-wider { letter-spacing: 0.1em; }

.text-balance {
  text-wrap: balance;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar-vidcort {
  background-color: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  z-index: 1050;
}

.navbar-vidcort .navbar-brand img {
  height: 48px;
  width: auto;
}

@media (min-width: 768px) {
  .navbar-vidcort .navbar-brand img {
    height: 56px;
  }
}

.navbar-vidcort .nav-link {
  color: var(--fg-muted) !important;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0 !important;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-vidcort .nav-link:hover,
.navbar-vidcort .nav-link.active {
  color: var(--primary) !important;
}

.navbar-vidcort .navbar-toggler {
  border: none;
  color: var(--fg);
  padding: 0.5rem;
}

.navbar-vidcort .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-vidcort .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-vidcort .navbar-collapse {
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .navbar-vidcort .navbar-collapse {
    border-top: none;
  }
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--fg);
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

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

.btn-primary-c {
  background-color: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-primary-c:hover {
  background-color: var(--primary-hover) !important;
  color: var(--primary-fg) !important;
}

.btn-outline-c {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--border) !important;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-c:hover {
  background-color: var(--bg-secondary) !important;
  color: var(--fg) !important;
}

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

/* Carousel backgrounds */
.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-bg .slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-carousel-bg .slide-bg.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.80);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Carousel Controls */
.carousel-control-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  background: rgba(43, 43, 43, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg);
  transition: all 0.3s ease;
}

.carousel-control-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
}

.carousel-control-custom.prev { left: 1rem; }
.carousel-control-custom.next { right: 1rem; }

/* Carousel Indicators */
.carousel-indicators-custom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.carousel-indicators-custom .dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.3);
  width: 8px;
}

.carousel-indicators-custom .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators-custom .dot.active {
  width: 32px;
  background: var(--primary);
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(224, 184, 62, 0.1);
  border: 1px solid rgba(224, 184, 62, 0.3);
  border-radius: 50px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge span {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}

.hero-title .highlight {
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 992px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg-muted);
}

.feature-check i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Hero Preview Card */
.hero-preview-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-preview-card .preview-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.7s ease;
}

.hero-preview-card .preview-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-preview-card .preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-preview-card .preview-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, transparent);
}

.hero-preview-card .preview-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.hero-preview-card .preview-info-card {
  background: rgba(43, 43, 43, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.hero-preview-card .preview-info-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}

.hero-preview-card .preview-info-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
}

/* Stats Cards */
.stat-card {
  background: rgba(43, 43, 43, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-card .stat-value {
    font-size: 3rem;
  }
}

.stat-card .stat-label {
  color: var(--fg-muted);
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}

.stat-card.primary-bg {
  background: var(--primary);
  border-color: var(--primary);
}

.stat-card.primary-bg .stat-value {
  color: var(--primary-fg);
}

.stat-card.primary-bg .stat-label {
  color: rgba(31, 31, 31, 0.8);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 5rem 0;
  background: rgba(51, 51, 51, 0.3);
}

@media (min-width: 768px) {
  .services-section { padding: 8rem 0; }
}

.section-badge {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

@media (min-width: 992px) {
  .section-title { font-size: 3rem; }
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(224, 184, 62, 0.5);
}

.service-card .service-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card .service-image .image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), rgba(43, 43, 43, 0.5), transparent);
}

.service-card .service-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--primary-fg);
}

.service-card .service-body {
  padding: 1rem 1.5rem 1.5rem;
  flex: 1;
}

.service-card .service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.service-card .service-body p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .products-section { padding: 8rem 0; }
}

.cart-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(224, 184, 62, 0.5);
}

.product-card .product-image-wrap {
  position: relative;
  padding: 1.5rem;
}

.product-card .product-image-inner {
  position: relative;
  width: 100%;
  height: 160px;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.product-card:hover .product-image-inner {
  border-color: rgba(224, 184, 62, 0.3);
}

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

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

.product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 2;
}

.product-badge.badge-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.product-badge.badge-destructive {
  background: var(--destructive);
  color: #fff;
}

.product-card .product-details {
  padding: 0 1.5rem;
}

.product-card .product-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card .product-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0.5rem 0;
}

.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card .product-rating i {
  color: var(--primary);
  font-size: 1rem;
}

.product-card .product-rating span {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.product-card .product-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card .price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.product-card .price-original {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.btn-add {
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-add:hover {
  background: var(--primary-hover) !important;
}

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

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

.qty-controls .btn-qty {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.qty-controls .btn-qty:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-controls .btn-qty.plus {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

.qty-controls .btn-qty.plus:hover {
  background: var(--primary-hover);
}

.qty-controls .qty-value {
  width: 32px;
  text-align: center;
  font-weight: 500;
  color: var(--fg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 5rem 0;
  background: rgba(51, 51, 51, 0.3);
}

@media (min-width: 768px) {
  .about-section { padding: 8rem 0; }
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 31, 31, 0.4), transparent);
}

.about-image-wrap .team-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(43, 43, 43, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.about-image-wrap .team-badge p:first-child {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.125rem;
}

.about-image-wrap .team-badge p:last-child {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover {
  border-color: rgba(224, 184, 62, 0.5);
}

.mission-card .circle-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(224, 184, 62, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.mission-card .icon-box {
  width: 64px;
  height: 64px;
  background: rgba(224, 184, 62, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.mission-card:hover .icon-box {
  background: var(--primary);
}

.mission-card .icon-box i {
  font-size: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.mission-card:hover .icon-box i {
  color: var(--primary-fg);
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  border-color: rgba(224, 184, 62, 0.5);
}

.value-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(224, 184, 62, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-card .icon-box i {
  font-size: 1.5rem;
  color: var(--primary);
}

.value-card h4 {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .contact-section { padding: 8rem 0; }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  border-color: rgba(224, 184, 62, 0.5);
}

.contact-info-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(224, 184, 62, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-info-card .icon-box i {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-info-card h3 {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form-card label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
  background: rgba(51, 51, 51, 0.5);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(224, 184, 62, 0.2);
  background: rgba(51, 51, 51, 0.5);
  color: var(--fg);
}

.contact-form-card .form-control::placeholder {
  color: var(--fg-muted);
}

.btn-send {
  width: 100%;
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: var(--primary-hover) !important;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.form-success .success-icon i {
  font-size: 2rem;
  color: var(--primary-fg);
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--fg-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .footer-main { padding: 4rem 0; }
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .brand-icon i {
  font-size: 1.5rem;
  color: var(--primary-fg);
}

.footer-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-brand .brand-name .highlight {
  color: var(--primary);
}

.footer-brand .brand-desc {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

.footer-links h3 {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

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

.footer-newsletter p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

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

.footer-newsletter .newsletter-form input {
  flex: 1;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--fg);
  font-size: 0.9375rem;
}

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

.footer-newsletter .newsletter-form input::placeholder {
  color: var(--fg-muted);
}

.footer-newsletter .newsletter-form button {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter .newsletter-form button:hover {
  background: var(--primary-hover);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
}

.footer-bottom a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color 0.3s ease;
}

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

/* ============================================
   SPINNER
   ============================================ */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(31, 31, 31, 0.3);
  border-top-color: var(--primary-fg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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