/**
 * Product Catalog Widget Styles
 */

.orleo-product-catalog {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 0;
	padding: 0;
}

.orleo-product-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #6D737B;
	padding: 20px;
}

.orleo-product-card:hover {
	/* Hover effects removed */
}

.orleo-product-card__inner {
	display: flex;
	flex-direction: row;
	height: 100%;
	gap: 20px;
}

/* Slider Styles */
.orleo-product-slider {
	width: 50%;
	min-width: 50%;
	max-width: 350px;
	height: 100%;
	min-height: 300px;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	align-self: stretch;
}

.orleo-product-slider .swiper-wrapper {
	height: 100%;
}

.orleo-product-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	height: 100%;
}

.orleo-product-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}

.orleo-product-slider .swiper-pagination {
	bottom: 10px;
}

.orleo-product-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.7;
}

.orleo-product-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #0073aa;
}

/* Navigation arrows removed */
.orleo-product-slider .swiper-button-next,
.orleo-product-slider .swiper-button-prev {
	display: none !important;
}

/* Content Styles */
.orleo-product-content {
	width: 50%;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.orleo-product-title {
	margin: 0 0 20px 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: #6D737B;
}

.orleo-product-description-wrapper {
	position: relative;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.orleo-product-description-wrapper.has-toggle .orleo-product-description {
	padding-right: 30px;
}

.orleo-product-description {
	font-size: 16px;
	line-height: 1.4;
	color: #6D737B;
	transition: all 0.3s ease;
}

.orleo-product-description p {
	margin: 0 0 10px 0;
}

.orleo-product-description p:last-child {
	margin-bottom: 0;
}

/* Collapsed description (3 lines) */
.orleo-product-description.orleo-collapsed p{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Toggle button for description */
.orleo-description-toggle {
	position: absolute;
	right: 0;
	top: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #0073aa;
	z-index: 1;
	user-select: none;
}

.orleo-description-toggle.visible {
	display: flex;
}

.orleo-description-toggle svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
}

.orleo-description-toggle:hover {
	color: #005177;
}

.orleo-description-toggle.active .orleo-icon-plus {
	display: none;
}

.orleo-description-toggle.active .orleo-icon-minus {
	display: block !important;
}

.orleo-description-toggle:not(.active) .orleo-icon-plus {
	display: block;
}

.orleo-description-toggle:not(.active) .orleo-icon-minus {
	display: none !important;
}

/* Info Text Styles */
.orleo-info-text {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.4;
	color: #6D737B;
}

.orleo-info-text p {
	margin-bottom: 10px !important;
}

.orleo-info-text p:last-child {
	margin-bottom: 0;
}

/* Accordion Styles */
.orleo-product-accordion {
	margin-bottom: 20px;
}

.orleo-accordion-item {
	border-bottom: 1px solid #e0e0e0;
}

.orleo-accordion-item:last-child {
	border-bottom: none;
}

.orleo-accordion-header {
	width: 100%;
	padding: 15px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
	user-select: none;
}

.orleo-accordion-header:hover {
	color: #0073aa;
}

.orleo-accordion-title {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	flex-grow: 1;
}

.orleo-accordion-icon {
	font-size: 24px;
	font-weight: 300;
	color: #0073aa;
	line-height: 1;
	transition: transform 0.3s ease;
	min-width: 24px;
	text-align: center;
}

.orleo-accordion-item.active .orleo-accordion-icon {
	/* transform: rotate(45deg); */
}

.orleo-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.orleo-accordion-item.active .orleo-accordion-content {
	max-height: 1000px;
}

.orleo-accordion-body {
	padding: 0 0 15px 0;
	font-size: 16px;
	line-height: 1.4;
	color: #6D737B;
}

.orleo-accordion-body p {
	margin: 0 0 10px 0;
}

.orleo-accordion-body p:last-child {
	margin-bottom: 0;
}

/* Variations Styles */
.orleo-product-variations {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

/* Product Specifications Styles */
.orleo-product-specs {
	margin-bottom: 20px;
	position: relative;
	min-height: 60px;
}

.orleo-specs-group {
	display: none;
}

.orleo-specs-group.active {
	display: block;
}

.orleo-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
}

.orleo-spec-item {
	display: flex;
	column-gap: 5px;
	flex-wrap: wrap;
	font-size: 16px;
	line-height: 1.5;
}

.orleo-spec-label {
	font-weight: 600;
	color: #6D737B;
}

.orleo-spec-value {
	color: #6D737B;
}

.orleo-variation-btn {
	padding: 10px 15px;
	background: #fff;
	border: 1px solid #6D737B;
	border-radius: 18px;
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	display: inline-block;
}

.orleo-variation-btn:hover {
	border-color: #27A8DF;
}

.orleo-variation-btn.active {
	background: #27A8DF;
	border-color: #27A8DF;
	color: #ffffff;
}

/* Order Button Styles */
.orleo-order-btn {
	padding: 12px 30px;
	background: #E81A29;
	color: #ffffff;
	border: none;
	border-radius: 18px;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: auto;
	user-select: none;
	display: block;
	text-align: center;
}

.orleo-order-btn:hover {
	background: #83000A;
}

.orleo-order-btn:active {
}

/* Custom Popup Styles */
body.orleo-popup-open {
	overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.orleo-product-catalog {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.orleo-product-catalog {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.orleo-product-card__inner {
		flex-direction: column;
	}
	
	.orleo-product-slider {
		width: 100%;
		min-width: 100%;
		max-width: none;
		height: 250px;
		min-height: 250px;
	}
	
	.orleo-product-content {
		width: 100%;
		padding: 15px;
	}
	
	.orleo-product-title {
		font-size: 18px;
	}
	
	.orleo-variation-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
	
	.orleo-specs-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.orleo-order-btn {
		padding: 10px 25px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.orleo-product-slider {
		height: 200px;
	}
	
	.orleo-product-variations {
		gap: 8px;
	}
	
	.orleo-variation-btn {
		padding: 6px 12px;
		font-size: 12px;
	}
}
