:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #f8f8f8;
  --color-text-dark: #333333;
  --color-text-light: #777777;
  --color-text-normal: #000000;
  --color-overlay-light: rgba(255, 255, 255, 0.6);
  --color-overlay-strong: rgba(255, 255, 255, 0.8);
  --color-top-icon-bg: rgba(255, 255, 255, 0.7);
  --color-price-bg: #0676aa;
  --color-price-text: #ffffff;
}

.product-grid h1 {
  font-size: 32px;
  font-weight: 700;
}
.product-grid a.product-card {
  text-decoration: none;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background-color: var(--color-bg);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.product-grid a.product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-grid a.product-card .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
}
.product-grid a.product-card .product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.product-grid a.product-card .product-card:hover .product-image {
  transform: scale(1.03);
}
.product-grid a.product-card .top-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: var(--color-top-icon-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}
.product-grid a.product-card .top-icon svg {
  fill: var(--color-text-normal);
  width: 18px;
  height: 18px;
}
.product-grid a.product-card .bottom-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
}
.product-grid a.product-card .buy-button-group {
  flex-grow: 1;
  height: 100%;
  background-color: var(--color-overlay-light);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  border-radius: 8px 0 0 8px;
}
.product-grid a.product-card .buy-text {
  font-size: 14px;
  color: var(--color-text-normal);
  font-weight: 500;
  text-transform: capitalize;
}
.product-grid a.product-card .arrow-icon-wrapper {
  width: 35px;
  height: 35px;
  background-color: var(--color-overlay-strong);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  flex-shrink: 0;
}
.product-grid a.product-card .arrow-icon-wrapper svg {
  fill: var(--color-text-normal);
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
}
.product-grid a.product-card .price-tag {
  background-color: var(--color-price-bg);
  color: var(--color-price-text);
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
}
.product-grid a.product-card .product-info {
  padding: 15px 15px 20px;
  background-color: var(--color-bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-grid a.product-card .details h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
}
.product-grid a.product-card .details p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 400;
}/*# sourceMappingURL=productDesign4.css.map */