.store-hero {
  margin-bottom: 60px;
}

.store-hero-copy {
  max-width: 680px;
  margin: 0 auto 24px auto;
}

.store-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.store-trust-strip,
.store-products-section,
.store-receive-section,
.store-ordering-section,
.store-cta-section {
  margin-bottom: 80px;
}

.store-trust-strip .grid-3 {
  align-items: start;
}

.store-trust-strip .grid-3 div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
}

.store-trust-strip strong {
  display: block;
  margin-bottom: 10px;
  color: #B08D57;
  font-family: 'Playfair Display', serif;
}

.store-trust-strip p {
  margin: 0;
  max-width: none;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 141, 87, 0.35);
}

.product-image-placeholder {
  width: 100%;
  height: 240px;
  background: transparent;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  background: transparent;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.product-card p {
  max-width: none;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-meta li {
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: #B08D57;
  margin-bottom: 20px;
}

.store-info-block {
  max-width: 760px;
  margin: 0 auto;
}

.store-info-block p {
  max-width: 760px;
}

.store-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-list li {
  margin: 12px 0;
  padding-left: 0;
}

.store-cta-section p {
  max-width: 640px;
  margin: 0 auto 24px auto;
}

@media (max-width: 768px) {
  .store-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .product-image-placeholder {
    height: 220px;
  }
}
.store-product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-total {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
  color: #B08D57;
  font-size: 1rem;
}
.store-cart-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
  color: #B08D57;
  font-size: 1rem;
}