/* Coach Anjrah Digital Store — bright, Goodreads-inspired, masculine-warm */
:root {
  --store-bg: #f6f4f0;
  --store-surface: #ffffff;
  --store-paper: #faf8f5;
  --store-ink: #1c1917;
  --store-muted: #57534e;
  --store-line: #e7e5e4;
  --store-accent: #1b4332;
  --store-accent-hover: #2d6a4f;
  --store-accent-soft: #d8f3dc;
  --store-warm: #b45309;
  --store-warm-soft: #fff7ed;
  --store-shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
  --store-radius: 14px;
  --store-font: "Source Sans 3", system-ui, sans-serif;
  --store-display: "Merriweather", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body.store-home {
  margin: 0;
  font-family: var(--store-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--store-ink);
  background: var(--store-bg);
  -webkit-font-smoothing: antialiased;
}

.store-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* —— Header —— */
.store-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--store-line);
}

.store-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--store-ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.store-logo svg {
  flex-shrink: 0;
  color: var(--store-accent);
}

.store-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  background: var(--store-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.store-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--store-ink);
  position: relative;
}

.store-nav-toggle span::before,
.store-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--store-ink);
}

.store-nav-toggle span::before {
  top: -6px;
}

.store-nav-toggle span::after {
  top: 6px;
}

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

.store-nav a {
  text-decoration: none;
  color: var(--store-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.store-nav a:hover {
  color: var(--store-accent);
  background: var(--store-accent-soft);
}

.store-nav a.store-nav-cta {
  background: var(--store-accent);
  color: #fff;
}

.store-nav a.store-nav-cta:hover {
  background: var(--store-accent-hover);
  color: #fff;
}

.store-nav a.store-nav-muted {
  color: var(--store-warm);
}

@media (max-width: 768px) {
  .store-nav-toggle {
    display: inline-flex;
  }

  .store-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--store-surface);
    border-bottom: 1px solid var(--store-line);
    box-shadow: var(--store-shadow);
  }

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

  .store-nav a {
    border-radius: 10px;
    text-align: center;
  }
}

/* —— Hero —— */
.store-hero {
  padding: clamp(40px, 8vw, 72px) 0 clamp(36px, 6vw, 56px);
  background: linear-gradient(165deg, #fff 0%, var(--store-paper) 45%, #eef7f0 100%);
  border-bottom: 1px solid var(--store-line);
}

.store-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 880px) {
  .store-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.store-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--store-accent);
  background: var(--store-accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.store-hero h1 {
  font-family: var(--store-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--store-ink);
  letter-spacing: -0.02em;
}

.store-hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--store-muted);
  max-width: 36em;
  margin: 0 0 24px;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s;
}

.store-btn:active {
  transform: scale(0.98);
}

.store-btn-primary {
  background: var(--store-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.35);
}

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

.store-btn-ghost {
  background: var(--store-surface);
  color: var(--store-accent);
  border: 2px solid var(--store-line);
}

.store-btn-ghost:hover {
  border-color: var(--store-accent);
}

.store-hero-card {
  background: var(--store-surface);
  border-radius: var(--store-radius);
  padding: 24px;
  box-shadow: var(--store-shadow);
  border: 1px solid var(--store-line);
}

.store-hero-card h3 {
  font-family: var(--store-display);
  font-size: 1.15rem;
  margin: 0 0 12px;
  color: var(--store-ink);
}

.store-hero-card ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--store-muted);
  font-size: 0.95rem;
}

.store-hero-card li {
  margin-bottom: 8px;
}

/* —— Section titles —— */
.store-section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.store-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.store-section-head h2 {
  font-family: var(--store-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0;
  color: var(--store-ink);
}

.store-section-head a {
  font-weight: 700;
  color: var(--store-accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.store-section-head a:hover {
  text-decoration: underline;
}

/* —— Product grid —— */
.store-product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 520px) {
  .store-product-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: var(--store-surface);
  border-radius: var(--store-radius);
  overflow: hidden;
  border: 1px solid var(--store-line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
}

.store-card:hover {
  box-shadow: var(--store-shadow);
  transform: translateY(-2px);
}

.store-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e7e5e4, #f5f5f4);
  overflow: hidden;
}

.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.store-card-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--store-warm);
}

.store-card h3 {
  font-family: var(--store-display);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.35;
  color: var(--store-ink);
}

.store-card-desc {
  font-size: 0.88rem;
  color: var(--store-muted);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-card-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--store-accent);
}

.store-card .store-btn {
  width: 100%;
  margin-top: 4px;
}

/* —— Why / trust —— */
.store-why {
  background: var(--store-paper);
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
}

.store-features {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 720px) {
  .store-features {
    grid-template-columns: 1fr;
  }
}

.store-feature {
  text-align: center;
  padding: 20px 16px;
}

.store-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--store-accent-soft);
  color: var(--store-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.store-feature h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--store-ink);
}

.store-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--store-muted);
}

/* —— Layanan —— */
.store-services {
  background: linear-gradient(180deg, var(--store-bg) 0%, #fff 100%);
}

.store-service-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--store-surface);
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--store-shadow);
}

.store-service-box h2 {
  font-family: var(--store-display);
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.store-service-box p {
  color: var(--store-muted);
  margin: 0 0 12px;
}

.store-service-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.store-service-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--store-ink);
  border-bottom: 1px solid var(--store-line);
  font-weight: 600;
  font-size: 0.95rem;
}

.store-service-list li:last-child {
  border-bottom: 0;
}

.store-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--store-accent);
  font-weight: 800;
}

/* —— CTA strip —— */
.store-cta {
  background: var(--store-accent);
  color: #fff;
  text-align: center;
  padding: clamp(40px, 5vw, 56px) 20px;
}

.store-cta h2 {
  font-family: var(--store-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 10px;
}

.store-cta p {
  margin: 0 0 20px;
  opacity: 0.92;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.store-cta .store-btn-primary:hover {
  background: var(--store-accent-soft);
  color: var(--store-accent-hover);
}

/* —— Footer —— */
.store-footer {
  background: #292524;
  color: #d6d3d1;
  padding: 48px 0 28px;
  font-size: 0.9rem;
}

.store-footer a {
  color: #fafaf9;
  text-decoration: none;
}

.store-footer a:hover {
  text-decoration: underline;
}

.store-footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 36px;
}

.store-footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}

.store-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.store-footer-col li {
  margin-bottom: 10px;
}

.store-footer-brand {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.store-footer-bottom {
  border-top: 1px solid #44403c;
  padding-top: 24px;
  text-align: center;
  color: #a8a29e;
  font-size: 0.85rem;
  line-height: 1.7;
}

.store-footer-bottom strong {
  color: #e7e5e4;
}
