/* ============================================================
   HERO.CSS — Homepage Hero + Category Tabs + Store Section
   ============================================================ */

/* --- Hero section ----------------------------------------- */
.hero {
  padding: 60px 0;
  text-align: center;
  background-color: var(--white);
}

.hero .subtitle {
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero .hero-desc {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero .hero-cta {
  margin-top: 8px;
}

/* --- Category tabs ---------------------------------------- */
.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0 24px;
  flex-wrap: wrap;
}

.category-tab {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 4px 0 6px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.category-tab:hover {
  color: var(--navy);
}

.category-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* --- Store section ---------------------------------------- */
.store-section {
  background-color: var(--off-white);
  padding: 48px 0;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.store-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.store-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}
.coming-soon-photo {
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(145deg, #0A1628 0%, #162240 40%, #1a2a4a 70%, #0A1628 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  position: relative;
  overflow: hidden;
}
.coming-soon-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.coming-soon-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}
.coming-soon-sub {
  font-size: 11px;
  color: rgba(201, 169, 110, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.about-coming-soon {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.store-info {
  padding: 24px 0;
}

.store-info .subtitle {
  margin-bottom: 12px;
}

.store-info h2 {
  margin-bottom: 16px;
}

.store-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.store-info .store-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.store-info .store-address span {
  font-size: 13px;
  color: var(--text);
}

/* --- Site footer ------------------------------------------ */
.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .footer-logo span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .category-tabs {
    gap: 12px;
  }

  .category-tab {
    font-size: 10px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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