/* styles.css - no inline styles, classes only */
/* Basic resets */
body {
	font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Red price balloon */
.price-balloon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: #e31e24;
	color: #fff;
	padding: 25px 30px;
	border-radius: 60px 80px 80px 15px;
	font-weight: 700;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	z-index: 10;
	text-align: center;
	min-width: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.price-balloon::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0px;
	width: 30px;
	height: 30px;
	background: #e31e24;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	border-radius: 0 0 0 5px;
}
.price-balloon .old-price {
	font-size: 14px;
	text-decoration: line-through;
	text-decoration-color: black;
	margin-bottom: 5px;
}
.price-balloon .current-price {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}
.price-balloon .price-note {
	font-size: 11px;
	margin-top: 5px;
	line-height: 1.2;
}

/* Product layout */
.product-gallery {
	position: relative;
	margin: 0 auto;
	height: 600px;
}
.product-gallery .carousel-inner,
.product-gallery .carousel-item,
.product-gallery .carousel-item img {
	height: 600px;
	object-fit: cover;
	object-position: center center;
}
.product-info p {
	margin-bottom: 0.25rem;
	line-height: 1.4;
}
.product-info h6 {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}
