
/* Shop Page Styles - Odd Ritual Golf Inspired */
body {
  background-color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
}

.shop-main {
  padding-top: 120px;
  min-height: 100vh;
}

/* Header & Filters */
.shop-header {
  padding: 0 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop-title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}

.filter-btn:hover {
  color: #111;
}

.filter-btn.active {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Standard Clean Grid */
.shop-grid {
  padding: 0 40px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  column-gap: 15px;
}

.shop-loading {
  text-align: center;
  padding: 100px 0;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Product Card */
.grid-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.gpc-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f4f4f4;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

/* Hover Image Logic */
.gpc-image-primary, .gpc-image-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.gpc-image-hover {
  opacity: 0;
}

.grid-product-card:hover .gpc-image-hover {
  opacity: 1;
}

.grid-product-card:hover .gpc-image-primary {
  opacity: 0;
}

/* "View Product" Overlay */
.gpc-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.grid-product-card:hover .gpc-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Details */
.gpc-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gpc-title {
  font-size: 13px;
  font-weight: 400;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gpc-price {
  font-size: 13px;
  color: #666;
}

/* Swatches */
.gpc-swatches {
  display: flex;
  gap: 6px;
  margin-top: 5px;
}

.gpc-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-header {
    padding: 0 20px;
  }
  .shop-grid {
    padding: 0 20px 80px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
