.wcp-container-1894 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	background-color: #fff;
	text-align: left;
}

.wcp-image-col-1894 {
	flex: 1 1 300px;
	max-width: 100%;
}

.wcp-image-col-1894 img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

.wcp-details-col-1894 {
	flex: 2 1 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wcp-title-1894 {
	font-size: 28px;
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
}

.wcp-price-1894 {
	font-size: 22px;
	font-weight: bold;
	color: #FE8135; /* Orange from primary colors */
	margin-bottom: 20px;
}

.wcp-desc-1894 {
	font-size: 16px;
	line-height: 1.6;
	color: #54595F;
	margin-bottom: 25px;
}

.wcp-button-1894, 
.wcp-details-col-1894 .single_add_to_cart_button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #062233; /* Primary blue */
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: opacity 0.3s ease;
	align-self: flex-start;
}

.wcp-button-1894:hover,
.wcp-details-col-1894 .single_add_to_cart_button:hover {
	opacity: 0.8;
}

/* WooCommerce Variation Form Styles */
.wcp-add-to-cart-wrapper-1894 form.variations_form {
	width: 100%;
}

.wcp-add-to-cart-wrapper-1894 table.variations {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
}

.wcp-add-to-cart-wrapper-1894 table.variations td {
	padding: 10px 0;
	vertical-align: middle;
}

.wcp-add-to-cart-wrapper-1894 table.variations td.label {
	width: 30%;
	font-weight: 600;
	color: #333;
}

.wcp-add-to-cart-wrapper-1894 table.variations select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.wcp-add-to-cart-wrapper-1894 .woocommerce-variation-price {
	font-size: 20px;
	font-weight: bold;
	color: #FE8135;
	margin-bottom: 15px;
}

.wcp-add-to-cart-wrapper-1894 .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 15px;
}

.wcp-add-to-cart-wrapper-1894 .quantity {
	display: flex;
}

.wcp-add-to-cart-wrapper-1894 .quantity input.qty {
	width: 60px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.wcp-container-1894 {
		flex-direction: column;
		text-align: center;
	}
	
	.wcp-button-1894,
	.wcp-details-col-1894 .single_add_to_cart_button {
		align-self: center;
	}
	
	.wcp-add-to-cart-wrapper-1894 .woocommerce-variation-add-to-cart {
		justify-content: center;
		flex-wrap: wrap;
	}
}
