/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./assets/src/frontend/scss/shop.scss ***!
  \*************************************************************************************************************************************************************************************/
/* Category Page Section */
/* Product Grid Layout */
/* Product Item */
/* Product Info */
.ambikly-shop-page {
  padding: 20px;
  flex: 1;
}
.ambikly-shop-page .ambikly-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 250px); /* Exactly 4 columns, each 250px wide */
  gap: 25px; /* Space between the grid items */
  max-width: 100%; /* Allows the grid to take up the full width of the container */
  margin: auto; /* Centers the grid within the parent container */
  justify-content: center; /* Center each row of grid items */
}
.ambikly-shop-page .ambikly-product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.ambikly-shop-page .ambikly-product-image {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  height: 250px;
  object-fit: cover;
}
.ambikly-shop-page .ambikly-product-info {
  padding: 15px;
}
.ambikly-shop-page .ambikly-product-name {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #333;
}
.ambikly-shop-page .ambikly-product-price {
  font-size: 24px;
  font-weight: 500;
  color: #e74c3c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.ambikly-shop-page .ambikly-product-price .strikethrough {
  text-decoration: line-through;
  color: #888;
}
.ambikly-shop-page .ambikly-add-to-cart {
  background-color: #f57c00;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  display: block;
}
.ambikly-shop-page .ambikly-add-to-cart:hover {
  background-color: #e05d00;
}

/*# sourceMappingURL=shop-style.css.map*/