/**
 * ============================================================================
 * SINGLE PRODUCT PAGE — Modern redesign
 * ============================================================================
 * Loaded only on is_product() pages.
 * Strategy: apply CSS Grid directly to div.product to position .images and
 * .summary side-by-side, and force tabs/related to span both columns.
 * Aggressive specificity + !important to defeat Astra parent rules.
 */

/* ============================================================================
   1. PAGE FRAME
   ============================================================================ */

body.single-product .site-content,
body.single-product #primary,
body.single-product #content {
	background: #fafafa;
}

body.single-product .ast-container,
body.single-product main#main {
	max-width: 1280px !important;
	padding-left: clamp(16px, 3vw, 32px) !important;
	padding-right: clamp(16px, 3vw, 32px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Hide sidebar — full width product */
body.single-product #secondary {
	display: none !important;
}
body.single-product #primary,
body.single-product .ast-no-sidebar #primary,
body.single-product .ast-left-sidebar #primary,
body.single-product .ast-right-sidebar #primary {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Breadcrumb */
body.single-product .woocommerce-breadcrumb {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0 0 20px;
	letter-spacing: 0.01em;
}
body.single-product .woocommerce-breadcrumb a {
	color: #6b7280;
	text-decoration: none;
}
body.single-product .woocommerce-breadcrumb a:hover {
	color: var(--color-primary-700, #0A2B5C);
}

/* ============================================================================
   2. PRODUCT WRAPPER → 2-COLUMN GRID
   ============================================================================ */

body.single-product div.product {
	display: grid !important;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	grid-template-areas:
		"images   summary"
		"tabs     summary"
		"related  related"
		"upsells  upsells";
	column-gap: clamp(24px, 4vw, 56px);
	row-gap: clamp(24px, 3vw, 32px);
	align-items: start;
	margin: 0 0 clamp(40px, 6vw, 72px) !important;
	position: relative;
}

body.single-product div.product > * {
	min-width: 0;
}

body.single-product div.product > .images {
	grid-area: images;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

body.single-product div.product > .summary {
	grid-area: summary;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: clamp(20px, 3vw, 28px) !important;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	position: sticky;
	top: 24px;
	align-self: start;
}

body.single-product div.product > .woocommerce-tabs {
	grid-area: tabs;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
}

body.single-product div.product > .related {
	grid-area: related;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

body.single-product div.product > .upsells {
	grid-area: upsells;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

body.single-product div.product > .onsale {
	position: absolute !important;
	top: 16px;
	left: 16px;
	z-index: 5;
	background: var(--color-error, #ef4444) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 6px 14px !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	min-height: 0 !important;
	min-width: 0 !important;
	line-height: 1.2 !important;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
	margin: 0 !important;
}

body.single-product div.product > .clear {
	display: none !important;
}

@media (max-width: 900px) {
	body.single-product div.product {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"images"
			"summary"
			"tabs"
			"related"
			"upsells" !important;
	}
	body.single-product div.product > .summary {
		position: static;
		max-height: none;
		overflow-y: visible;
	}
}

/* ============================================================================
   3. GALLERY — clean card, horizontal thumbs below
   ============================================================================ */

body.single-product .woocommerce-product-gallery {
	position: relative;
	opacity: 1 !important;
	margin: 0 !important;
	float: none !important;
	width: 100% !important;
}

/* Main image card */
body.single-product .woocommerce-product-gallery .flex-viewport {
	background: #fff !important;
	border: 1px solid #ececec !important;
	border-radius: 12px !important;
	margin: 0 0 12px !important;
	overflow: hidden;
}

/* Single image fallback (no flex-viewport) — same card */
body.single-product .woocommerce-product-gallery > .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery--columns-1 > .woocommerce-product-gallery__image {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	margin: 0 0 12px !important;
}

body.single-product .woocommerce-product-gallery__wrapper {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
body.single-product .woocommerce-product-gallery__wrapper > li,
body.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 2vw, 24px) !important;
	min-height: 520px;
	height: 520px;
	box-sizing: border-box;
}

body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
	display: flex !important;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	cursor: zoom-in;
}

body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
	max-width: 100% !important;
	max-height: 100% !important;
	width: auto !important;
	height: auto !important;
	min-height: 460px;
	object-fit: contain !important;
	display: block !important;
	margin: 0 auto !important;
	background: transparent !important;
}

@media (min-width: 1100px) {
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
		min-height: 640px;
		height: 640px;
	}
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
		min-height: 580px;
	}
}

@media (min-width: 1400px) {
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
		min-height: 720px;
		height: 720px;
	}
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
		min-height: 660px;
	}
}

@media (max-width: 900px) {
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image {
		min-height: 380px;
		height: auto;
		aspect-ratio: 4 / 3;
	}
	body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
		min-height: auto;
	}
}

/* Thumbnails below — horizontal grid */
body.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs::before,
body.single-product .woocommerce-product-gallery .flex-control-thumbs::after {
	display: none !important;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs img {
	width: 100% !important;
	aspect-ratio: 1;
	object-fit: contain !important;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 4px;
	cursor: pointer;
	opacity: 1 !important;
	transition: border-color 0.15s;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover {
	border-color: #cbd5e1;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
	border-color: var(--color-primary-700, #0A2B5C);
}

/* Zoom trigger */
body.single-product .woocommerce-product-gallery__trigger {
	background: rgba(255, 255, 255, 0.95) !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 999px !important;
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	font-size: 0 !important;
	top: 16px !important;
	right: 16px !important;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	z-index: 9 !important;
}
body.single-product .woocommerce-product-gallery__trigger::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	margin: 12px auto;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/><path d='M11 8v6'/><path d='M8 11h6'/></svg>") no-repeat center / contain;
}

/* ============================================================================
   4. SUMMARY HEADER (eyebrow + title + price)
   ============================================================================ */

/* Hide all duplicate category/sku/meta that Astra/Woo render — we use our eyebrow */
body.single-product div.product .summary > a[rel="tag"],
body.single-product div.product .summary > .product_meta,
body.single-product div.product .summary > .product_meta .posted_in,
body.single-product div.product .summary > .product_meta .sku_wrapper,
body.single-product div.product .summary .posted_in,
body.single-product div.product .summary .sku_wrapper,
body.single-product div.product .summary nav.product-categories,
body.single-product div.product .summary .ast-woo-product-category,
body.single-product div.product .summary > .ast-product-category,
body.single-product div.product .summary > [class*="product-cat"]:not(.tushka-product__eyebrow):not(.tushka-product__eyebrow *) {
	display: none !important;
}

/* Skip our eyebrow descendants — keep them visible */
body.single-product div.product .summary .tushka-product__eyebrow,
body.single-product div.product .summary .tushka-product__eyebrow * {
	display: revert !important;
}
body.single-product div.product .summary .tushka-product__eyebrow {
	display: flex !important;
}

/* Hide empty short description placeholder ("...") */
body.single-product div.product .summary .woocommerce-product-details__short-description:empty,
body.single-product div.product .summary .woocommerce-product-details__short-description p:empty {
	display: none !important;
}

.tushka-product__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7280;
	margin: 0 0 12px;
	line-height: 1.4;
}
.tushka-product__eyebrow a {
	color: var(--color-primary-700, #0A2B5C);
	font-weight: 600;
	text-decoration: none;
}
.tushka-product__eyebrow a:hover {
	text-decoration: underline;
}
.tushka-product__eyebrow-sku {
	padding-left: 12px;
	border-left: 1px solid #e5e7eb;
	color: #9ca3af;
	font-weight: 500;
}

/* Title — force normal layout (override Astra) */
body.single-product div.product .summary .product_title,
body.single-product div.product .summary h1.product_title,
body.single-product div.product .summary h1.entry-title {
	font-size: clamp(1.375rem, 2.2vw, 1.75rem) !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	letter-spacing: -0.01em !important;
	word-spacing: normal !important;
	white-space: normal !important;
	display: block !important;
	text-transform: none !important;
}

/* Star rating */
body.single-product div.product .summary .woocommerce-product-rating {
	margin: 0 0 16px !important;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	gap: 8px;
}
body.single-product div.product .summary .woocommerce-review-link {
	color: #6b7280;
	text-decoration: none;
}

/* Price */
body.single-product div.product .summary > .price,
body.single-product div.product .summary p.price {
	display: flex !important;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	font-size: clamp(1.375rem, 2vw, 1.75rem) !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin: 0 0 6px !important;
	padding: 0 !important;
	line-height: 1.15 !important;
}
body.single-product div.product .summary .price del,
body.single-product div.product .summary .price del .woocommerce-Price-amount {
	font-size: 1rem !important;
	color: #9ca3af !important;
	font-weight: 500 !important;
	opacity: 1 !important;
	text-decoration: line-through;
}
body.single-product div.product .summary .price ins,
body.single-product div.product .summary .price ins .woocommerce-Price-amount {
	background: transparent !important;
	color: var(--color-error, #ef4444) !important;
	text-decoration: none !important;
	font-weight: 700 !important;
}
body.single-product div.product .summary .price .woocommerce-Price-currencySymbol {
	font-size: 0.65em;
	font-weight: 600;
	margin-left: 3px;
	opacity: 0.65;
}

/* Variation price range separator nicer */
body.single-product div.product .summary .price .from,
body.single-product div.product .summary .price > span.amount {
	color: inherit;
}

/* Short description */
body.single-product div.product .summary .woocommerce-product-details__short-description {
	font-size: 0.9375rem !important;
	line-height: 1.6 !important;
	color: #4b5563 !important;
	margin: 16px 0 20px !important;
	padding: 16px 0 !important;
	border-top: 1px solid #f3f4f6 !important;
	border-bottom: 1px solid #f3f4f6 !important;
}
body.single-product div.product .summary .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0 !important;
}

/* ============================================================================
   5. KEY FEATURES PILLS
   ============================================================================ */

.tushka-product__features {
	list-style: none !important;
	margin: 0 0 22px !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tushka-product__feature {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 6px 12px !important;
	margin: 0 !important;
	font-size: 0.8125rem;
	color: #374151;
	line-height: 1.3;
	list-style: none !important;
}
.tushka-product__feature::before,
.tushka-product__feature::after {
	display: none !important;
}
.tushka-product__feature-label {
	color: #6b7280;
	font-weight: 500;
}
.tushka-product__feature-label::after {
	content: ':';
	margin-right: 2px;
}
.tushka-product__feature-value {
	color: #111827;
	font-weight: 600;
}

/* ============================================================================
   6. ADD TO CART — including variation swatches
   ============================================================================ */

body.single-product div.product .summary form.cart {
	margin: 0 0 20px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px;
	align-items: stretch;
}

/* Variations table */
body.single-product div.product .summary form.cart table.variations {
	width: 100% !important;
	margin: 0 0 16px !important;
	border: 0 !important;
	background: transparent !important;
}
body.single-product div.product .summary form.cart table.variations tbody,
body.single-product div.product .summary form.cart table.variations tr {
	display: block;
	margin: 0 0 14px;
	background: transparent !important;
}
body.single-product div.product .summary form.cart table.variations td,
body.single-product div.product .summary form.cart table.variations th {
	display: block !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	width: 100% !important;
}
body.single-product div.product .summary form.cart table.variations th.label,
body.single-product div.product .summary form.cart table.variations label {
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	color: #374151 !important;
	margin: 0 0 8px !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	display: block;
}
body.single-product div.product .summary form.cart table.variations select {
	width: 100% !important;
	padding: 10px 14px !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	background-color: #fff !important;
	font-size: 0.95rem !important;
	color: #111827 !important;
	height: auto !important;
	transition: border-color 0.15s;
}
body.single-product div.product .summary form.cart table.variations select:focus {
	outline: 0 !important;
	border-color: var(--color-primary-600, #14457E) !important;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15) !important;
}

/* Variation Swatches plugin (button-style swatches) */
body.single-product .variable-items-wrapper {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
	background: transparent !important;
}
body.single-product .variable-items-wrapper::before,
body.single-product .variable-items-wrapper::after {
	display: none !important;
}
body.single-product .variable-items-wrapper .variable-item {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 6px !important;
	background: #fff !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #374151 !important;
	cursor: pointer !important;
	min-width: 52px !important;
	height: 40px !important;
	min-height: 40px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-shadow: none !important;
	transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}
body.single-product .variable-items-wrapper .variable-item.button-variable-item {
	padding: 0 12px !important;
}
body.single-product .variable-items-wrapper .variable-item:not(.disabled):hover {
	border-color: var(--color-primary-400, #60a5fa) !important;
}
body.single-product .variable-items-wrapper .variable-item.selected {
	border-color: var(--color-primary-700, #0A2B5C) !important;
	color: var(--color-primary-700, #0A2B5C) !important;
	background: var(--color-primary-50, #F0F4F9) !important;
	box-shadow: inset 0 0 0 1px var(--color-primary-700, #0A2B5C) !important;
}
body.single-product .variable-items-wrapper .variable-item.disabled,
body.single-product .variable-items-wrapper .variable-item.wcvs-disabled {
	opacity: 0.4 !important;
	cursor: not-allowed !important;
	text-decoration: line-through;
}
body.single-product .variable-items-wrapper .variable-item .variable-item-span {
	color: inherit !important;
	font: inherit !important;
}

/* Color swatches (round) */
body.single-product .variable-items-wrapper.color-variable-items-wrapper .variable-item {
	min-width: 36px !important;
	width: 36px !important;
	height: 36px !important;
	border-radius: 999px !important;
	padding: 0 !important;
}

/* Reset variations link */
body.single-product div.product .summary .reset_variations {
	display: inline-flex !important;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem !important;
	color: #9ca3af !important;
	margin: 8px 0 0 !important;
	padding: 4px 0 !important;
	text-decoration: none !important;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: transparent !important;
	visibility: visible !important;
}
body.single-product div.product .summary .reset_variations::before {
	content: '✕';
	font-size: 0.875rem;
	margin-right: 2px;
}
body.single-product div.product .summary .reset_variations:hover {
	color: var(--color-error, #ef4444) !important;
	text-decoration: none !important;
}

/* Wishlist button — TI YITH-style anchor */
body.single-product div.product .summary .yith-wcwl-add-to-wishlist,
body.single-product div.product .summary .yith-wcwl-add-button,
body.single-product div.product .summary .tinv-wraper,
body.single-product div.product .summary .wishlist-button {
	margin: 12px 0 16px !important;
}
body.single-product div.product .summary .yith-wcwl-add-to-wishlist a,
body.single-product div.product .summary .tinvwl_add_to_wishlist_button,
body.single-product div.product .summary .wishlist-button a {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 10px 16px !important;
	background: #fff !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #4b5563 !important;
	text-decoration: none !important;
	transition: border-color 0.15s, color 0.15s;
}
body.single-product div.product .summary .yith-wcwl-add-to-wishlist a:hover,
body.single-product div.product .summary .tinvwl_add_to_wishlist_button:hover,
body.single-product div.product .summary .wishlist-button a:hover {
	border-color: var(--color-error, #ef4444) !important;
	color: var(--color-error, #ef4444) !important;
}
body.single-product div.product .summary .yith-wcwl-add-to-wishlist svg,
body.single-product div.product .summary .yith-wcwl-add-to-wishlist .yith-wcwl-icon,
body.single-product div.product .summary .yith-wcwl-add-to-wishlist i {
	color: inherit !important;
	font-size: 16px !important;
}

/* Variation single price */
body.single-product div.product .summary .single_variation_wrap {
	width: 100%;
	margin: 0 0 12px;
}
body.single-product div.product .summary .single_variation_wrap .woocommerce-variation-price {
	margin: 0 0 12px !important;
}
body.single-product div.product .summary .single_variation_wrap .woocommerce-variation-price .price {
	margin: 0 !important;
	font-size: 1.5rem !important;
}
body.single-product div.product .summary .single_variation_wrap .woocommerce-variation-availability {
	margin: 0 0 12px;
	font-size: 0.875rem;
	color: #4b5563;
}
body.single-product div.product .summary .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	align-items: stretch;
}

/* Quantity */
body.single-product div.product .summary form.cart .quantity {
	display: inline-flex !important;
	align-items: center;
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	height: 52px;
	float: none !important;
	margin: 0 !important;
}
body.single-product div.product .summary form.cart .quantity input.qty {
	width: 64px !important;
	height: 100% !important;
	border: 0 !important;
	text-align: center !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #111827 !important;
	background: transparent !important;
	-moz-appearance: textfield;
	padding: 0 !important;
}
body.single-product div.product .summary form.cart .quantity input.qty::-webkit-outer-spin-button,
body.single-product div.product .summary form.cart .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Add to cart button — Tushka Sky CTA */
body.single-product div.product .summary form.cart button.single_add_to_cart_button,
body.single-product div.product .summary .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
	flex: 1 1 200px !important;
	min-width: 200px !important;
	height: 52px !important;
	background: var(--tushka-sky, #00AEEF) !important;
	color: #fff !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	border: 0 !important;
	border-radius: 8px !important;
	padding: 0 24px !important;
	box-shadow: 0 4px 12px rgba(0, 174, 239, 0.25) !important;
	transition: background-color 0.15s, transform 0.05s, box-shadow 0.15s;
	cursor: pointer;
}
body.single-product div.product .summary form.cart button.single_add_to_cart_button:hover,
body.single-product div.product .summary .woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
	background: var(--tushka-sky-dark, #0095CC) !important;
	box-shadow: 0 8px 20px rgba(0, 174, 239, 0.35) !important;
}
body.single-product div.product .summary form.cart button.single_add_to_cart_button:active {
	transform: translateY(1px);
}
body.single-product div.product .summary form.cart button.single_add_to_cart_button.disabled,
body.single-product div.product .summary form.cart button.single_add_to_cart_button:disabled {
	background: #9ca3af !important;
	cursor: not-allowed;
	opacity: 1 !important;
}

/* ============================================================================
   7. TRUST BADGES
   ============================================================================ */

.tushka-product__trust {
	list-style: none !important;
	margin: 0 0 16px !important;
	padding: 16px !important;
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	background: #f9fafb;
	border: 1px solid #f3f4f6;
	border-radius: 8px;
}
@media (max-width: 480px) {
	.tushka-product__trust {
		grid-template-columns: 1fr !important;
	}
}
.tushka-product__trust-item {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.tushka-product__trust-item::before {
	display: none !important;
}
.tushka-product__trust-icon {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary-700, #0A2B5C);
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}
.tushka-product__trust-icon svg {
	width: 18px;
	height: 18px;
}
.tushka-product__trust-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0;
}
.tushka-product__trust-text strong {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #111827;
}
.tushka-product__trust-text small {
	font-size: 0.75rem;
	color: #6b7280;
}

/* ============================================================================
   8. CONSULT CTA
   ============================================================================ */

.tushka-product__consult {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--color-primary-50, #F0F4F9);
	border: 1px solid var(--color-primary-100, #E0E7F0);
	border-radius: 8px;
	margin: 0 0 8px;
}
.tushka-product__consult svg {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	color: var(--color-primary-700, #0A2B5C);
}
.tushka-product__consult strong {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.3;
}
.tushka-product__consult a {
	font-size: 0.8125rem;
	color: var(--color-primary-700, #0A2B5C);
	text-decoration: none;
	font-weight: 600;
}
.tushka-product__consult a:hover {
	text-decoration: underline;
}

/* Hide product_meta entirely (already in eyebrow) */
body.single-product div.product .summary .product_meta {
	display: none !important;
}

/* ============================================================================
   9. TABS
   ============================================================================ */

body.single-product .woocommerce-tabs {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.single-product .woocommerce-tabs ul.tabs {
	display: flex !important;
	gap: 4px;
	flex-wrap: wrap;
	border: 1px solid #ececec !important;
	padding: 4px !important;
	margin: 0 0 24px !important;
	background: #fff !important;
	border-radius: 12px !important;
	list-style: none !important;
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after {
	display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: 0 !important;
	border-radius: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 1 1 auto;
	box-shadow: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
	display: block !important;
	padding: 12px 20px !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	color: #4b5563 !important;
	text-align: center !important;
	text-decoration: none !important;
	border-radius: 8px !important;
	transition: background-color 0.15s, color 0.15s;
}
body.single-product .woocommerce-tabs ul.tabs li:hover a {
	color: #111827 !important;
	background: #f3f4f6 !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #fff !important;
	background: var(--color-primary-700, #0A2B5C) !important;
}

/* Tab panel */
body.single-product .woocommerce-Tabs-panel {
	background: #fff !important;
	border: 1px solid #ececec !important;
	border-radius: 12px !important;
	padding: clamp(20px, 4vw, 40px) !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
	color: #374151 !important;
}
body.single-product .woocommerce-Tabs-panel h1,
body.single-product .woocommerce-Tabs-panel h2,
body.single-product .woocommerce-Tabs-panel h3 {
	color: #111827 !important;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}
body.single-product .woocommerce-Tabs-panel h2:first-child,
body.single-product .woocommerce-Tabs-panel h3:first-child {
	margin-top: 0;
}

/* Specs table */
body.single-product .woocommerce-Tabs-panel--additional_information table.shop_attributes {
	width: 100% !important;
	border: 0 !important;
	border-collapse: collapse !important;
	background: transparent !important;
}
body.single-product .woocommerce-Tabs-panel--additional_information table.shop_attributes th,
body.single-product .woocommerce-Tabs-panel--additional_information table.shop_attributes td {
	border: 0 !important;
	border-bottom: 1px solid #f3f4f6 !important;
	padding: 14px 0 !important;
	background: transparent !important;
	font-style: normal !important;
}
body.single-product .woocommerce-Tabs-panel--additional_information table.shop_attributes th {
	width: 35%;
	font-weight: 600 !important;
	color: #111827 !important;
	font-size: 0.875rem !important;
}
body.single-product .woocommerce-Tabs-panel--additional_information table.shop_attributes td {
	color: #4b5563 !important;
	font-size: 0.9375rem !important;
}

/* ============================================================================
   10. RELATED + UP-SELLS
   ============================================================================ */

body.single-product .related.products,
body.single-product .upsells.products {
	margin: 0 0 64px !important;
	padding: 32px 0 0 !important;
	border-top: 1px solid #ececec;
	clear: both;
}

body.single-product .related.products > h2,
body.single-product .upsells.products > h2 {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin: 0 0 24px !important;
	letter-spacing: -0.01em !important;
}

body.single-product .related.products ul.products,
body.single-product .upsells.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 20px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after,
body.single-product .upsells.products ul.products::before,
body.single-product .upsells.products ul.products::after {
	display: none !important;
}

@media (max-width: 1024px) {
	body.single-product .related.products ul.products,
	body.single-product .upsells.products ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media (max-width: 768px) {
	body.single-product .related.products ul.products,
	body.single-product .upsells.products ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

body.single-product .related.products ul.products li.product,
body.single-product .upsells.products ul.products li.product {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 16px !important;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
body.single-product .related.products ul.products li.product:hover,
body.single-product .upsells.products ul.products li.product:hover {
	transform: translateY(-2px);
	border-color: #d1d5db;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
body.single-product .related.products ul.products li.product img,
body.single-product .upsells.products ul.products li.product img {
	aspect-ratio: 1;
	object-fit: contain !important;
	background: #fafafa;
	border-radius: 8px;
	margin: 0 0 12px !important;
	width: 100%;
}
body.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	color: #111827 !important;
	padding: 0 !important;
	margin: 0 0 6px !important;
}
body.single-product .related.products ul.products li.product .price,
body.single-product .upsells.products ul.products li.product .price {
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: var(--color-primary-700, #0A2B5C) !important;
	margin: 0 !important;
}
