:root {
  --ds-ink: #0f172a;
  --ds-blue: #1d4ed8;
  --ds-blue-deep: #0a1628;
  --ds-red: #dc2626;
  --ds-green: #16a34a;
  --ds-gold: #f59e0b;
  --ds-gray: #64748b;
  --ds-line: #e2e8f0;
  --ds-bg: #f8fafc;
  --ds-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ds-font);
  color: var(--ds-ink);
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.store-shell { min-height: 100vh; }

.promo-ticker {
  background: var(--ds-blue-deep);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
}
.promo-ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.55rem 0;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ds-line);
}
.store-header-inner {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}
.store-loc {
  font-size: 0.78rem;
  color: var(--ds-gray);
}
.store-loc strong { display: block; color: var(--ds-ink); }
.brand-logo {
  height: 48px;
  width: auto;
  margin: 0 auto;
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.05rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-wa { background: var(--ds-green); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--ds-ink);
  border: 1px solid var(--ds-line);
}

.hero {
  position: relative;
  min-height: min(78vh, 620px);
  color: #fff;
  overflow: hidden;
  background: var(--ds-blue-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.35) 55%, rgba(10,22,40,0.2) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
  max-width: 640px;
}
.hero-kicker {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.9;
}
.hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
}
.hero p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  max-width: 34ch;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.hero-dot.active { background: #fff; }

.store-with-column {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(170px, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0 0;
}
.store-main .section {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.owner-column {
  position: sticky;
  top: 5.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ds-line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  min-height: 280px;
}
.owner-column--post {
  background: linear-gradient(180deg, #fffbeb 0%, #fff 40%);
}
.owner-column--ad {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 45%);
}
.owner-column-media {
  aspect-ratio: 4 / 3;
  background: var(--ds-bg);
}
.owner-column-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-column-body {
  padding: 0.9rem 0.85rem 1rem;
  display: grid;
  gap: 0.45rem;
}
.owner-column-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-blue);
}
.owner-column-kicker--ad { color: #b45309; }
.owner-column h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}
.owner-column-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ds-gray);
}
.owner-column-text {
  margin: 0;
  font-size: 0.88rem;
  color: #334155;
  white-space: pre-wrap;
}
.owner-column .btn {
  margin-top: 0.25rem;
  width: 100%;
}

.section {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 2.4rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.section-head p {
  margin: 0.25rem 0 0;
  color: var(--ds-gray);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}
.cat-card {
  position: relative;
  min-height: 150px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.cat-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-weight: 800;
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  border: 1px solid var(--ds-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.product-media {
  aspect-ratio: 1;
  background: var(--ds-bg);
  position: relative;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--ds-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.product-body {
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
.product-body h3 {
  margin: 0;
  font-size: 1rem;
}
.product-note {
  margin: 0;
  color: var(--ds-gray);
  font-size: 0.86rem;
}
.product-price {
  margin: 0;
  font-weight: 800;
  color: var(--ds-blue);
}
.product-card .btn {
  margin: 0 0.9rem 0.9rem;
}

.promo-band {
  background: linear-gradient(120deg, #0a1628, #1d4ed8);
  color: #fff;
}
.promo-band .section-head h2,
.promo-band .section-head p { color: #fff; }
.promo-band .section-head p { opacity: 0.85; }
.promo-band .product-card { border: 0; }

.visit-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.visit-copy, .visit-photo {
  border-radius: 18px;
  overflow: hidden;
}
.visit-copy {
  background: var(--ds-bg);
  padding: 1.5rem;
}
.visit-copy h2 { margin-top: 0; }
.visit-copy p { color: var(--ds-gray); }
.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.mundial-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  margin-top: 1rem;
}
.mundial-link strong { display: block; }

.store-footer {
  background: var(--ds-blue-deep);
  color: #fff;
  padding: 2rem 0;
  margin-top: 1rem;
}
.store-footer-inner {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-footer a { color: #93c5fd; }

@media (max-width: 980px) {
  .store-with-column {
    grid-template-columns: 1fr;
  }
  .owner-column {
    position: static;
    order: -1;
  }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-block { grid-template-columns: 1fr; }
  .store-header-inner { grid-template-columns: 1fr; text-align: center; }
  .header-actions { justify-content: center; }
  .store-loc { order: 2; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 4.2rem 0 3.2rem; }
}
