.de-widget,
.de-widget * {
	box-sizing: border-box;
}

.de-grid {
	--de-columns: 3;
	--de-column-gap: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 30px;
}

.de-card {
	--de-card-bg: #fbfaf6;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: var(--de-card-bg);
	border: 1px solid #e7e5df;
	border-radius: 18px;
	box-shadow: 0 7px 24px rgba(24, 42, 31, .08);
	isolation: isolate;
}

.de-image-wrap {
	position: relative;
	height: 260px;
	overflow: hidden;
	background: #fff;
}

.de-image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.de-main-image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: contain;
	object-position: center center;
}

.de-mask {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 54px;
	pointer-events: none;
}

.de-mask-organic {
	background: var(--de-card-bg);
	clip-path: polygon(0 58%, 11% 48%, 24% 61%, 39% 42%, 54% 59%, 69% 35%, 84% 49%, 100% 26%, 100% 100%, 0 100%);
}

.de-mask-diagonal {
	background: var(--de-card-bg);
	clip-path: polygon(0 67%, 100% 25%, 100% 100%, 0 100%);
}

.de-mask-custom {
	object-fit: fill;
	object-position: center bottom;
}

.de-rating {
	position: absolute;
	z-index: 4;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	padding: 6px 9px;
	background: #fff;
	border-radius: 7px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
	line-height: 1;
}

.de-stars-wrap {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	line-height: 1;
}

.de-stars-empty,
.de-stars {
	display: block;
	font-size: 13px;
	letter-spacing: 1px;
}

.de-stars-empty {
	color: #d8dec8;
}

.de-stars {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: #a6c651;
	white-space: nowrap;
}

.de-rating-text {
	font-size: 8px;
	line-height: 1.25;
	color: #43503a;
}

.de-card-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 0 18px 18px;
}

.de-bg-icon {
	position: absolute;
	z-index: -1;
	top: -8px;
	left: 18px;
	display: inline-flex;
	font-size: 100px;
	line-height: 1;
	color: #60743a;
	opacity: .08;
	transform: rotate(-18deg);
	pointer-events: none;
}

.de-bg-icon svg,
.de-category-icon svg,
.de-meta-icon svg,
.de-price-icon svg,
.de-button-icon svg,
.de-secure-icon svg,
.de-wishlist-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.de-category {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 20px;
	margin: 0 0 5px;
	color: #60743a;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: .04em;
	text-align: center;
	text-transform: uppercase;
}

.de-category-icon {
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 12px;
	line-height: 1;
}

.de-category-icon-right {
	transform: scaleX(-1);
}

.de-title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 15px;
	color: #143b2a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}

.de-title.de-lines-1 { min-height: 1.1em; max-height: 1.1em; -webkit-line-clamp: 1; }
.de-title.de-lines-2 { min-height: 2.2em; max-height: 2.2em; -webkit-line-clamp: 2; }
.de-title.de-lines-3 { min-height: 3.3em; max-height: 3.3em; -webkit-line-clamp: 3; }

.de-title a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.de-title a:hover,
.de-title a:focus {
	text-decoration: none;
}

.de-meta {
	--de-location-width: 44%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	padding: 13px 12px;
	background: #fff;
	border: 1px solid #ecece7;
	border-radius: 10px;
}

.de-meta.has-location.de-meta-items-3 {
	grid-template-columns: minmax(0, var(--de-location-width)) repeat(2, minmax(0, 1fr));
}

.de-meta.de-meta-items-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.de-meta.has-location.de-meta-items-2 {
	grid-template-columns: minmax(0, var(--de-location-width)) minmax(0, 1fr);
}

.de-meta.de-meta-items-1 {
	grid-template-columns: minmax(0, 1fr);
}

.de-meta.de-meta-items-2 .de-meta-item,
.de-meta.de-meta-items-1 .de-meta-item {
	justify-content: center;
}

.de-meta.de-meta-items-2 .de-meta-copy,
.de-meta.de-meta-items-1 .de-meta-copy {
	width: auto;
	max-width: calc(100% - 24px);
}

.de-meta-item {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	gap: 7px;
}

.de-meta.has-separators .de-meta-item + .de-meta-item {
	padding-left: 10px;
	border-left: 1px solid #e2e5dc;
}

.de-meta-icon {
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: 1px;
	font-size: 15px;
	line-height: 1;
}

.de-meta-copy {
	display: flex;
	width: 100%;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	gap: 1px;
	line-height: 1.2;
}

.de-date-title,
.de-time-value {
	display: block;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.25;
	color: #324234;
}

.de-address,
.de-date-value {
	display: block;
	font-size: 8px;
	line-height: 1.25;
	color: #687065;
}

.de-location-line {
	display: block;
	overflow: hidden;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.de-location {
	align-items: center;
}

.de-location .de-meta-icon {
	align-self: center;
	margin-top: 0;
}

.de-location-line {
	font-size: 9px;
	font-weight: 600;
	line-height: 1.2;
	color: #324234;
}

.de-location .de-address {
	display: -webkit-box;
	overflow: hidden;
	max-width: 100%;
	white-space: normal;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	line-height: 1.2;
}

.de-address-lines-1 { -webkit-line-clamp: 1; }
.de-address-lines-2 { -webkit-line-clamp: 2; }
.de-address-lines-3 { -webkit-line-clamp: 3; }

.de-location .de-address-lines-none {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
}

.de-time {
	align-items: center;
}

.de-meta-fallback {
	opacity: .66;
}

.de-buy {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	align-items: center;
	margin-top: auto;
	padding: 12px 12px 10px;
	background: #fff;
	border: 1px solid #ecece7;
	border-radius: 10px;
}

.de-price-column {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 8px;
	padding-right: 10px;
}

.de-price-icon {
	display: inline-flex;
	flex: 0 0 auto;
	padding: 8px;
	font-size: 15px;
	line-height: 1;
	color: #789444;
	background: #f2f6e8;
	border-radius: 50%;
}

.de-price-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.15;
}

.de-price-label {
	font-size: 8px;
	color: #596054;
}

.de-price-row {
	display: block;
	min-width: 0;
	white-space: nowrap;
}

.de-price-value {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.15;
	color: #789444;
}

.de-current-price,
.de-current-price .amount {
	display: block;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.de-current-line {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.de-old-price {
	display: block;
	font-size: 40% !important;
	font-weight: 500;
	line-height: 1.1;
	color: #60705d;
	opacity: .5;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

.de-old-price .amount {
	font-size: inherit !important;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.de-price-suffix {
	font-size: 7px;
	font-weight: 600;
	color: #687065;
}

.de-cart-column {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
	padding-left: 10px;
}

.de-buy.has-separator .de-cart-column {
	border-left: 1px solid #e4e7df;
}

.de-cart-button,
.de-cart-button.button,
.de-cart-button.button:hover {
	display: flex !important;
	min-height: 39px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 9px 12px !important;
	color: #b5d35e;
	background: #050a07;
	border: 0 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
	text-decoration: none !important;
	white-space: normal;
	transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.de-cart-button:hover {
	color: #fff;
	background: #143b2a;
	transform: translateY(-1px);
}

.de-button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 14px;
	line-height: 1;
}

.de-cart-button.loading {
	opacity: .65;
	pointer-events: none;
}

.de-cart-button.added::after {
	margin-left: 2px;
	content: "✓";
}

.de-cart-column > .added_to_cart.wc-forward,
.de-cart-column > a.added_to_cart,
.de-card a.added_to_cart.wc-forward:not(.de-cart-button) {
	display: none !important;
}

.de-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 7px;
	line-height: 1.2;
	color: #697064;
	text-align: center;
}

.de-secure-icon {
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 7px;
}

.de-wishlist-button {
	display: flex;
	width: 100%;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 10px 0 0;
	padding: 11px 16px;
	color: #fff;
	background: #0c5533;
	border: 0;
	border-radius: 7px;
	box-shadow: none;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.de-wishlist-button::before {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	content: "♡";
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.de-wishlist-button.darduse-wl-in-wishlist {
	color: #0c5533;
	background-color: #c6e062;
}

.de-wishlist-button.darduse-wl-in-wishlist::before {
	content: "♥";
	color: #0c5533;
}

.de-card .de-wishlist-wrapper {
	position: static !important;
	display: block !important;
	width: 100% !important;
	margin: 10px 0 0 !important;
	padding: 0 !important;
	transform: none !important;
}

.de-card .de-wishlist-wrapper .de-wishlist-button {
	position: static !important;
	display: flex !important;
	width: 100% !important;
	margin: 0 !important;
}

.de-wishlist-button:hover,
.de-wishlist-button:focus {
	color: #fff;
	background: #143b2a;
	outline: none;
}

.de-layout-carousel {
	position: relative;
	overflow: visible !important;
}

.de-layout-carousel .de-carousel-track {
	display: grid;
	grid-template-columns: none !important;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.de-layout-carousel .de-carousel-track::-webkit-scrollbar {
	display: none;
}

.de-layout-carousel .de-card {
	scroll-snap-align: start;
}

.de-carousel-navigation {
	position: absolute;
	z-index: 8;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

.de-carousel-button {
	position: absolute !important;
	top: 50% !important;
	display: inline-flex;
	width: 42px;
	min-width: 0 !important;
	height: 42px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: #fff;
	background: #0c5533;
	border: 0;
	border-radius: 50% !important;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	box-shadow: none;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: opacity .2s ease, transform .2s ease;
}

.de-carousel-prev {
	right: auto !important;
	left: -25px !important;
}

.de-carousel-next {
	right: -25px !important;
	left: auto !important;
}

.de-arrow-glyph {
	display: block;
	font-size: 27px;
	line-height: 1;
	transform: translateY(-1px);
}

.de-carousel-button:hover:not(:disabled) {
	transform: translateY(-50%) scale(1.05);
}

.de-carousel-button:disabled {
	opacity: .28;
	cursor: default;
}

.de-empty {
	padding: 30px;
	background: #fbfaf6;
	border: 1px solid #e7e5df;
	border-radius: 12px;
	text-align: center;
}

.de-pagination {
	margin-top: 28px;
}

.de-pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.de-pagination .page-numbers a,
.de-pagination .page-numbers span {
	display: flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	color: #143b2a;
	background: #fbfaf6;
	border: 1px solid #dfe2d9;
	border-radius: 50%;
	text-decoration: none;
}

.de-pagination .page-numbers .current,
.de-pagination .page-numbers a:hover {
	color: #fff;
	background: #143b2a;
	border-color: #143b2a;
}

.de-filter-widget,
.de-filter-widget * {
	box-sizing: border-box;
}

.de-filter-widget {
	width: 100%;
	color: #324234;
}

.de-filter-section {
	padding: 22px 0;
	border-top: 1px solid #e5e7e1;
}

.de-filter-section:first-child {
	padding-top: 0;
	border-top: 0;
}

.de-filter-heading {
	margin: 0 0 17px;
	color: #143b2a;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.de-filter-widget form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.de-filter-widget label,
.de-filter-label {
	display: block;
	margin: 0;
	color: #324234;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.de-filter-widget input[type="date"],
.de-filter-widget select {
	width: 100%;
	height: 42px;
	margin: 0 0 4px;
	padding: 0 13px;
	color: #324234;
	background: #fff;
	border: 1px solid #dfe3da;
	border-radius: 21px;
	box-shadow: none;
	font-size: 12px;
}

.de-commune-help {
	margin: 2px 0 0;
	color: #747b71;
	font-size: 11px;
	line-height: 1.4;
}

.de-commune-options {
	display: flex;
	max-height: 190px;
	flex-direction: column;
	gap: 7px;
	overflow-y: auto;
	padding: 10px 11px;
	background: #fbfcf9;
	border: 1px solid #e5e8e0;
	border-radius: 12px;
}

.de-commune-options:empty,
.de-commune-options[hidden] {
	display: none;
}

.de-commune-option {
	display: flex !important;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.de-commune-option[hidden] {
	display: none !important;
}

.de-commune-option input[type="checkbox"] {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	margin: 0;
	accent-color: #0c5533;
}

.de-commune-option span {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
}

.de-filter-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.de-filter-actions button {
	min-height: 40px;
	padding: 9px 17px;
	color: #c6e062 !important;
	background: #0c5533 !important;
	border: 0 !important;
	border-radius: 20px !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.de-filter-actions button:hover,
.de-filter-actions button:focus {
	color: #fff !important;
	background: #143b2a !important;
}

.de-filter-actions a {
	color: #667060;
	font-size: 11px;
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.de-grid { --de-columns: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.de-title { font-size: 27px; }
}

@media (max-width: 767px) {
	.de-grid { --de-columns: 1; grid-template-columns: 1fr; }
	.de-image-wrap { height: 230px; }
	.de-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
	.de-meta,
	.de-meta.de-meta-items-2,
	.de-meta.de-meta-items-3,
	.de-meta.has-location.de-meta-items-2,
	.de-meta.has-location.de-meta-items-3 {
		grid-template-columns: 1fr;
	}
	.de-meta.has-separators .de-meta-item + .de-meta-item {
		padding-top: 9px;
		padding-left: 0;
		border-top: 1px solid #e2e5dc;
		border-left: 0;
	}
	.de-buy {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.de-price-column { padding-right: 0; }
	.de-cart-column {
		padding-top: 10px;
		padding-left: 0;
	}
	.de-buy.has-separator .de-cart-column {
		border-top: 1px solid #e4e7df;
		border-left: 0;
	}
}
