.panel-collapse.collapse {
	height: auto;
}

.product-group-quantity-input {
	max-width: 80px;
	border-radius: 0;
}

.price-old {
	text-decoration: line-through;
}

#product-product .product-price {
	font-size: 28px !important;
	text-align: left !important;
	margin-left: 1rem !important;
	padding-top: 1rem !important;
	padding-bottom: 0.75rem !important;
}

#product-product .product-price .price,
#product-product .product-price .price-new {
	font-size: 28px !important;
	text-align: left !important;
}

#product-product .product-price .price-old {
	font-size: 22px !important;
	text-align: left !important;
}

.progress-bar.progress-bar-success {
	width: 0%;
}

.product-code {
	font-size: 0.85em;
	color: #666;
	margin-top: 1rem;
}


/* Product Page Quantity Input Custom Styling */
.product-cart .form-group {
	margin-bottom: 1rem;
}

.product-cart .form-group label.control-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: rgb(0, 96, 100);
	font-size: 14px;
}

.product-cart input[name="quantity"] {
	width: 100px !important;
	max-width: 100px !important;
	height: 48px !important;
	padding: 0 !important;
	text-align: center !important;
	border: 2px solid rgba(0, 96, 100, 0.3) !important;
	border-radius: 8px !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	color: rgb(0, 96, 100) !important;
	background-color: #fff !important;
	transition: all 0.3s ease !important;
	-moz-appearance: textfield !important;
	appearance: textfield !important;
	box-shadow: 0 2px 6px rgba(0, 96, 100, 0.1) !important;
	line-height: 48px !important;
	margin: 0 !important;
}

.product-cart input[name="quantity"]::-webkit-outer-spin-button,
.product-cart input[name="quantity"]::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0;
}

.product-cart input[name="quantity"]:hover {
	border-color: rgba(0, 96, 100, 0.5) !important;
	box-shadow: 0 3px 8px rgba(0, 96, 100, 0.15) !important;
}

.product-cart input[name="quantity"]:focus {
	outline: none !important;
	border-color: rgb(0, 96, 100) !important;
	box-shadow: 0 4px 12px rgba(0, 96, 100, 0.2) !important;
	background-color: #fff !important;
}

/* Product Page Quantity Controls - Match button height to input */
.product-cart .quantity-controls .qty-btn {
	height: 48px !important;
	min-height: 48px !important;
	width: 48px !important;
	min-width: 48px !important;
}

.product-cart .quantity-controls .product-group-quantity {
	height: 48px !important;
	line-height: 48px !important;
}

/* Product Page Add to Cart Button Custom Styling */
.product-add-to-cart-btn,
.product-cart .product-add-to-cart-btn,
.product-cart #button-cart {
	width: auto !important;
	height: 44px !important;
	padding: 0.5rem 1.5rem 0.5rem 3rem !important;
	margin-top: 2.4rem !important;
	border: none !important;
	border-radius: 8px !important;
	background-color: rgb(0, 96, 100) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	box-shadow: 0 4px 12px rgba(0, 96, 100, 0.3) !important;
	transition: all 0.3s ease !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1.5 !important;
	position: relative !important;
}

/* Style the ::before icon properly - keep it visible and positioned correctly */
.product-cart .product-add-to-cart-btn::before,
.product-cart #button-cart::before {
	content: "\e8cc" !important;
	font-family: "Material Icons" !important;
	font-size: 20px !important;
	height: 44px !important;
	left: 0.75rem !important;
	position: absolute !important;
	right: auto !important;
	width: auto !important;
	font-weight: 400 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	line-height: 44px !important;
	text-align: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.product-cart .product-add-to-cart-btn i,
.product-cart #button-cart i,
.product-cart .product-add-to-cart-btn .material-icons,
.product-cart #button-cart .material-icons {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-block !important;
	vertical-align: middle !important;
	font-size: 18px !important;
	line-height: 1 !important;
}

.product-cart .product-add-to-cart-btn:hover,
.product-cart #button-cart:hover {
	background-color: rgba(0, 96, 100, 0.9) !important;
	box-shadow: 0 6px 16px rgba(0, 96, 100, 0.4) !important;
	transform: translateY(-2px) !important;
}

.product-cart .product-add-to-cart-btn:active,
.product-cart #button-cart:active {
	transform: translateY(0) !important;
	box-shadow: 0 2px 8px rgba(0, 96, 100, 0.3) !important;
}

.product-cart .product-add-to-cart-btn:focus,
.product-cart #button-cart:focus {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(0, 96, 100, 0.3), 0 0 0 3px rgba(0, 96, 100, 0.2) !important;
}

.product-cart .product-add-to-cart-btn:disabled,
.product-cart #button-cart:disabled {
	background-color: #ccc !important;
	color: #666 !important;
	cursor: not-allowed !important;
	box-shadow: none !important;
	transform: none !important;
	opacity: 0.6 !important;
}

.product-cart .product-add-to-cart-btn:disabled:hover,
.product-cart #button-cart:disabled:hover {
	background-color: #ccc !important;
	transform: none !important;
	box-shadow: none !important;
}

.product-cart-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	width: 100%;
}

.product-cart-wrapper .form-group {
	margin-bottom: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

@media (max-width: 512px) {
	.product-cart-wrapper {
		align-items: center;
		gap: 0.75rem;
		flex-wrap: nowrap;
	}
	
	.product-cart-wrapper .form-group {
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: auto;
		flex-shrink: 0;
	}
	
	.product-cart-wrapper .form-group label.control-label {
		display: none !important;
		margin-bottom: 0 !important;
		height: 0 !important;
		overflow: hidden !important;
	}
	
	.product-cart input[name="quantity"] {
		width: 80px !important;
		max-width: 80px !important;
		height: 44px !important;
		line-height: 44px !important;
		flex-shrink: 0;
		margin: 0 !important;
	}
	
	.product-cart .product-add-to-cart-btn,
	.product-cart #button-cart {
		width: auto !important;
		flex: 1 !important;
		min-width: 44px !important;
		margin-top: 0 !important;
		height: 44px !important;
		align-self: stretch !important;
		max-width: none !important;
		padding: 0 0.75rem 0 2.25rem !important;
		justify-content: center !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		line-height: 44px !important;
		color: #fff !important;
		text-indent: 0 !important;
		overflow: hidden !important;
		position: relative !important;
		text-shadow: none !important;
		white-space: nowrap !important;
	}
	
	.product-cart .product-add-to-cart-btn::before,
	.product-cart #button-cart::before {
		content: "\e8cc" !important;
		font-family: "Material Icons" !important;
		font-size: 20px !important;
		left: 0.625rem !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		right: auto !important;
		position: absolute !important;
		color: #fff !important;
		opacity: 1 !important;
		visibility: visible !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: auto !important;
		height: auto !important;
		z-index: 1 !important;
		line-height: 1 !important;
	}
}

@media (max-width: 375px) {
	.product-cart input[name="quantity"] {
		width: 70px !important;
		max-width: 70px !important;
	}
	
	.product-cart .product-add-to-cart-btn,
	.product-cart #button-cart {
		font-size: 12px !important;
		padding: 0.5rem 1rem 0.5rem 2.5rem !important;
	}
}




