/* ===== RESET BÁSICO ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #0d0d0d;
}

/* ===== BARRA DE PROMO (MARQUESINA) ===== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  z-index: 1100;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.promo-bar-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: promoScroll 18s linear infinite;
}

.promo-bar-track span {
  display: inline-block;
  padding: 0 30px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes promoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 20px 40px;
  font-family: 'Arial', sans-serif;
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo img {
  height: 24px;
}

.logo-text {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  color: #999999;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.navbar-menu li a.active {
  color: #ffffff;
  font-weight: 600;
}

.navbar-menu li a:hover {
  color: #ffffff;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar-cart {
  color: #cccccc;
  cursor: pointer;
  position: relative;
}

/* ===== TOGGLE (HAMBURGUESA) ===== */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2100;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.navbar-toggle span:nth-child(1) {
  width: 26px;
}

.navbar-toggle span:nth-child(2) {
  width: 18px;
}

.navbar-toggle:hover span {
  width: 26px;
}

.navbar-toggle.active span:nth-child(1) {
  width: 26px;
  transform: translateY(4px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  width: 26px;
  transform: translateY(-4px) rotate(-45deg);
}

/* ===== MENÚ MÓVIL (PANTALLA COMPLETA) ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 122px 30px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, visibility 0.4s ease;
  font-family: 'Arial', sans-serif;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-tag {
  color: #999999;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.active .mobile-menu-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.26s; }

.mobile-menu-list li a {
  display: block;
  padding: 18px 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mobile-menu-list li:first-child a {
  padding-top: 0;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar {
    background-color: rgba(10, 10, 10, 0.97);
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  }
  .navbar.scrolled {
    padding: 14px 20px;
  }
  .navbar-actions {
    gap: 18px;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.8) 45%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 45%
    );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0) 0%, #0d0d0d 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero::after {
    height: 130px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}

.hero-tag {
  color: #aaaaaa;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  color: #ffffff;
  font-family: 'Anton', 'Arial', sans-serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  letter-spacing: 0.5px;
}

.hero-title em {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  color: #b8b8b8;
  transform: skewX(-10deg);
}

.hero-subtitle {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #0d0d0d;
}

.btn-primary:hover {
  background-color: #e0e0e0;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #0d0d0d;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 60px;
  z-index: 2;
  color: #999999;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 46px;
  }
  .hero-content {
    padding: 0 25px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-scroll {
    right: auto;
    left: 0;
    bottom: 16px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* ===== PRODUCTS ===== */
.products {
  background-color: #0d0d0d;
  padding: 90px 60px;
  font-family: 'Arial', sans-serif;
}

.products-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 45px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-tag {
  color: #999999;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 10px;
}

.section-title {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}

.products-filters {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filters-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  background-color: #141414;
  border: 1px solid #262626;
  padding: 0 16px;
  transition: border-color 0.2s ease;
}

.filters-search:focus-within {
  border-color: #666666;
}

.filters-search svg {
  color: #777777;
  flex-shrink: 0;
}

.filters-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  padding: 14px 0;
}

.filters-search input::placeholder {
  color: #777777;
}

.filters-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.filter-select-wrap {
  position: relative;
  flex: 0 0 auto;
}

.filter-select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.filter-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #141414;
  border: 1px solid #262626;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 13px 34px 13px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}

.filter-select-wrap select:hover,
.filter-select-wrap select:focus {
  outline: none;
  border-color: #666666;
}

.filter-select-wrap select option {
  background-color: #141414;
  color: #ffffff;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cccccc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  flex: 0 0 auto;
  white-space: nowrap;
}

.filter-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-checkbox-box {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background-color: #141414;
  border: 1px solid #333333;
  position: relative;
  transition: all 0.2s ease;
}

.filter-checkbox:hover .filter-checkbox-box {
  border-color: #666666;
}

.filter-checkbox input:checked + .filter-checkbox-box {
  background-color: #ffffff;
  border-color: #ffffff;
}

.filter-checkbox input:checked + .filter-checkbox-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #0d0d0d;
  border-bottom: 2px solid #0d0d0d;
  transform: rotate(40deg);
}

@media (max-width: 700px) {
  .products-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filters-row {
    width: 100%;
    flex-wrap: wrap;
  }

  .filter-select-wrap {
    flex: 1 1 calc(50% - 6px);
  }

  .filter-select-wrap select {
    width: 100%;
  }

  .filter-checkbox {
    flex-basis: 100%;
    margin-top: 2px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card.hidden {
  display: none;
}

.products-empty {
  color: #999999;
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
}

/* Placeholders de imagen por categoría (reemplazar por fotos reales) */
.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ph-iphone   { background: linear-gradient(135deg, #2b2b2b, #1a1a1a); }
.ph-cable    { background: linear-gradient(135deg, #22303a, #14202a); }
.ph-adapter  { background: linear-gradient(135deg, #2a2416, #1c1810); }
.ph-combo    { background: linear-gradient(135deg, #2a1c2e, #1c1220); }
.ph-magsafe  { background: linear-gradient(135deg, #232323, #151515); }
.ph-silicona { background: linear-gradient(135deg, #1c2a20, #101a14); }
.ph-mate     { background: linear-gradient(135deg, #262626, #171717); }
.ph-templado { background: linear-gradient(135deg, #1c2430, #10161e); }

.product-card {
  position: relative;
  background-color: #161616;
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background-color: #ffffff;
  color: #0d0d0d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
}

.product-badge-sold {
  background-color: #d9d9d9;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #1f1f1f;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-info {
  padding: 20px;
}

.product-info h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

.product-category {
  color: #999999;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin: 0 0 18px 0;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.product-card {
  cursor: pointer;
}

.product-price-row {
  justify-content: flex-start;
}

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

@media (max-width: 600px) {
  .products {
    padding: 60px 15px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-info {
    padding: 12px;
  }
  .product-info h3 {
    font-size: 13px;
    margin: 0 0 4px 0;
  }
  .product-category {
    font-size: 11px;
    margin: 0 0 10px 0;
  }
  .product-price {
    font-size: 14px;
  }
  .product-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 4px 8px;
  }
}

/* ===== MODAL DE PRODUCTO ===== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.product-modal-overlay.open {
  display: flex;
}

.product-modal {
  position: relative;
  background-color: #0d0d0d;
  width: 100%;
  max-width: 1100px;
  border: 1px solid #262626;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-modal-close:hover {
  background-color: #ffffff;
  color: #0d0d0d;
}

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

.product-modal-image-wrap {
  background-color: #efefef;
}

.product-modal-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-modal-image span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-modal-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-info {
  padding: 50px 45px;
}

.product-modal-breadcrumb {
  color: #888888;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.product-modal-breadcrumb span {
  color: #ffffff;
}

.product-modal-info h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 22px 0;
  letter-spacing: -0.5px;
}

.product-modal-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.product-modal-price {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
}

.product-modal-oldprice {
  color: #777777;
  font-size: 17px;
  text-decoration: line-through;
}

.product-modal-oldprice:empty,
.product-modal-discount:empty {
  display: none;
}

.product-modal-discount {
  color: #ff5c5c;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ff5c5c;
  padding: 4px 8px;
}

.product-modal-social {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbbbbb;
  font-size: 13px;
  background-color: #161616;
  border: 1px solid #262626;
  padding: 12px 16px;
  margin-bottom: 28px;
}

.product-modal-social strong {
  color: #ffffff;
}

.social-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2ecc71;
  flex-shrink: 0;
  animation: dotPulse 1.4s infinite ease-in-out;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.product-modal-block {
  border-top: 1px solid #232323;
  padding: 22px 0;
}

.product-modal-block:first-of-type {
  padding-top: 0;
  border-top: none;
}

.product-modal-section-label {
  color: #888888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.product-modal-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.product-modal-features {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  padding-left: 20px;
}

.product-modal-features li {
  margin-bottom: 4px;
}

.product-modal-options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  background: transparent;
  color: #cccccc;
  border: 1px solid #333333;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.option-chip:hover {
  border-color: #666666;
  color: #ffffff;
}

.option-chip.selected {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #333333;
}

.qty-control button {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.qty-control button:hover {
  background-color: #1f1f1f;
}

.qty-control span {
  display: inline-block;
  min-width: 38px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.product-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.product-modal-actions .btn {
  flex: 1;
  justify-content: center;
  border: 1px solid #ffffff;
}

@media (max-width: 800px) {
  .product-modal-content {
    grid-template-columns: 1fr;
  }
  .product-modal-image {
    min-height: 280px;
  }
  .product-modal-info {
    padding: 35px 25px;
  }
  .product-modal-info h2 {
    font-size: 24px;
  }
  .product-modal-actions {
    flex-direction: column;
  }
}

/* ===== CONTACTO ===== */
html {
  scroll-behavior: smooth;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  overflow-y: auto;
  padding: 60px 20px;
}

.contact-overlay.open {
  display: block;
}

.contact {
  position: relative;
  background-color: #0d0d0d;
  border: 1px solid #262626;
  padding: 70px 60px 80px;
  font-family: 'Arial', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  animation: modalIn 0.25s ease;
}

.contact-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-close:hover {
  background-color: #ffffff;
  color: #0d0d0d;
}

.contact-tag {
  color: #999999;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.contact-title {
  color: #ffffff;
  font-size: 64px;
  font-weight: 800;
  margin: 0 0 22px 0;
  letter-spacing: -1px;
}

.contact-subtitle {
  color: #aaaaaa;
  font-size: 17px;
  max-width: 620px;
  margin: 0 0 50px 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #141414;
  border: 1px solid #232323;
  padding: 28px 22px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: #555555;
  transform: translateY(-4px);
}

.contact-card svg {
  color: #999999;
  margin-bottom: 10px;
}

.contact-card-label {
  color: #999999;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-card-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}

.contact-notice {
  background-color: #161616;
  border: 1px solid #262626;
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px 24px;
  margin-bottom: 45px;
}

.contact-notice strong {
  color: #ffffff;
}

.contact-form {
  max-width: 900px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #141414;
  border: 1px solid #262626;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  padding: 16px 18px;
  transition: border-color 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 22px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777777;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #666666;
}

.contact-form-submit {
  border: 1px solid #ffffff;
  cursor: pointer;
  font-family: inherit;
}

.contact-form-success {
  display: none;
  color: #2ecc71;
  font-size: 13px;
  margin-top: 16px;
}

.contact-form-success.show {
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

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

@media (max-width: 700px) {
  .contact {
    padding: 70px 25px 90px;
  }
  .contact-title {
    font-size: 40px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}

/* ===== CARRITO (DRAWER LATERAL) ===== */
.navbar-cart {
  cursor: pointer;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'Arial', sans-serif;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 440px;
  max-width: 92vw;
  background-color: #0d0d0d;
  border-left: 1px solid #262626;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.cart-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 26px 20px;
  border-bottom: 1px solid #232323;
}

.cart-drawer-header h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 4px 0;
}

.cart-drawer-header p {
  color: #888888;
  font-size: 12px;
  margin: 0;
}

.cart-drawer-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-drawer-close:hover {
  background-color: #ffffff;
  color: #0d0d0d;
}

.cart-drawer-items {
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}

.cart-empty {
  color: #777777;
  font-size: 13px;
  text-align: center;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 14px;
}

.cart-item-image {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #232323, #151515);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.cart-item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.cart-item-variant {
  color: #999999;
  font-size: 12px;
  margin: 0 0 6px 0;
}

.cart-item-price {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #333333;
}

.cart-item-qty button {
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
}

.cart-item-qty button:hover {
  background-color: #1f1f1f;
}

.cart-item-qty span {
  display: inline-block;
  min-width: 26px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.cart-item-remove {
  align-self: flex-start;
  background: none;
  border: none;
  color: #666666;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #ff5c5c;
}

.cart-summary {
  border-top: 1px solid #232323;
  padding: 22px 26px 28px;
  margin-top: auto;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaaaaa;
  font-size: 13px;
  margin-bottom: 12px;
}

.cart-summary-total {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
  background-color: #ffffff;
  color: #0d0d0d;
  border: none;
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cart-checkout-btn:hover {
  background-color: #e0e0e0;
}

.cart-checkout-btn:disabled {
  background-color: #333333;
  color: #777777;
  cursor: not-allowed;
}

.cart-checkout-note {
  text-align: center;
  color: #666666;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin: 12px 0 0 0;
}

@media (max-width: 500px) {
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }
}