/*!****************************************************************************************************************************************************************************************!*\
  !*** 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/product.scss ***!
  \****************************************************************************************************************************************************************************************/
/* Product Image Section */
/* Product Details Section */
/* Product Title */
/* Product Price */
/* Product Description */
/* Product Actions (Quantity & Add to Cart Button) */
/* Add to Cart Button */
/* Product Meta Information (Category) */
/* Responsive Design for Mobile Screens */
.ambikly-product-page {
  padding: 50px 0;
}

.ambikly-product-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.ambikly-product-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.ambikly-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ambikly-product-details {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.ambikly-product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.ambikly-product-price {
  font-size: 24px;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ambikly-product-price .ambikly-regular-price.strikethrough {
  color: #888;
}
.ambikly-product-price .strikethrough {
  text-decoration: line-through;
}

.ambikly-product-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.ambikly-product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.ambikly-product-actions label {
  font-size: 14px;
  margin-right: 10px;
}
.ambikly-product-actions input[type=number] {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}

.ambikly-btn {
  background-color: #3498db;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.ambikly-btn:hover {
  background-color: #2980b9;
}

.ambikly-product-meta {
  font-size: 14px;
  margin-top: 20px;
}
.ambikly-product-meta a {
  color: #3498db;
  text-decoration: none;
}
.ambikly-product-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ambikly-product-section {
    flex-direction: column;
  }
  .ambikly-product-image {
    max-width: 100%;
  }
  .ambikly-product-details {
    max-width: 100%;
  }
}

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