/* CONTACT PAGE */
.contact-page {
  padding: 90px 60px 80px;
  background-color: var(--color-bg);
  min-height: calc(100vh - 280px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-container > p {
  color: var(--color-muted);
  max-width: 720px;
  margin-bottom: 34px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 30px;
  min-height: 170px;
  box-shadow: 0 10px 28px rgba(32, 51, 51, 0.08);
}

.store-card h2 {
  color: var(--color-primary);
  margin-bottom: 14px;
}

.store-card p {
  color: var(--color-muted);
  margin-bottom: 10px;
}

.store-card strong {
  color: var(--color-text);
}

.store-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  font-weight: 800;
}

.store-card a:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-page {
    padding-left: 30px;
    padding-right: 30px;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-container h1 {
    font-size: 2rem;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }
}
.store-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  font-weight: 800;
}

.store-whatsapp-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  background: transparent;
}

.store-whatsapp-link:hover {
  opacity: 0.9;
  text-decoration: none;
}
.store-brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.store-brand-logos img {
  height: 34px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px 8px;
}
.store-card {
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background-color: var(--color-primary);
}

/* STORE BRAND THEMES */
.store-exotic-pacific {
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.24), transparent 34%),
    linear-gradient(135deg, #111111 0%, #1f0f11 100%);
  border-color: rgba(215, 25, 32, 0.65);
  box-shadow: 0 18px 45px rgba(215, 25, 32, 0.18);
}

.store-exotic-pacific::before {
  background: linear-gradient(90deg, #d71920, #111111, #ed1c24);
}

.store-exotic-pacific h2,
.store-exotic-pacific strong {
  color: #ffffff;
}

.store-exotic-pacific p {
  color: #e6f0ef;
}

.store-larizz {
  background:
    radial-gradient(circle at top right, rgba(227, 27, 35, 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(39, 36, 95, 0.35), transparent 38%),
    linear-gradient(135deg, #080817 0%, #151438 100%);
  border-color: rgba(39, 36, 95, 0.75);
  box-shadow: 0 18px 45px rgba(39, 36, 95, 0.3);
}

.store-larizz::before {
  background: linear-gradient(90deg, #27245f, #e31b23);
}

.store-larizz h2,
.store-larizz strong {
  color: #ffffff;
}

.store-larizz p {
  color: #e6f0ef;
}
.store-neutral {
  background:
    radial-gradient(circle at top right, rgba(47, 79, 79, 0.2), transparent 34%),
    linear-gradient(135deg, #101818 0%, #172323 100%);
}