+ {product.description || "Detailed product information will be displayed here. This includes specifications, materials, and care instructions to help you make an informed decision."}
+
+
+
+
+
+
+
+ {getQuantity(product.name)}
+
+
+
+
+
+
@@ -147,4 +194,4 @@ const ProductQuantityCards = ({
);
};
-export default ProductQuantityCards;
+export default ProductQuantityCards;
\ No newline at end of file
diff --git a/src/index.css b/src/index.css
index 41b62ce..1723b8f 100644
--- a/src/index.css
+++ b/src/index.css
@@ -198,3 +198,18 @@ h6 {
bg, a same-color border is invisible and the button disappears. */
border: 1px solid color-mix(in srgb, var(--color-foreground) 18%, transparent);
}
+
+@layer utilities {
+ .perspective-1000 {
+ perspective: 1000px;
+ }
+ .transform-style-preserve-3d {
+ transform-style: preserve-3d;
+ }
+ .backface-hidden {
+ backface-visibility: hidden;
+ }
+ .rotate-y-180 {
+ transform: rotateY(180deg);
+ }
+}
\ No newline at end of file