/* ===============================
   Store Top Page
=============================== */

.home.page .entry-title {
  display: none;
}

.home.page .site-main,
.home.page .hentry {
  margin-bottom: 0;
}

.store-home {
  color: #1f2933;
}

.store-home a {
  text-decoration: none;
}

/* ===============================
   Hero
=============================== */

.store-hero {
  margin: 0 calc(50% - 50vw);
  padding: 72px 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 201, 167, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfa 100%);
  border-bottom: 1px solid #e5e7eb;
}

.store-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.store-hero-kicker,
.store-section-kicker {
  margin: 0 0 10px;
  color: #00a98d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-hero h1 {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.store-hero-lead {
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

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

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn-primary {
  background: #00c9a7;
  color: #fff;
}

.store-btn-primary:hover {
  background: #00a98d;
  color: #fff;
}

.store-btn-outline {
  border: 1px solid #00c9a7;
  color: #00a98d;
  background: #fff;
}

.store-btn-outline:hover {
  border-color: #00a98d;
  color: #00a98d;
}

.store-btn-white {
  background: #fff;
  color: #00a98d;
}

.store-btn-white:hover {
  background: #f3fffc;
  color: #00a98d;
}

/* Hero cards */

.store-hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
}

.store-service-card {
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.store-service-card-main {
  transform: translateX(-18px);
  border-color: rgba(0, 201, 167, 0.45);
}

.store-service-card span {
  display: block;
  margin-bottom: 8px;
  color: #00a98d;
  font-size: 13px;
  font-weight: 800;
}

.store-service-card strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 18px;
}

.store-service-card em {
  color: #6b7280;
  font-style: normal;
  font-weight: 700;
}

/* ===============================
   Sections
=============================== */

.store-section {
  padding: 56px 0;
}

.store-section-soft {
  margin: 0 calc(50% - 50vw);
  padding: 56px calc(50vw - 50%);
  background: #f8faf9;
}

.store-section-heading {
  margin-bottom: 26px;
}

.store-section-heading h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.store-section-heading p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.store-section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.store-section-link {
  flex: 0 0 auto;
  color: #00a98d;
  font-size: 14px;
  font-weight: 800;
}

.store-section-link:hover {
  color: #008f78;
}

/* ===============================
   Category
=============================== */

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.store-category-card {
  display: block;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-category-card:hover {
  transform: translateY(-3px);
  border-color: #00c9a7;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.store-category-card span {
  display: block;
  margin-bottom: 10px;
  color: #00a98d;
  font-size: 13px;
  font-weight: 800;
}

.store-category-card strong {
  display: block;
  color: #111827;
  font-size: 17px;
}

/* ===============================
   Recent Vendors
=============================== */

.store-vendor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-vendor-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  color: #1f2933;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-vendor-card:hover {
  transform: translateY(-3px);
  border-color: #00c9a7;
  color: #1f2933;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.store-vendor-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}

.store-vendor-label,
.store-product-label {
  display: inline-block;
  margin-bottom: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9fbf7;
  color: #00a98d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.store-vendor-name {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  line-height: 1.4;
}

.store-vendor-desc {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

/* ===============================
   Recent Products
=============================== */

.store-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-product-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.store-product-image {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f4f6;
}

.store-product-image img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.store-product-title {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.4;
}

.store-product-title a {
  color: #111827;
}

.store-product-title a:hover {
  color: #00a98d;
}

.store-product-vendor {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 13px;
}

.store-product-vendor a {
  color: #00a98d;
  font-weight: 700;
}

.store-product-desc {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.store-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.store-product-price {
  color: #111827;
  font-weight: 800;
}

.store-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #00c9a7;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.store-product-link:hover {
  background: #00a98d;
  color: #fff;
}

/* ===============================
   Guide
=============================== */

.store-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 56px 0 72px;
}

.store-guide-card {
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.store-guide-card-accent {
  border-color: #00c9a7;
  background: linear-gradient(135deg, #00c9a7 0%, #00a98d 100%);
  color: #fff;
}

.store-guide-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.35;
}

.store-guide-card p {
  margin: 0 0 18px;
  color: #6b7280;
  line-height: 1.8;
}

.store-guide-card-accent p,
.store-guide-card-accent .store-section-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.store-guide-card ol {
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.store-guide-card li {
  margin-bottom: 8px;
  font-weight: 700;
}

/* ===============================
   Empty
=============================== */

.store-empty-message {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  color: #6b7280;
}

/* ===============================
   Responsive
=============================== */

@media (max-width: 900px) {
  .store-hero-inner {
    grid-template-columns: 1fr;
  }

  .store-service-card-main {
    transform: none;
  }

  .store-category-grid,
  .store-vendor-list,
  .store-product-list,
  .store-guide {
    grid-template-columns: 1fr;
  }

  .store-section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .store-hero {
    padding: 54px 20px;
  }

  .store-hero h1 {
    font-size: 36px;
  }

  .store-section,
  .store-section-soft {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .store-product-card {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .store-product-image img {
    height: 96px;
  }

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

  .store-guide-card {
    padding: 24px;
  }
}


