/* Organela — empty cart page */

body.op-cart-empty-page {
	background: #fff !important;
}

body.op-cart-empty-page .site-content,
body.op-cart-empty-page #content,
body.op-cart-empty-page .content-area,
body.op-cart-empty-page .entry-content,
body.op-cart-empty-page .woocommerce,
body.op-cart-empty-page .site-main {
	background: #fff !important;
}

body.op-cart-empty-page .page-header,
body.op-cart-empty-page .entry-header,
body.op-cart-empty-page .woocommerce-notices-wrapper:empty {
	display: none !important;
}

.op-cart-empty {
	--op-ce-green: rgb(61, 140, 53);
	--op-ce-orange: #fa6619;
	--op-ce-ink: #1a2418;
	--op-ce-muted: #5c6b58;
	--op-ce-radius: 28px;
	--op-ce-font: 'Raleway', sans-serif;
	--op-ce-display: 'Playfair Display', Georgia, serif;

	position: relative;
	isolation: isolate;
	max-width: min(100%, 920px);
	margin: 0 auto;
	padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 24px) clamp(48px, 8vw, 72px);
	font-family: var(--op-ce-font);
	color: var(--op-ce-ink);
	text-align: center;
}

.op-cart-empty__card {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.op-cart-empty__avatar-wrap {
	display: flex;
	justify-content: center;
	margin: 0 auto 12px;
}

.op-cart-empty__avatar-wrap .op-avatar {
	box-shadow: none;
}

.op-cart-empty__avatar-wrap .op-avatar--xl {
	width: 112px;
	height: 112px;
}

.op-cart-empty__eyebrow {
	margin: 0 0 6px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--op-ce-green);
}

.op-cart-empty__title {
	margin: 0 0 12px;
	font-family: var(--op-ce-display);
	font-size: clamp(1.65rem, 4.5vw, 2.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--op-ce-ink);
}

.op-cart-empty__text {
	margin: 0 auto 22px;
	max-width: 34ch;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--op-ce-muted);
}

.op-cart-empty__cta {
	margin: 0;
}

.op-cart-empty__btn,
.op-cart-empty .return-to-shop .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 28px !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: var(--op-ce-green) !important;
	color: #fff !important;
	font-size: 0.92rem !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	box-shadow: none;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.op-cart-empty__btn:hover,
.op-cart-empty .return-to-shop .button:hover {
	background: #2f7a28 !important;
	transform: none;
	box-shadow: none;
	color: #fff !important;
}

.op-cart-empty__picks {
	position: relative;
	z-index: 1;
	margin-top: clamp(28px, 5vw, 40px);
	text-align: left;
}

.op-cart-empty__picks-title {
	margin: 0 0 16px;
	font-family: var(--op-ce-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--op-ce-ink);
	text-align: center;
}

.op-cart-empty__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.op-cart-empty__product {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.op-cart-empty__product:hover {
	transform: none;
	border-color: transparent;
	box-shadow: none;
	opacity: 0.82;
}

.op-cart-empty__thumb {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1;
	background: #fff;
}

.op-cart-empty__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.op-cart-empty__name {
	display: block;
	margin-top: 10px;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--op-ce-ink);
}

.op-cart-empty__price {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--op-ce-orange);
}

.op-cart-empty__price .woocommerce-Price-amount {
	color: inherit;
}

@media (max-width: 860px) {
	.op-cart-empty__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.op-cart-empty__grid {
		grid-template-columns: 1fr;
	}

	.op-cart-empty__product {
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}

	.op-cart-empty__thumb {
		width: 72px;
		flex-shrink: 0;
		aspect-ratio: 1;
	}

	.op-cart-empty__name,
	.op-cart-empty__price {
		margin-top: 0;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.op-cart-empty__btn:hover,
	.op-cart-empty__product:hover {
		transform: none;
	}
}
