/* PentaPop Brand Colors */
:root {
  --burgundy: #9C2D41;
  --dusty-rose: #CB857C;
  --scallop-seashell: #F6CBB7;
  --cream: #FAF7F4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background-color: var(--cream);
  color: var(--burgundy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Header */
.site-header {
  text-align: center;
  padding: 3rem 1rem;
}

.site-header h1 {
  color: var(--burgundy);
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.site-header p {
  color: var(--burgundy);
  opacity: 0.6;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .site-header h1 {
    font-size: 2rem;
  }
}

/* Controls */
.controls {
  margin-bottom: 3rem;
}

.controls-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-type-toggle {
  display: flex;
  gap: 0;
}

.toggle-btn {
  padding: 0.375rem 0.75rem;
  border: none;
  background-color: var(--scallop-seashell);
  color: var(--burgundy);
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.9375rem;
  font-family: inherit;
}

.toggle-left {
  border-radius: 9999px 0 0 9999px;
}

.toggle-right {
  border-radius: 0 9999px 9999px 0;
}

.toggle-btn.active {
  background-color: var(--burgundy);
  color: var(--cream);
}

.browse-mode-toggle {
  display: flex;
  gap: 0.75rem;
}

.browse-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  background-color: var(--scallop-seashell);
  color: var(--burgundy);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.9375rem;
  font-family: inherit;
}

.browse-btn:hover {
  background-color: var(--burgundy);
  color: var(--cream);
}

.browse-btn.active {
  background-color: var(--burgundy);
  color: var(--cream);
}

/* Main Content */
.main-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Style Section */
.style-section {
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.style-section:first-child {
  margin-top: 0;
}

.style-title {
  color: var(--burgundy);
  text-align: center;
  opacity: 0.9;
  letter-spacing: 0.025em;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.style-divider {
  margin-top: 0.75rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dusty-rose), transparent);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .style-title {
    font-size: 1.25rem;
  }
}

/* Price Section */
.price-section {
  margin-bottom: 2rem;
}

.price-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dusty-rose), transparent);
  opacity: 0.4;
}

.divider-text {
  color: var(--burgundy);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  opacity: 0.75;
  white-space: nowrap;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Product Card */
.product-card {
  background-color: var(--cream);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--scallop-seashell);
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--scallop-seashell);
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customisable-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--burgundy);
  color: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.card-content {
  padding: 1.25rem;
}

.card-title {
  color: var(--burgundy);
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--burgundy);
  opacity: 0.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.card-description-small {
  color: var(--burgundy);
  opacity: 0.7;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  color: var(--burgundy);
  font-size: 0.875rem;
  opacity: 0.6;
}

.card-price-large {
  color: var(--burgundy);
  font-size: 1rem;
  font-weight: 500;
}

.card-moq {
  color: var(--dusty-rose);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  margin-top: 5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.cta-card {
  max-width: 42rem;
  margin: 0 auto;
  background-color: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--scallop-seashell);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 3rem;
  }
}

.cta-text {
  color: var(--burgundy);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.cta-subtext {
  color: var(--burgundy);
  opacity: 0.7;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--burgundy);
  color: var(--cream);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s;
  font-size: 0.9375rem;
}

.cta-button:hover {
  background-color: var(--dusty-rose);
}

.whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
}
