:root {
  --store-bg: #ffffff;
  --store-bg-soft: #f5f7fa;
  --store-bg-dark: #0f1720;
  --store-surface: #ffffff;
  --store-text: #122033;
  --store-text-soft: #526173;
  --store-text-light: #e9eef5;
  --store-primary: #0b6efd;
  --store-primary-dark: #084fb4;
  --store-border: #dbe3ec;
  --store-shadow: 0 18px 50px rgba(14, 28, 45, 0.10);
  --store-shadow-soft: 0 10px 30px rgba(14, 28, 45, 0.08);
  --store-radius: 18px;
  --store-radius-sm: 12px;
  --store-container: 1200px;
  --store-header-height: 84px;
  --store-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --store-whatsapp: #25D366;
  --store-whatsapp-dark: #1da955;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--store-font);
  background: var(--store-bg);
  color: var(--store-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.store-container {
  width: min(100% - 32px, var(--store-container));
  margin-inline: auto;
}

/* Header */
.store-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--store-header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 227, 236, 0.75);
}

.store-header-wrap {
  min-height: var(--store-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--store-text);
  letter-spacing: 0.01em;
}

.store-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.store-brand span {
  font-size: 1.08rem;
}

.store-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.store-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--store-text);
  transition: color 0.2s ease;
}

.store-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--store-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.store-nav a:hover {
  color: var(--store-primary);
}

.store-nav a:hover::after {
  transform: scaleX(1);
}

.store-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-phone {
  color: var(--store-primary);
  font-weight: 700;
  white-space: nowrap;
}

.store-phone:hover {
  color: var(--store-primary-dark);
}

.store-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--store-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--store-shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-header-cta:hover {
  background: var(--store-primary-dark);
  transform: translateY(-1px);
}

.store-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--store-border);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.store-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--store-text);
  margin: 6px 0;
  border-radius: 999px;
}

/* Hero */
.store-hero {
  position: relative;
  overflow: hidden;
  background: var(--store-bg-dark);
  color: #fff;
}

.store-hero-media {
  position: absolute;
  inset: 0;
}

.store-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 32, 0.84) 0%, rgba(15, 23, 32, 0.60) 45%, rgba(15, 23, 32, 0.24) 100%);
}

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

.store-hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0 90px;
  max-width: 820px;
}

.store-eyebrow,
.store-eyebrow-dark {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.store-eyebrow {
  color: #91c2ff;
}

.store-eyebrow-dark {
  color: var(--store-primary);
}

.store-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.store-hero-text {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp-contact:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--store-primary);
  color: #fff;
  box-shadow: var(--store-shadow-soft);
}

.btn-primary:hover {
  background: var(--store-primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--store-primary);
  border: 1px solid var(--store-primary);
}

.btn-secondary:hover {
  background: var(--store-primary);
  color: #fff;
}

.btn-whatsapp-contact {
  background: var(--store-whatsapp);
  color: #fff;
  box-shadow: var(--store-shadow-soft);
}

.btn-whatsapp-contact:hover {
  background: var(--store-whatsapp-dark);
}

/* Sections */
.store-section {
  padding: 88px 0;
}

.store-section-soft {
  background: var(--store-bg-soft);
}

.store-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.store-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.store-section-head p:last-child {
  margin: 0;
  color: var(--store-text-soft);
}

/* Intro cards */
.store-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-card {
  background: var(--store-surface);
  border: 1px solid rgba(219, 227, 236, 0.75);
  border-radius: var(--store-radius);
  box-shadow: var(--store-shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-card:hover,
.store-course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--store-shadow);
  border-color: rgba(11, 110, 253, 0.22);
}

.store-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.store-card-body {
  padding: 22px;
}

.store-card h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.store-card p {
  margin: 0;
  color: var(--store-text-soft);
}

/* Courses */
.store-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-course-card {
  background: #fff;
  border: 1px solid rgba(219, 227, 236, 0.75);
  border-radius: var(--store-radius);
  box-shadow: var(--store-shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-course-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.store-course-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.store-course-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.store-course-card h3 span {
  display: block;
}

.store-course-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--store-text-soft);
}

/* Matterport */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  gap: 18px;
  padding: 8px 4px 12px;
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #c9d5e3;
  border-radius: 999px;
}

.carousel-item {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid rgba(219, 227, 236, 0.75);
  border-radius: var(--store-radius-sm);
  box-shadow: var(--store-shadow-soft);
  text-align: center;
  color: var(--store-text);
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--store-shadow);
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.carousel-item span {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.carousel-btn {
  border: none;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--store-shadow-soft);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--store-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-matterport-cta {
  text-align: center;
  margin-top: 20px;
}

.store-matterport-cta p {
  margin: 0 0 14px;
  color: var(--store-text-soft);
}

/* Contact */
.store-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.store-contact-info {
  font-size: 1rem;
}

.store-contact-info > p {
  margin-top: 0;
  color: var(--store-text-soft);
}

.store-contact-details {
  margin-top: 22px;
}

.store-contact-details h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.store-contact-details p {
  margin: 6px 0;
}

.store-contact-details a {
  color: var(--store-primary);
}

.store-social-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.store-social-links a {
  color: var(--store-primary);
  font-weight: 600;
}

.store-contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(219, 227, 236, 0.75);
  border-radius: var(--store-radius);
  padding: 24px;
  box-shadow: var(--store-shadow-soft);
}

.store-contact-form-wrap h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.24rem;
}

.store-contact-form label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 12px;
  color: var(--store-text);
}

.store-contact-form input,
.store-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid var(--store-border);
  font-family: inherit;
  font-size: 0.96rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-contact-form input:focus,
.store-contact-form textarea:focus {
  outline: none;
  border-color: var(--store-primary);
  box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.08);
}

.store-contact-form button {
  margin-top: 18px;
  width: 100%;
}

/* Footer */
.store-footer {
  background: var(--store-bg-dark);
  color: var(--store-text-light);
  padding: 22px 0;
}

.store-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.store-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.store-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.store-footer-links a {
  color: rgba(233, 238, 245, 0.86);
}

.store-footer-links a:hover {
  color: #fff;
}

/* Floating WhatsApp */
.btn-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: var(--store-whatsapp);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--store-shadow);
}

.btn-whatsapp:hover {
  background: var(--store-whatsapp-dark);
}

/* Responsive */
@media (max-width: 1100px) {
  .store-info-grid,
  .store-courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-contact-grid {
    grid-template-columns: 1fr;
  }

  .store-header-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .store-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 16px;
  }
}

@media (max-width: 780px) {
  .store-header-wrap {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .store-header-actions {
    display: none;
  }

  .store-nav-toggle {
    display: inline-block;
  }

  .store-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    grid-column: 1 / -1;
    padding: 0 0 16px;
  }

  .store-nav.open {
    display: flex;
  }

  .store-hero-content {
    padding: 96px 0 76px;
  }

  .store-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.4rem);
  }

  .store-info-grid,
  .store-courses-grid {
    grid-template-columns: 1fr;
  }

  .store-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-item {
    flex: 0 0 180px;
  }
}

@media (max-width: 560px) {
  .store-container {
    width: min(100% - 22px, var(--store-container));
  }

  .store-brand span {
    font-size: 0.95rem;
  }

  .store-brand img {
    width: 50px;
    height: 50px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp-contact {
    width: 100%;
  }

  .store-hero-actions {
    flex-direction: column;
  }

  .btn-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 15px;
  }
}
