/* CookAndServee Shop Page Specific Styles */
.shop-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-4);
  text-align: center;
}
.shop-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}
.shop-lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  margin-bottom: var(--space-8);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.shop-section {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.product-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: var(--space-4);
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 390px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.product-card:hover,
.product-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.02);
}
.product-image {
  width: 110px;
  height: 110px;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.product-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}
.product-desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  text-align: center;
  margin-bottom: var(--space-3);
}
.product-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}
.product-cta {
  margin-top: auto;
  min-width: 80%;
}
.offers-list {
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: var(--space-6);
}
.offer-card {
  background: var(--color-gray-100);
  border-left: 4px solid var(--color-primary);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-title {
  font-size: var(--font-size-lg);
  color: var(--color-primary-dark);
}
.offer-cta {
  margin-top: var(--space-3);
  align-self: flex-start;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-4);
}
.review-card {
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  font-size: var(--font-size-base);
  color: var(--color-text);
}
.review-text {
  font-style: italic;
  color: var(--color-gray-700);
}
.review-author {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-primary-dark);
  font-style: normal;
}
.shopping-guide {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.guide-list {
  list-style: disc inside;
  margin-left: var(--space-2);
  font-size: var(--font-size-base);
  color: var(--color-gray-800);
}
.guide-list li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-2);
}
.shop-bottom-grid {
  display: grid;
  gap: var(--space-8);
  margin: var(--space-8) auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1200px;
}
.shop-support, .shop-security, .shop-returns {
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  margin-bottom: 0;
}
.shop-support ul, .shop-returns ul, .security-bullets {
  margin: var(--space-3) 0 0 0;
  padding-left: 0;
  list-style: none;
}
.shop-support ul li, .shop-returns ul li, .security-bullets li {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  color: var(--color-gray-700);
}
.security-badge {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-3);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  gap: var(--space-2);
  font-weight: 600;
}
.security-badge svg { margin-right: var(--space-2); }
@media (max-width: 900px) {
  .shop-hero { padding-top: var(--space-8); }
  .shop-title { font-size: var(--font-size-xl); }
  .shop-lead { font-size: var(--font-size-base); }
}
@media (max-width: 700px) {
  .shop-section, .shopping-guide { margin-left: 0; margin-right: 0; }
  .shop-bottom-grid { grid-template-columns: 1fr; }
  .product-grid, .offers-list, .reviews-grid { grid-template-columns: 1fr; }
}
