/**
 * Yak Jungle Resort – shop & product cart (header/nav unchanged).
 */

:root {
	--yak-green: #66a863;
	--yak-green-dark: #4d8549;
	--yak-green-deep: #2f5c32;
	--yak-cream: #f7f5f0;
	--yak-text: #2c2c2c;
	--yak-muted: #6b6b6b;
	--yak-border: #e8e4dc;
	--yak-shadow: 0 8px 28px rgba(47, 92, 50, 0.1);
	--yak-radius: 12px;
	--yak-store-width: 1040px;
	--yak-store-pad: clamp(24px, 6vw, 72px);
}

/* ---- Page shell: margins left & right ---- */
body.yak-store-page .sohohotel-page-header {
	display: none !important;
}

body.yak-store-page .sohohotel-sidebar-content,
body.yak-store-page #secondary,
body.yak-store-page .widget-area {
	display: none !important;
}

body.yak-store-page .sohohotel-content-wrapper {
	box-sizing: border-box;
	width: 100%;
	max-width: calc(var(--yak-store-width) + (var(--yak-store-pad) * 2));
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 16px var(--yak-store-pad) 56px !important;
	background: var(--yak-cream);
}

body.yak-store-page .sohohotel-main-content {
	width: 100% !important;
	float: none !important;
	max-width: var(--yak-store-width) !important;
	margin: 0 auto !important;
	padding: 0 !important;
}

body.yak-store-page .yak-store-inner {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--yak-store-width);
	margin: 0 auto;
	padding: 0;
}

body.yak-store-page .shb-booking-form-style-1,
body.yak-store-page .shb-booking-form-with-background-1 {
	display: none !important;
}

/* ---- Breadcrumb: simple text, no box ---- */
body.yak-store-page .yak-breadcrumb {
	margin: 0 0 18px;
	padding: 0;
}

body.yak-store-page .yak-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font-size: 0.9rem;
}

body.yak-store-page .yak-breadcrumb-list li {
	margin: 0;
	padding: 0;
	color: var(--yak-muted);
}

body.yak-store-page .yak-breadcrumb-list a {
	color: var(--yak-green-dark);
	text-decoration: none;
	font-weight: 600;
}

body.yak-store-page .yak-breadcrumb-list a:hover {
	text-decoration: underline;
}

body.yak-store-page .yak-breadcrumb-sep {
	color: #c5c5c5;
}

body.yak-store-page .woocommerce-breadcrumb {
	display: none !important;
}

/* ---- Shop hero ---- */
.yak-shop-hero {
	position: relative;
	margin: 0 0 32px;
	padding: 44px 36px 36px;
	border-radius: var(--yak-radius);
	overflow: hidden;
	color: #fff;
	text-align: center;
	background: linear-gradient(135deg, var(--yak-green-deep) 0%, var(--yak-green) 55%, #7eb87a 100%);
	box-shadow: var(--yak-shadow);
}

.yak-shop-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14) 0%, transparent 45%),
		radial-gradient(circle at 88% 80%, rgba(0, 0, 0, 0.12) 0%, transparent 50%);
	pointer-events: none;
}

.yak-shop-hero > * {
	position: relative;
	z-index: 1;
}

.yak-shop-hero-label {
	display: inline-block;
	margin: 0 0 12px;
	padding: 6px 14px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
}

.yak-shop-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.yak-shop-hero-lead {
	max-width: 520px;
	margin: 0 auto 22px;
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
}

.yak-shop-hero-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.yak-shop-hero-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}

.yak-shop-hero-features li::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 0.7rem;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 50%;
}

.yak-shop-hero-note {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

.yak-shop-hero-note a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ---- Toolbar ---- */
.yak-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--yak-border);
	border-radius: var(--yak-radius);
}

.yak-shop-toolbar .woocommerce-result-count,
.yak-shop-toolbar .woocommerce-ordering {
	margin: 0 !important;
}

.yak-shop-toolbar .woocommerce-ordering select {
	padding: 8px 36px 8px 12px;
	border: 1px solid var(--yak-border);
	border-radius: 8px;
}

/* ---- Product grid ---- */
body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0 0 40px !important;
	padding: 0;
	list-style: none;
	width: 100% !important;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products::before,
body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products::after {
	display: none !important;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product {
	display: flex !important;
	flex-direction: column;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid var(--yak-border);
	border-radius: var(--yak-radius);
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--yak-shadow);
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product .yak-product-thumb-wrap {
	position: relative;
	overflow: hidden;
	background: #e8e4dc;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product a img {
	width: 100% !important;
	height: 240px !important;
	object-fit: cover;
	margin: 0 !important;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product .yak-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 5px 10px;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--yak-green-deep);
	background: rgba(255, 255, 255, 0.95);
	border-radius: 6px;
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 16px 18px 6px !important;
	margin: 0 !important;
	font-size: 1.08rem !important;
	font-weight: 700 !important;
	color: var(--yak-text) !important;
}

body.yak-store-page .yak-product-excerpt {
	margin: 0;
	padding: 0 18px 8px;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--yak-muted);
}

body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products li.product .price {
	padding: 0 18px 12px !important;
	margin: 0 !important;
	font-size: 1.1rem !important;
	font-weight: 700 !important;
	color: var(--yak-green-dark) !important;
}

body.yak-store-page .sohohotel-site-wrapper .sohohotel-content-wrapper .woocommerce ul.products li.product .button,
body.yak-store-page .sohohotel-site-wrapper .sohohotel-content-wrapper .woocommerce ul.products li.product a.button,
body.yak-store-page .sohohotel-site-wrapper .sohohotel-content-wrapper .woocommerce ul.products li.product .add_to_cart_button {
	margin: auto 18px 18px !important;
	padding: 12px 18px !important;
	width: calc(100% - 36px) !important;
	display: block !important;
	text-align: center;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff !important;
	background: var(--yak-green) !important;
	border: none !important;
	border-radius: 8px !important;
	box-shadow: 0 3px 10px rgba(102, 168, 99, 0.35);
}

body.yak-store-page .sohohotel-site-wrapper .sohohotel-content-wrapper .woocommerce ul.products li.product .button:hover,
body.yak-store-page .sohohotel-site-wrapper .sohohotel-content-wrapper .woocommerce ul.products li.product a.button:hover {
	background: var(--yak-green-dark) !important;
	color: #fff !important;
}

/* ---- Cart page ---- */
body.yak-store-page.woocommerce-cart .woocommerce {
	margin-top: 0;
}

body.yak-store-page.woocommerce-cart .woocommerce table.shop_table {
	width: 100%;
	border: 1px solid var(--yak-border);
	border-radius: var(--yak-radius);
	overflow: hidden;
	background: #fff;
	border-collapse: separate;
	border-spacing: 0;
}

body.yak-store-page.woocommerce-cart .woocommerce table.shop_table thead th {
	background: var(--yak-green);
	color: #fff;
	font-weight: 600;
	padding: 14px 16px;
	border: none;
}

body.yak-store-page.woocommerce-cart .woocommerce table.shop_table td {
	padding: 16px;
	border-top: 1px solid var(--yak-border);
	vertical-align: middle;
}

body.yak-store-page.woocommerce-cart .woocommerce table.shop_table .product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
}

body.yak-store-page.woocommerce-cart .actions {
	padding: 16px !important;
	background: #fafafa;
}

body.yak-store-page.woocommerce-cart .cart-collaterals {
	margin-top: 28px;
	display: flex;
	justify-content: flex-end;
}

body.yak-store-page.woocommerce-cart .cart_totals {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border: 1px solid var(--yak-border);
	border-radius: var(--yak-radius);
	padding: 24px;
	box-shadow: var(--yak-shadow);
}

body.yak-store-page.woocommerce-cart .cart_totals h2 {
	margin-top: 0;
	font-size: 1.25rem;
}

body.yak-store-page.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
body.yak-store-page.woocommerce-cart .woocommerce .checkout-button {
	display: block;
	width: 100%;
	padding: 14px 20px !important;
	text-align: center;
	font-weight: 700 !important;
	color: #fff !important;
	background: var(--yak-green) !important;
	border: none !important;
	border-radius: 8px !important;
}

body.yak-store-page.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body.yak-store-page.woocommerce-cart .woocommerce .checkout-button:hover {
	background: var(--yak-green-dark) !important;
}

body.yak-store-page.woocommerce-cart .coupon .button,
body.yak-store-page.woocommerce-cart button[name="update_cart"] {
	background: #fff !important;
	color: var(--yak-green-dark) !important;
	border: 1px solid var(--yak-green) !important;
	border-radius: 6px !important;
}

@media (max-width: 992px) {
	body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	body.yak-store-page .sohohotel-content-wrapper .woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.yak-shop-hero {
		padding: 28px 20px 24px;
	}

	body.yak-store-page.woocommerce-cart .cart-collaterals {
		justify-content: stretch;
	}

	body.yak-store-page.woocommerce-cart .cart_totals {
		max-width: none;
	}
}
