/* ============================================
   Section and Card Background Colors
   Consistent #C1E3E9 Background
   ============================================ */

/* Product Section Homepage */
.product-section-homepage {
  background: transparent !important;
  padding: 40px 0;
  border-radius: 20px;
  margin: 0 0 80px 0;
  position: relative;
  z-index: 1;
  clear: both;
  overflow: visible;
  min-height: auto;
}

/* Season Section */
.season-section {
  background: transparent !important;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Season Products Container */
.season-products {
  background: transparent !important;
  padding: 30px;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-color);
  position: relative;
}

/* Product Cards - Transparent with Navy Borders */
.product-card {
  background: transparent !important;
  border: 2px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
}

.product-card:hover {
  background: transparent !important;
  border-color: var(--primary) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Compact Product Cards */
.product-card.compact {
  background: transparent !important;
  border: 2px solid var(--border-color) !important;
}

.product-card.compact:hover {
  background: transparent !important;
  border-color: var(--primary) !important;
}

/* Lifestyle Cards */
.capsule-grid .lifestyle-card {
  background: transparent !important;
  border: 2px solid var(--border-color) !important;
}

.capsule-grid .lifestyle-card:hover {
  background: transparent !important;
  border-color: var(--primary) !important;
}
