/**
 * SpotMart Single Product - Custom Styles (Hybrid Approach)
 * 
 * These styles override Astra/WooCommerce defaults without copying core files
 * Uses CSS custom properties for easy theming
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
	/* Colors */
	--sp-color-primary: #0ca53c;
	--sp-color-primary-dark: #06772a;
	--sp-color-primary-light: #f0fdf4;
	--sp-color-secondary: #3b82f6;
	--sp-color-danger: #e85d4c;
	--sp-color-warning: #f59e0b;
	--sp-color-text: #1c2b1c;
	--sp-color-text-muted: #627065;
	--sp-color-border: #e5e7eb;
	--sp-color-bg: #ffffff;
	--sp-color-bg-alt: #f9fafb;
	
	/* Spacing */
	--sp-gap-xs: 4px;
	--sp-gap-sm: 8px;
	--sp-gap-md: 16px;
	--sp-gap-lg: 24px;
	--sp-gap-xl: 40px;
	
	/* Border Radius */
	--sp-radius-sm: 8px;
	--sp-radius-md: 12px;
	--sp-radius-lg: 16px;
	
	/* Shadows */
	--sp-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--sp-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--sp-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
	
	/* Transitions */
	--sp-transition: all 0.2s ease;
}

/* ==========================================================================
   2. MAIN PRODUCT LAYOUT
   ========================================================================== */

/* Override Astra's container for single product */
.single-product .ast-woocommerce-container {
	max-width: 1400px;
	padding: 40px 20px;
}

/* Main product wrapper - Grid layout */
.spotmart-product-wrapper {
	display: grid;
	grid-template-columns: 55% 45%;
	gap: var(--sp-gap-xl);
	margin-bottom: var(--sp-gap-xl);
}

@media (max-width: 1024px) {
	.spotmart-product-wrapper {
		grid-template-columns: 1fr;
		gap: var(--sp-gap-lg);
	}
}

/* ==========================================================================
   3. PRODUCT GALLERY
   ========================================================================== */

.spotmart-product-gallery {
	position: sticky;
	top: 100px;
	height: fit-content;
}

.spotmart-gallery-main {
	background: var(--sp-color-bg);
	border-radius: var(--sp-radius-md);
	border: 1px solid var(--sp-color-border);
	overflow: hidden;
	margin-bottom: var(--sp-gap-md);
}

.spotmart-gallery-main .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Gallery thumbnails */
.spotmart-gallery-thumbs {
	display: flex;
	gap: var(--sp-gap-sm);
	overflow-x: auto;
	padding: var(--sp-gap-xs);
}

.spotmart-gallery-thumb {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	border: 2px solid var(--sp-color-border);
	border-radius: var(--sp-radius-sm);
	overflow: hidden;
	cursor: pointer;
	transition: var(--sp-transition);
}

.spotmart-gallery-thumb:hover,
.spotmart-gallery-thumb.active {
	border-color: var(--sp-color-primary);
}

.spotmart-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Sale flash badge on image */
.spotmart-gallery-main .onsale {
	position: absolute;
	top: var(--sp-gap-md);
	left: var(--sp-gap-md);
	background: var(--sp-color-danger);
	color: white;
	padding: 8px 16px;
	border-radius: var(--sp-radius-sm);
	font-size: 14px;
	font-weight: 600;
	z-index: 10;
}

/* ==========================================================================
   4. PRODUCT SUMMARY (Right Side)
   ========================================================================== */

.spotmart-product-summary {
	background: var(--sp-color-bg);
	padding: var(--sp-gap-lg);
	border-radius: var(--sp-radius-md);
	border: 1px solid var(--sp-color-border);
}

/* Header: Badges + Wishlist */
.spotmart-product-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--sp-gap-md);
	flex-wrap: wrap;
	gap: var(--sp-gap-sm);
}

.spotmart-badges {
	display: flex;
	gap: var(--sp-gap-sm);
	flex-wrap: wrap;
}

.spotmart-custom-badges {
	margin: 0 0 var(--sp-gap-sm);
}

.spotmart-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.spotmart-custom-badges {
	display: flex;
	gap: var(--sp-gap-sm);
	flex-wrap: wrap;
}

.spotmart-badge-sale {
	background: var(--sp-color-danger);
	color: white;
}

.spotmart-badge-sale-type {
	background: #f8fafc;
	color: #0f172a;
	border: 1px solid #dbe1ea;
}

.spotmart-badge-sale-type--auction,
.spotmart-badge-auction {
	background: #fff4ce;
	border-color: #f6c84a;
	color: #7c5a00;
}

.spotmart-badge-sale-type--buyer-auction,
.spotmart-badge-sale-type--buyer_auction,
.spotmart-badge-buyer_auction {
	background: #e0f2fe;
	border-color: #90caf9;
	color: #0d47a1;
}

.spotmart-badge-sale-type--buyer-posting,
.spotmart-badge-sale-type--buyer_posting,
.spotmart-badge-buyer_need,
.spotmart-badge-buyer_posting {
	background: #fce7f3;
	border-color: #f9a8d4;
	color: #9d174d;
}

.spotmart-badge-sale-type--bulk-sale,
.spotmart-badge-sale-type--bulk_sale,
.spotmart-badge-bulk_sale {
	background: #dcfce7;
	border-color: #86efac;
	color: #166534;
}

.spotmart-badge-sale-type--secret-sale,
.spotmart-badge-sale-type--secret_sale,
.spotmart-badge-secret_sale {
	background: #ede9fe;
	border-color: #c4b5fd;
	color: #5b21b6;
}

.spotmart-badge-outofstock {
	background: #6b7280;
	color: white;
}

.spotmart-badge-featured {
	background: var(--sp-color-warning);
	color: white;
}

/* Wishlist wrapper */
.spotmart-wishlist-wrapper {
	margin-left: auto;
}

/* Product Title */
.spotmart-product-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--sp-color-text);
	margin: 0 0 var(--sp-gap-md) 0;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.spotmart-product-title {
		font-size: 22px;
	}
}

/* Product Rating */
.spotmart-product-rating {
	margin-bottom: var(--sp-gap-md);
}

.spotmart-product-rating .star-rating {
	color: #f59e0b;
}

.spotmart-product-rating .woocommerce-review-link {
	color: var(--sp-color-text-muted);
	font-size: 14px;
	text-decoration: none;
	margin-left: var(--sp-gap-sm);
}

.spotmart-product-rating .woocommerce-review-link:hover {
	color: var(--sp-color-primary);
}

/* Product Price */
.spotmart-product-price {
	margin-bottom: var(--sp-gap-md);
	display: flex;
	align-items: baseline;
	gap: var(--sp-gap-sm);
}

.spotmart-product-price .price {
	font-size: 32px;
	font-weight: 700;
	color: var(--sp-color-text);
}

.spotmart-product-price .price del {
	font-size: 20px;
	color: #9ca3af;
	font-weight: 500;
}

.spotmart-product-price .price ins {
	text-decoration: none;
}

.spotmart-price-suffix {
	font-size: 16px;
	color: var(--sp-color-text-muted);
}

/* Product Description */
.spotmart-product-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--sp-color-text-muted);
	margin-bottom: var(--sp-gap-lg);
}

/* Trust Badges */
.spotmart-trust-badges {
	display: flex;
	gap: var(--sp-gap-md);
	flex-wrap: wrap;
	margin-bottom: var(--sp-gap-lg);
	padding: var(--sp-gap-md);
	background: var(--sp-color-bg-alt);
	border-radius: var(--sp-radius-sm);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: var(--sp-gap-xs);
	font-size: 13px;
	color: var(--sp-color-text);
}

.trust-badge .dashicons {
	color: var(--sp-color-primary);
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   5. ADD TO CART SECTION
   ========================================================================== */

.spotmart-product-cart {
	margin-bottom: var(--sp-gap-lg);
}

.spotmart-product-cart .cart {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-gap-md);
	align-items: center;
}

/* Quantity selector */
.spotmart-product-cart .quantity {
	display: flex;
	align-items: center;
	border: 2px solid var(--sp-color-border);
	border-radius: var(--sp-radius-sm);
	overflow: hidden;
}

.spotmart-product-cart .quantity .qty {
	width: 60px;
	height: 48px;
	border: none;
	border-left: 2px solid var(--sp-color-border);
	border-right: 2px solid var(--sp-color-border);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.spotmart-product-cart .quantity .minus,
.spotmart-product-cart .quantity .plus {
	width: 40px;
	height: 48px;
	background: var(--sp-color-bg);
	border: none;
	cursor: pointer;
	font-size: 18px;
	color: var(--sp-color-text);
	transition: var(--sp-transition);
}

.spotmart-product-cart .quantity .minus:hover,
.spotmart-product-cart .quantity .plus:hover {
	background: var(--sp-color-primary-light);
	color: var(--sp-color-primary);
}

/* Add to cart button */
.spotmart-product-cart .single_add_to_cart_button {
	background: var(--sp-color-primary);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: var(--sp-radius-sm);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--sp-transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Auction bid form */
.single-product .auction_form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.single-product .auction_form .quantity.buttons_added {
	display: inline-flex;
	align-items: stretch;
	border: 2px solid var(--sp-color-border);
	border-radius: var(--sp-radius-sm);
	overflow: hidden;
	background: #fff;
}

.single-product .auction_form .quantity.buttons_added .minus-bid,
.single-product .auction_form .quantity.buttons_added .plus-bid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 48px;
	padding: 0;
	border: 0;
	background: var(--sp-color-primary);
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: var(--sp-transition);
}

.single-product .auction_form .quantity.buttons_added .minus-bid:hover,
.single-product .auction_form .quantity.buttons_added .plus-bid:hover {
	background: var(--sp-color-primary-dark);
}

.single-product .auction_form .quantity.buttons_added input[name="bid_value"] {
	width: 160px;
	min-width: 160px;
	height: 48px;
	padding: 0 14px;
	border: 0;
	border-left: 1px solid var(--sp-color-border);
	border-right: 1px solid var(--sp-color-border);
	border-radius: 0;
	background: #fff;
	color: #1f2937;
	-webkit-text-fill-color: #1f2937;
	opacity: 1;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 48px;
	box-shadow: none;
}

.single-product .auction_form .quantity.buttons_added input[name="bid_value"]:focus {
	outline: none;
	box-shadow: none;
}

.single-product .auction_form .bid_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: var(--sp-radius-sm);
	background: var(--sp-color-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.single-product .auction_form .bid_button:hover {
	background: var(--sp-color-primary-dark);
}

@media (max-width: 767px) {
	.single-product .auction_form.cart {
		align-items: stretch;
	}

	.single-product .auction_form .quantity.buttons_added,
	.single-product .auction_form .bid_button {
		width: 100%;
	}

	.single-product .auction_form .quantity.buttons_added input[name="bid_value"] {
		flex: 1 1 auto;
		min-width: 0;
	}
}

.spotmart-product-cart .single_add_to_cart_button:hover {
	background: var(--sp-color-primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--sp-shadow-md);
}

/* Variable product select */
.spotmart-product-cart .variations {
	width: 100%;
	margin-bottom: var(--sp-gap-md);
}

.spotmart-product-cart .variations label {
	font-weight: 600;
	color: var(--sp-color-text);
}

.spotmart-product-cart .variations select {
	width: 100%;
	padding: 10px;
	border: 2px solid var(--sp-color-border);
	border-radius: var(--sp-radius-sm);
	background: var(--sp-color-bg);
}

/* ==========================================================================
   6. SHIPPING INFO & META
   ========================================================================== */

.spotmart-shipping-info {
	display: flex;
	align-items: center;
	gap: var(--sp-gap-sm);
	padding: var(--sp-gap-md);
	background: var(--sp-color-primary-light);
	border-radius: var(--sp-radius-sm);
	margin-bottom: var(--sp-gap-lg);
	color: var(--sp-color-primary-dark);
	font-size: 14px;
	font-weight: 500;
}

.spotmart-shipping-info .dashicons {
	color: var(--sp-color-primary);
}

/* Product Meta (SKU, Categories) */
.spotmart-product-meta {
	margin-bottom: var(--sp-gap-lg);
	padding-top: var(--sp-gap-md);
	border-top: 1px solid var(--sp-color-border);
}

.spotmart-product-meta .product_meta {
	font-size: 14px;
}

.spotmart-product-meta .sku_wrapper,
.spotmart-product-meta .posted_in,
.spotmart-product-meta .tagged_as {
	display: block;
	margin-bottom: var(--sp-gap-xs);
	color: var(--sp-color-text-muted);
}

.spotmart-product-meta .sku,
.spotmart-product-meta a {
	color: var(--sp-color-text);
	text-decoration: none;
}

.spotmart-product-meta a:hover {
	color: var(--sp-color-primary);
}

/* ==========================================================================
   7. VENDOR SECTION (DOKAN)
   ========================================================================== */

.spotmart-vendor-section {
	margin-bottom: var(--sp-gap-lg);
}

/* Style Dokan's vendor card */
.spotmart-vendor-section .dokan-vendor-info-wrap {
	display: flex;
	align-items: center;
	gap: var(--sp-gap-md);
	padding: var(--sp-gap-md);
	background: var(--sp-color-bg-alt);
	border-radius: var(--sp-radius-sm);
	border: 1px solid var(--sp-color-border);
}

.spotmart-vendor-section .dokan-vendor-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.spotmart-vendor-section .dokan-vendor-info {
	flex: 1;
}

.spotmart-vendor-section .dokan-vendor-name a {
	font-size: 16px;
	font-weight: 600;
	color: var(--sp-color-text);
	text-decoration: none;
}

.spotmart-vendor-section .dokan-vendor-name a:hover {
	color: var(--sp-color-primary);
}

.spotmart-vendor-section .dokan-vendor-rating {
	color: #f59e0b;
	font-size: 14px;
}

/* ==========================================================================
   8. CHAT SECTION
   ========================================================================== */

.spotmart-chat-section {
	margin-bottom: var(--sp-gap-md);
}

.spotmart-chat-section .button.spotmart-chat-trigger {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-gap-sm);
	background: var(--sp-color-secondary);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: var(--sp-radius-sm);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--sp-transition);
}

.spotmart-chat-section .button.spotmart-chat-trigger:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: var(--sp-shadow-md);
}

/* Chat Widget Styling */
.spotmart-chat-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 380px;
	max-width: calc(100vw - 40px);
	background: var(--sp-color-bg);
	border-radius: var(--sp-radius-md);
	box-shadow: var(--sp-shadow-lg);
	z-index: 9999;
	transform: translateY(120%);
	transition: transform 0.3s ease;
}

.spotmart-chat-widget.open {
	transform: translateY(0);
}

.spotmart-chat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--sp-gap-md);
	background: var(--sp-color-primary);
	color: white;
	border-radius: var(--sp-radius-md) var(--sp-radius-md) 0 0;
}

.spotmart-chat-close {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

/* ==========================================================================
   9. PRODUCT TABS
   ========================================================================== */

.spotmart-product-tabs-wrapper {
	margin-bottom: var(--sp-gap-xl);
}

.spotmart-tabs .woocommerce-tabs {
	background: var(--sp-color-bg);
	border-radius: var(--sp-radius-md);
	border: 1px solid var(--sp-color-border);
	overflow: hidden;
}

/* Tab Navigation */
.spotmart-tabs .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--sp-color-border);
	background: var(--sp-color-bg-alt);
}

.spotmart-tabs .woocommerce-tabs ul.tabs li {
	flex: 1;
	text-align: center;
}

.spotmart-tabs .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: var(--sp-gap-md);
	color: var(--sp-color-text-muted);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: var(--sp-transition);
}

.spotmart-tabs .woocommerce-tabs ul.tabs li.active a {
	color: var(--sp-color-primary);
	border-bottom-color: var(--sp-color-primary);
	background: var(--sp-color-bg);
}

.spotmart-tabs .woocommerce-tabs ul.tabs li a:hover {
	color: var(--sp-color-primary);
}

/* Tab Content */
.spotmart-tabs .woocommerce-Tabs-panel {
	padding: var(--sp-gap-lg);
}

.spotmart-tabs .woocommerce-Tabs-panel h2 {
	font-size: 20px;
	margin-bottom: var(--sp-gap-md);
}

/* ==========================================================================
   10. RELATED PRODUCTS
   ========================================================================== */

.spotmart-related-products {
	margin-top: var(--sp-gap-xl);
}

.spotmart-section-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: var(--sp-gap-lg);
	color: var(--sp-color-text);
}

.spotmart-related-products .products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-gap-lg);
}

@media (max-width: 1024px) {
	.spotmart-related-products .products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.spotmart-related-products .products {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   11. RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
	.single-product .ast-woocommerce-container {
		padding: 20px 15px;
	}
	
	.spotmart-product-summary {
		padding: var(--sp-gap-md);
	}
	
	.spotmart-product-price .price {
		font-size: 24px;
	}
	
	.spotmart-trust-badges {
		flex-direction: column;
		gap: var(--sp-gap-sm);
	}
	
	.spotmart-tabs .woocommerce-tabs ul.tabs {
		flex-wrap: wrap;
	}
	
	.spotmart-tabs .woocommerce-tabs ul.tabs li {
		flex: 1 0 50%;
	}
}

/* ==========================================================================
   12. UTILITY CLASSES
   ========================================================================== */

.spotmart-hidden {
	display: none !important;
}

.spotmart-text-center {
	text-align: center;
}

.spotmart-mb-0 {
	margin-bottom: 0 !important;
}

/* ======================================================================
   13. ASTRA-ALIGNED SINGLE PRODUCT REDESIGN
   ====================================================================== */

body.single-product .ast-woocommerce-container {
	padding: clamp(16px, 2.5vw, 32px) clamp(14px, 2.5vw, 28px) 32px;
}

body.single-product .spotmart-quantity-button,
body.single-product .quantity .screen-reader-text {
	display: none;
}

body.single-product .woo-product-gallery-slider {
	border: 1px solid var(--sp-color-border);
	border-radius: var(--sp-radius-md);
	background: var(--sp-color-bg);
	padding: var(--sp-gap-md);
	margin-bottom: var(--sp-gap-lg);
}

body.single-product .wpgs-for .slick-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: var(--sp-radius-sm);
	overflow: hidden;
}

body.single-product .wpgs-for .woocommerce-product-gallery__image img,
body.single-product .wpgs-for .slick-slide img {
	border-radius: var(--sp-radius-sm);
	max-height: 520px;
	width: auto;
}

body.single-product .wpgs-dots {
	margin-top: 12px;
}

body.single-product .wpgs-dots button {
	border: 0;
	background: var(--sp-color-border);
	width: 10px;
	height: 10px;
	border-radius: 999px;
}

body.single-product .wpgs-dots .slick-active button {
	width: 20px;
	background: var(--sp-color-primary);
}

body.single-product .summary.entry-summary {
	background: var(--sp-color-bg);
	border: 1px solid var(--sp-color-border);
	border-radius: var(--sp-radius-md);
	padding: clamp(16px, 2vw, 24px);
	box-shadow: var(--sp-shadow-sm);
}

body.single-product .summary.entry-summary .product_title.entry-title {
	font-size: clamp(28px, 2.4vw, 40px);
	letter-spacing: 0.01em;
	line-height: 1.18;
	margin-top: 4px;
	margin-bottom: 10px;
}

body.single-product .summary.entry-summary .woocommerce-product-details__short-description p,
body.single-product .summary.entry-summary .ast-stock-detail {
	font-size: 15px;
	line-height: 1.6;
}

body.single-product .summary.entry-summary .woocommerce-breadcrumb {
	margin-bottom: 10px;
	color: var(--sp-color-text-muted);
	font-size: 13px;
}

body.single-product .summary.entry-summary .woocommerce-breadcrumb a {
	color: var(--sp-color-text-muted);
}

body.single-product .summary.entry-summary .price {
	margin: 0 0 18px;
}

body.single-product .summary.entry-summary .price .woocommerce-Price-amount {
	font-weight: 700;
	font-size: clamp(30px, 2vw, 34px);
	color: var(--sp-color-text);
}

body.single-product .summary.entry-summary .ast-stock-avail,
body.single-product .summary.entry-summary .stock {
	display: inline-flex;
	align-items: center;
}

body.single-product .summary.entry-summary .ast-stock-detail {
	margin: 0 0 14px;
}

body.single-product .summary.entry-summary .stock {
	color: #0a8a3a;
	font-weight: 600;
}

body.single-product .summary.entry-summary .spotmart-price-uom {
	font-weight: 500;
	color: var(--sp-color-text-muted);
}

body.single-product .summary.entry-summary .cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

body.single-product .summary.entry-summary .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 2px solid var(--sp-color-border);
	border-radius: 10px;
	overflow: hidden;
}

body.single-product .summary.entry-summary .quantity .qty {
	width: 66px;
	border: 0;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	height: 48px;
}

body.single-product .summary.entry-summary .quantity .minus,
body.single-product .summary.entry-summary .quantity .plus {
	min-width: 44px;
	border: 0;
	background: #fff;
	color: var(--sp-color-text);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

body.single-product .summary.entry-summary .single_add_to_cart_button,
body.single-product .summary.entry-summary .spotmart-chat-trigger {
	min-height: 48px;
	border-radius: 10px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
}

body.single-product .summary.entry-summary .single_add_to_cart_button {
	background: var(--sp-color-primary);
	color: #fff;
	border: 0;
}

body.single-product .summary.entry-summary .single_add_to_cart_button:hover {
	filter: brightness(0.95);
}

body.single-product .summary.entry-summary .spotmart-chat-trigger {
	background: #1d4ed8;
	color: #fff;
}

body.single-product .summary.entry-summary .product_meta,
body.single-product .summary.entry-summary .spotmart-product-hierarchy-table {
	margin-top: 12px;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table {
	width: 100%;
	border-collapse: collapse;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table tr {
	border-bottom: 1px dashed #d9dfe8;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table th,
body.single-product .summary.entry-summary .spotmart-product-hierarchy-table td {
	padding: 10px 0;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table th {
	font-size: 13px;
	color: var(--sp-color-text-muted);
	font-weight: 600;
	width: 190px;
}

body.single-product .dokan-vendor-info-wrap {
	border: 1px solid var(--sp-color-border);
	border-radius: var(--sp-radius-sm);
	padding: 12px;
	background: var(--sp-color-bg-alt);
}

body.single-product .woocommerce-tabs {
	margin-top: 28px;
	border: 1px solid var(--sp-color-border);
	border-radius: var(--sp-radius-md);
	overflow: hidden;
}

body.single-product .woocommerce-tabs ul.tabs {
	background: var(--sp-color-bg-alt);
	border-bottom: 1px solid var(--sp-color-border);
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

body.single-product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 14px 16px;
	color: var(--sp-color-text-muted);
	font-size: 14px;
	font-weight: 600;
	border-bottom: 3px solid transparent;
}

body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--sp-color-text);
	border-color: var(--sp-color-primary);
}

body.single-product .woocommerce-Tabs-panel {
	padding: 20px;
	background: #fff;
}

body.single-product .woocommerce-Tabs-panel h2 {
	font-size: 24px;
	margin-top: 0;
}

body.single-product .woocommerce-tabs .wc-tabs .active a,
body.single-product .woocommerce-tabs .wc-tabs a:focus {
	outline: none;
}

body.single-product.spotmart-buyer-listed-product .dokan-vendor-info-wrap,
body.single-product.spotmart-buyer-listed-product #tab-seller,
body.single-product.spotmart-buyer-listed-product #tab-title-seller,
body.single-product.spotmart-buyer-listed-product #tab-title-more_seller_product,
body.single-product.spotmart-buyer-listed-product .woocommerce-Tabs-panel#tab-seller,
body.single-product.spotmart-buyer-listed-product .woocommerce-Tabs-panel#tab-more_seller_product,
body.single-product.spotmart-buyer-posting-layout .dokan-vendor-info-wrap,
body.single-product.spotmart-buyer-need-layout .dokan-vendor-info-wrap,
body.single-product.spotmart-buyer-posting-layout #tab-seller,
body.single-product.spotmart-buyer-posting-layout #tab-title-seller,
body.single-product.spotmart-buyer-posting-layout #tab-title-more_seller_product,
body.single-product.spotmart-buyer-posting-layout .woocommerce-Tabs-panel#tab-seller,
body.single-product.spotmart-buyer-posting-layout .woocommerce-Tabs-panel#tab-more_seller_product,
body.single-product.spotmart-buyer-need-layout #tab-seller,
body.single-product.spotmart-buyer-need-layout #tab-title-seller,
body.single-product.spotmart-buyer-need-layout #tab-title-more_seller_product,
body.single-product.spotmart-buyer-need-layout .woocommerce-Tabs-panel#tab-seller,
body.single-product.spotmart-buyer-need-layout .woocommerce-Tabs-panel#tab-more_seller_product {
	display: none !important;
}

body.single-product .spotmart-no-vendor .dokan-vendor-info-wrap,
body.single-product .spotmart-no-vendor .dokan-vendor-info {
	display: none !important;
}

@media (max-width: 960px) {
	body.single-product .summary.entry-summary .cart {
		align-items: stretch;
		flex-direction: column;
	}

	body.single-product .summary.entry-summary .quantity {
		width: fit-content;
	}
}

/* ======================================================================
   14. PRODUCT CARD REDESIGN (SHOP / RELATED / MORE FROM SELLER)
   ====================================================================== */

body:not(.single-product) .ast-woocommerce-container {
	padding: clamp(14px, 2vw, 28px);
}

/* Marketplace / product archive spacing cleanup */
body.post-type-archive-product .site-main,
body.woocommerce-shop .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main,
body.post-type-archive-product .ast-woocommerce-container,
body.woocommerce-shop .ast-woocommerce-container,
body.tax-product_cat .ast-woocommerce-container,
body.tax-product_tag .ast-woocommerce-container,
body.post-type-archive-product .spotmart-shop-container,
body.woocommerce-shop .spotmart-shop-container,
body.tax-product_cat .spotmart-shop-container,
body.tax-product_tag .spotmart-shop-container,
body.post-type-archive-product .woocommerce-breadcrumb,
body.woocommerce-shop .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
body.tax-product_tag .woocommerce-products-header__title.page-title {
	margin: 0 !important;
}

body.post-type-archive-product .ast-woocommerce-container,
body.woocommerce-shop .ast-woocommerce-container,
body.tax-product_cat .ast-woocommerce-container,
body.tax-product_tag .ast-woocommerce-container {
	padding: 0 !important;
}

body.post-type-archive-product .site-main,
body.woocommerce-shop .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
	margin: 0.25rem 0.6rem 0.6rem !important;
}

body.post-type-archive-product #main.site-main,
body.woocommerce-shop #main.site-main,
body.tax-product_cat #main.site-main,
body.tax-product_tag #main.site-main {
  	margin-top: 0 !important;
}

body.post-type-archive-product .spotmart-shop-container,
body.woocommerce-shop .spotmart-shop-container,
body.tax-product_cat .spotmart-shop-container,
body.tax-product_tag .spotmart-shop-container {
	padding-top: 0 !important;
}

body.post-type-archive-product .spotmart-products-area,
body.woocommerce-shop .spotmart-products-area,
body.tax-product_cat .spotmart-products-area,
body.tax-product_tag .spotmart-products-area {
	margin-left: 0.75rem !important;
}

body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
body.tax-product_tag .woocommerce-products-header__title.page-title {
	margin-bottom: 0 !important;
}

body.post-type-archive-product .woocommerce-breadcrumb,
body.woocommerce-shop .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb {
	margin-top: 0 !important;
	margin-bottom: 12px !important;
}

body .ast-article-single.ast-grid-common-col.ast-woo-product-no-review,
body .related.products .ast-article-single.ast-grid-common-col.ast-woo-product-no-review {
	background: #fff;
	border-radius: var(--sp-radius-md);
	border: 1px solid var(--sp-color-border) !important;
	box-shadow: var(--sp-shadow-sm);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
	padding: 8px;
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

body .site-main ul.products li.product,
body .related.products ul.products li.product,
body .site-main ul.products li.ast-article-post.product,
body .related.products ul.products li.ast-article-post.product {
	background: #fff;
	border-radius: var(--sp-radius-md);
	border: 1px solid var(--sp-color-border) !important;
	box-shadow: var(--sp-shadow-sm);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
	overflow: hidden;
	box-sizing: border-box;
}

body .site-main ul.products li.product,
body .related.products ul.products li.product {
	position: relative;
}

body .site-main .products.columns-4,
body .woocommerce.columns-4 ul.products,
body .related.products .products.columns-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body .ast-article-single.ast-grid-common-col.ast-woo-product-no-review:hover {
	transform: translateY(-4px);
	box-shadow: var(--sp-shadow-md);
	border-color: #8bc34a;
}

body .site-main ul.products li.product:hover,
body .related.products ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: var(--sp-shadow-md);
	border-color: #8bc34a;
}

body .ast-article-single.ast-grid-common-col.ast-woo-product-no-review::after,
body .related.products .ast-article-single.ast-grid-common-col.ast-woo-product-no-review::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	border: 1px solid transparent;
	transition: border-color 0.24s ease;
}

body .ast-article-single.ast-grid-common-col.ast-woo-product-no-review:hover::after,
body .related.products .ast-article-single.ast-grid-common-col.ast-woo-product-no-review:hover::after {
	border-color: rgba(139, 195, 74, 0.45);
}

body .spotmart-card-action-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	width: 100%;
	align-items: stretch;
	margin: 0;
}

body .spotmart-card-action-row .spotmart-card-cta,
body .spotmart-card-action-row .dokan_request_button {
	flex: 1 1 0;
	width: auto;
	min-height: 40px;
	height: 40px;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 10px !important;
}

body .site-main ul.products li.product .spotmart-card-cta,
body .site-main ul.products li.product .dokan_request_button,
body .related.products .products li.product .spotmart-card-cta,
body .related.products .products li.product .dokan_request_button,
body .spotmart-card-action-row .spotmart-card-cta,
body .spotmart-card-action-row .dokan_request_button {
	width: auto !important;
}

body .astra-shop-thumbnail-wrap {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

body .astra-shop-thumbnail-wrap a {
	display: block;
}

body .astra-shop-thumbnail-wrap img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

body .ast-loop-product__link {
	color: var(--sp-color-text);
	text-decoration: none;
}

body .ast-loop-product__link:hover {
	color: var(--sp-color-primary);
}

body .woocommerce-loop-product__title,
body .ast-loop-product__title {
	font-size: 17px;
	line-height: 1.3;
	margin: 14px 0 6px;
}

body .astra-shop-summary-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 6px 6px !important;
}

body .astra-shop-summary-wrap .price {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.35;
}

body .ast-on-card-button {
	display: none !important;
	height: 0 !important;
	width: 0 !important;
	border-radius: 10px !important;
	overflow: hidden !important;
}

body .ast-on-card-button:hover,
body .ast-on-card-button:focus-visible,
body .ast-on-card-button:focus {
	display: none !important;
}

body .site-main ul.products li.product .ast-on-card-button,
body .site-main ul.products li.product .button,
body .site-main ul.products li.product .dokan_request_button,
body .site-main ul.products li.product .spotmart-card-cta,
body .related.products .products li.product .ast-on-card-button,
body .related.products .products li.product .button,
body .related.products .products li.product .dokan_request_button,
body .related.products .products li.product .spotmart-card-cta {
	width: 100%;
	min-height: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	border-radius: 10px !important;
	border: 1px solid transparent;
	color: #fff !important;
	box-shadow: none;
	background: var(--sp-color-primary);
}

body .site-main ul.products li.product .spotmart-card-action-row .dokan_request_button,
body .site-main ul.products li.product .dokan_request_button,
body .related.products .products li.product .spotmart-card-action-row .dokan_request_button,
body .related.products .products li.product .dokan_request_button {
	background: #ffffff !important;
	background-image: none !important;
	color: var(--sp-color-primary) !important;
	border-color: var(--sp-color-primary) !important;
	border: 1px solid var(--sp-color-primary) !important;
	text-decoration: none !important;
}

body .site-main ul.products li.product .ast-on-card-button:hover,
body .site-main ul.products li.product .ast-on-card-button:focus-visible,
body .site-main ul.products li.product .button:hover,
body .site-main ul.products li.product .button:focus-visible,
body .site-main ul.products li.product .dokan_request_button:hover,
body .site-main ul.products li.product .dokan_request_button:focus-visible,
body .site-main ul.products li.product .spotmart-card-cta:hover,
body .site-main ul.products li.product .spotmart-card-cta:focus-visible,
body .related.products .products li.product .ast-on-card-button:hover,
body .related.products .products li.product .ast-on-card-button:focus-visible,
body .related.products .products li.product .button:hover,
body .related.products .products li.product .button:focus-visible,
body .related.products .products li.product .dokan_request_button:hover,
body .related.products .products li.product .dokan_request_button:focus-visible,
body .related.products .products li.product .spotmart-card-cta:hover,
body .related.products .products li.product .spotmart-card-cta:focus-visible {
	opacity: 0.93;
}

body .site-main ul.products li.product .spotmart-card-action-row .spotmart-card-cta,
body .site-main ul.products li.product .spotmart-card-action-row .dokan_request_button,
body .related.products .products li.product .spotmart-card-action-row .spotmart-card-cta,
body .related.products .products li.product .spotmart-card-action-row .dokan_request_button {
	width: auto !important;
	flex: 1 1 50% !important;
	min-height: 40px !important;
	height: 40px !important;
	padding-left: 0.75rem !important;
	padding-right: 0.75rem !important;
}

body .site-main ul.products li.product .spotmart-card-cta--in-cart,
body .related.products .products li.product .spotmart-card-cta--in-cart {
	background: #eef8f1 !important;
	color: var(--sp-color-primary) !important;
	border-color: rgba(6, 119, 42, 0.25) !important;
}

body .spotmart-card-cart-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	margin-top: 8px;
	padding: 10px 12px;
	border: 1px solid rgba(6, 119, 42, 0.16);
	border-radius: 10px;
	background: #f7fcf8;
}

body .spotmart-card-cart-state.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

body .spotmart-card-cart-state__summary {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

body .spotmart-card-cart-state__status,
body .spotmart-card-cart-state__meta {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body .spotmart-card-cart-state__status {
	font-size: 13px;
	font-weight: 700;
	color: var(--sp-color-primary);
}

body .spotmart-card-cart-state__meta {
	font-size: 12px;
	color: #516351;
}

body .spotmart-card-cart-state__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

body .spotmart-card-qty-btn {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(6, 119, 42, 0.28);
	border-radius: 8px;
	background: #ffffff;
	color: var(--sp-color-primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

body .spotmart-card-qty-btn:hover,
body .spotmart-card-qty-btn:focus-visible {
	background: #eef8f1;
	outline: none;
}

body .spotmart-card-qty-value {
	min-width: 18px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--sp-color-heading);
}

body .site-main ul.products li.product a.added_to_cart,
body .related.products .products li.product a.added_to_cart {
	display: none !important;
}

body.single-product .spotmart-single-product-cart-state {
	margin: 0 0 12px;
	padding: 10px 14px;
	border-radius: 10px;
	background: #f3fbf5;
	border: 1px solid rgba(6, 119, 42, 0.16);
	color: var(--sp-color-primary);
	font-size: 14px;
	font-weight: 600;
}

body .site-main ul.products li.product .spotmart-card-action-row .dokan_request_button:hover,
body .site-main ul.products li.product .spotmart-card-action-row .dokan_request_button:focus-visible,
body .related.products .products li.product .spotmart-card-action-row .dokan_request_button:hover,
body .related.products .products li.product .spotmart-card-action-row .dokan_request_button:focus-visible {
	background: #f3fbf5 !important;
	color: var(--sp-color-primary) !important;
	opacity: 1;
	box-shadow: none;
}

body .woocommerce ul.products li.product .dokan_request_button,
body .ast-woo-product-list .products li.product .dokan_request_button,
body .woocommerce ul.products li.product .spotmart-card-action-row .dokan_request_button {
	background: #ffffff !important;
	background-image: none !important;
	color: var(--sp-color-primary) !important;
	border: 1px solid var(--sp-color-primary) !important;
}

body .woocommerce ul.products li.product .dokan_request_button:hover,
body .woocommerce ul.products li.product .dokan_request_button:focus-visible,
body .ast-woo-product-list .products li.product .dokan_request_button:hover,
body .ast-woo-product-list .products li.product .dokan_request_button:focus-visible,
body .woocommerce ul.products li.product .spotmart-card-action-row .dokan_request_button:hover,
body .woocommerce ul.products li.product .spotmart-card-action-row .dokan_request_button:focus-visible {
	background: #f3fbf5 !important;
	color: var(--sp-color-primary) !important;
	opacity: 1 !important;
}

body .ast-on-card-button .ast-card-action-tooltip,
body .site-main ul.products li.product .ahfb-svg-iconset,
body .site-main ul.products li.product .ast-card-action-tooltip,
body .related.products .products li.product .ahfb-svg-iconset,
body .related.products .products li.product .ast-card-action-tooltip,
body .site-main .spotmart-card-cta .ast-card-action-tooltip,
body .site-main .spotmart-card-cta .ahfb-svg-iconset,
body .related.products .spotmart-card-cta .ast-card-action-tooltip,
body .related.products .spotmart-card-cta .ahfb-svg-iconset {
	font-weight: 500;
	display: none !important;
	visibility: hidden;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

body .spotmart-product-sale-badge {
	position: absolute;
	top: 6px;
	left: 10px;
	z-index: 12;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 11px;
	background: #fffbe6;
	border: 1px solid rgba(247, 181, 0, 0.35);
	border-radius: var(--spotmart-radius-pill);
	color: #8a5d00;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 3px 10px rgba(166, 112, 0, 0.18);
	animation: spotmart-sale-badge-pop 0.25s ease-out;
}

body .spotmart-product-sale-badge__label {
	line-height: 1.1;
}

body .spotmart-product-sale-badge:hover {
	background: #fff3c1;
}

body .ast-onsale-card,
body .auction-sale-badge,
body .auction-sale-badge__label {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none !important;
	z-index: -1 !important;
}

body .spotmart-product-sale-badge ~ .yith-add-to-wishlist-button-block {
	margin-top: 0;
}

body .site-main ul.products li.product .yith-add-to-wishlist-button-block,
body .site-main ul.products li.product .yith-add-to-wishlist-button--initialized,
body .related.products .yith-add-to-wishlist-button-block,
body .related.products .yith-add-to-wishlist-button--initialized,
body .site-main ul.products li.product .yith-add-to-wishlist-button-block--initialized,
body .site-main ul.products li.product .yith-add-to-wishlist-button-block--single,
body .related.products .yith-add-to-wishlist-button-block--initialized,
body .related.products .yith-add-to-wishlist-button-block--single {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 11;
	margin: 0;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
	border: 1px solid #e2e8f0;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

body .site-main ul.products li.product .yith-add-to-wishlist-button-block--initialized .yith-add-to-wishlist-button--anchor,
body .site-main ul.products li.product .yith-add-to-wishlist-button-block--initialized .yith-add-to-wishlist-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-width: auto;
	gap: 0;
	margin: 0;
	color: #111827;
	padding: 0;
}

body .site-main ul.products li.product .yith-add-to-wishlist-button svg,
body .site-main ul.products li.product .yith-add-to-wishlist-button img,
body .related.products .yith-add-to-wishlist-button svg {
	width: 18px;
	height: 18px;
}

body .yith-add-to-wishlist-button-block .yith-add-to-wishlist-button__label,
body .related.products .yith-add-to-wishlist-button__label,
body .site-main ul.products li.product .yith-add-to-wishlist-button__label {
	display: none !important;
}

/* Ensure wishlist text is removed for all variants (some builds use wcwl class). */
body .yith-wcwl-add-to-wishlist-button__label {
	display: none !important;
}

@keyframes spotmart-sale-badge-pop {
	from {
		opacity: 0;
		transform: translateY(-4px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}


body .related.products {
	margin-top: 28px;
}

body .related.products .products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

@media (max-width: 1200px) {
	body .related.products .products,
	body .woocommerce.columns-4 ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body .related.products .products,
	body .woocommerce.columns-4 ul.products,
	body .products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	body .ast-loop-product__title,
	body .woocommerce-loop-product__title {
		font-size: 16px;
	}
}

/* ======================================================================
   15. SINGLE PRODUCT FULL-WIDTH POLISH
   ====================================================================== */

body.single-product .site-content,
body.single-product .site-content .ast-container,
body.single-product .site-content > .ast-container,
body.single-product #content > .ast-container,
body.single-product .ast-container {
	max-width: 100% !important;
	padding-left: clamp(16px, 2vw, 28px) !important;
	padding-right: clamp(16px, 2vw, 28px) !important;
}

body.single-product .site-content,
body.single-product .site-content .ast-container {
	width: 100% !important;
}

body.single-product #primary,
body.single-product .content-area,
body.single-product #main.site-main {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	flex: 1 1 100% !important;
}

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

body.single-product .spotmart-single-shell {
	max-width: min(1680px, 100%);
	margin: 0 auto;
	padding: clamp(16px, 1.8vw, 28px) 0 48px;
}

body.single-product .spotmart-single-product {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3vw, 44px);
}

body.single-product .spotmart-single-hero {
	display: grid;
	grid-template-columns: minmax(520px, 1.2fr) minmax(420px, 0.95fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
	max-width: 100% !important;
}

body.single-product .spotmart-single-gallery,
body.single-product .spotmart-single-summary-column,
body.single-product .spotmart-single-content {
	min-width: 0;
}

body.single-product .spotmart-single-gallery-inner,
body.single-product .spotmart-single-summary {
	margin: 0 !important;
	min-width: 0;
}

body.single-product .spotmart-single-gallery-inner > .woo-product-gallery-slider,
body.single-product .spotmart-single-summary-column > .summary.entry-summary {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

body.single-product .spotmart-single-content {
	display: grid;
	gap: clamp(26px, 3vw, 38px);
}

body.single-product .spotmart-single-gallery-inner {
	position: sticky;
	top: 96px;
	padding: clamp(18px, 2vw, 24px);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	background:
		radial-gradient(circle at top left, rgba(12, 165, 60, 0.08), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
	min-height: 520px;
}

body.single-product .spotmart-single-gallery-inner > .woo-product-gallery-slider {
	background: transparent !important;
}

body.single-product .wpgs-for .slick-list,
body.single-product .wpgs-for .slick-track,
body.single-product .wpgs-for .slick-slide,
body.single-product .wpgs-for .woocommerce-product-gallery__image {
	height: min(640px, 72vh) !important;
}

body.single-product .wpgs-for .slick-slide,
body.single-product .wpgs-for .woocommerce-product-gallery__image {
	padding: 10px;
}

body.single-product .wpgs-for .woocommerce-product-gallery__image img,
body.single-product .wpgs-for .slick-slide img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

body.single-product .summary.entry-summary {
	padding: clamp(22px, 2.2vw, 30px);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
	min-height: 520px;
	position: relative;
	padding-right: clamp(68px, 5vw, 92px);
}

body.single-product .summary.entry-summary .woocommerce-breadcrumb {
	margin-bottom: 14px;
}

body.single-product .summary.entry-summary .product_title.entry-title {
	font-size: clamp(30px, 2.5vw, 42px);
	margin-bottom: 12px;
}

body.single-product .summary.entry-summary .price {
	margin-bottom: 20px;
}

body.single-product .summary.entry-summary .cart {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 16px;
}

body.single-product .summary.entry-summary form.cart {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 12px !important;
	margin-bottom: 16px !important;
}

body.single-product .summary.entry-summary form.cart::before,
body.single-product .summary.entry-summary form.cart::after {
	display: none !important;
	content: none !important;
}

body.single-product .summary.entry-summary form.cart > .quantity,
body.single-product .summary.entry-summary form.cart > .single_add_to_cart_button,
body.single-product .summary.entry-summary form.cart > .dokan_request_button {
	float: none !important;
	margin: 0 !important;
}

body.single-product .summary.entry-summary .quantity {
	margin: 0;
	height: 48px;
	width: 132px;
	min-width: 132px;
	flex: 0 0 132px;
	align-self: center;
}

body.single-product .summary.entry-summary .quantity.buttons_added {
	display: inline-flex;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid var(--sp-color-border);
	border-radius: 12px;
	background: #fff;
	height: 48px;
	max-width: 132px;
}

body.single-product .summary.entry-summary .quantity.buttons_added .minus,
body.single-product .summary.entry-summary .quantity.buttons_added .plus {
	width: 34px;
	min-width: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--sp-color-text);
	background: #fff;
	text-decoration: none;
	flex: 0 0 34px;
	border: 0 !important;
	box-shadow: none !important;
}

body.single-product .summary.entry-summary .quantity.buttons_added .qty {
	width: 64px;
	min-width: 64px;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
	padding: 0 6px;
	height: 46px;
	flex: 1 1 auto;
}

body.single-product .summary.entry-summary .single_add_to_cart_button,
body.single-product .summary.entry-summary .dokan_request_button,
body.single-product .summary.entry-summary .spotmart-chat-trigger {
	min-height: 48px;
	height: 48px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

body.single-product .summary.entry-summary .cart > .single_add_to_cart_button,
body.single-product .summary.entry-summary .cart > .dokan_request_button {
	flex: 1 1 0;
	margin: 0 !important;
}

body.single-product .summary.entry-summary form.cart > .single_add_to_cart_button,
body.single-product .summary.entry-summary form.cart > .dokan_request_button {
	flex: 1 1 0 !important;
	width: auto !important;
	min-width: 0 !important;
	white-space: nowrap;
}

body.single-product .summary.entry-summary form.auction_form.cart {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 12px !important;
}

body.single-product .summary.entry-summary form.auction_form.cart > .quantity.buttons_added.buttons-added {
	display: inline-flex !important;
	align-items: stretch !important;
	width: 152px;
	min-width: 152px;
	height: 48px;
	border: 1px solid var(--sp-color-border);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	flex: 0 0 152px;
}

body.single-product .summary.entry-summary form.auction_form.cart .minus-bid,
body.single-product .summary.entry-summary form.auction_form.cart .plus-bid {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 46px;
	border: 0 !important;
	background: #fff;
	color: var(--sp-color-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	padding: 0;
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
}

body.single-product .summary.entry-summary form.auction_form.cart .input-text.qty.bid {
	flex: 1 1 auto;
	width: 72px !important;
	min-width: 0;
	height: 46px;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
	padding: 0 6px;
	margin: 0 !important;
}

body.single-product .summary.entry-summary form.auction_form.cart .bid_button {
	flex: 1 1 0;
	min-height: 48px;
	height: 48px;
	margin: 0 !important;
}

body.single-product .summary.entry-summary .dokan_request_button {
	background: #fff !important;
	color: var(--sp-color-primary) !important;
	border: 1px solid var(--sp-color-primary) !important;
	box-shadow: none;
}

body.single-product .summary.entry-summary .dokan_request_button:hover,
body.single-product .summary.entry-summary .dokan_request_button:focus-visible {
	background: #f3fbf5 !important;
	color: var(--sp-color-primary) !important;
}

body.single-product .summary.entry-summary .product_meta {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--sp-color-border);
}

body.single-product .summary.entry-summary .sku_wrapper {
	display: block;
	margin-bottom: 16px;
}

body.single-product .dokan-vendor-info-wrap {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

body.single-product .dokan-vendor-image img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 999px;
}

body.single-product .dokan-vendor-name h5 {
	margin: 0;
	font-size: 16px;
}

body.single-product .dokan-vendor-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table {
	margin-top: 18px;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table th {
	width: 170px;
	padding-right: 12px;
}

body.single-product .summary.entry-summary .spotmart-product-hierarchy-table th,
body.single-product .summary.entry-summary .spotmart-product-hierarchy-table td {
	padding-left: 12px;
}

body.single-product .summary.entry-summary .yith-add-to-wishlist-button-block--single {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 !important;
	border-radius: 999px;
	border: 1px solid var(--sp-color-border);
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 3;
}

body.single-product .summary.entry-summary .yith-wcwl-add-to-wishlist-button__label,
body.single-product .summary.entry-summary .yith-add-to-wishlist-button__label {
	display: none !important;
}

body.single-product .summary.entry-summary .spotmart-chat-trigger {
	width: auto;
	min-width: 140px;
	margin-top: 16px;
	vertical-align: middle;
}

body.single-product .woocommerce-tabs {
	border-radius: 18px;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

body.single-product .woocommerce-tabs.wc-tabs-wrapper {
	padding-top: 0 !important;
}

body.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	margin: 0 !important;
	padding: 8px 10px 0 !important;
	list-style: none;
	border-bottom: 1px solid var(--sp-color-border);
}

body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after,
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 {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	margin: 0 !important;
	padding: 10px 14px !important;
	border-radius: 12px 12px 0 0;
	line-height: 1.2;
}

body.single-product .woocommerce-Tabs-panel {
	margin: 0 !important;
	padding: 18px 20px 20px;
}

body.single-product .woocommerce-tabs .panel.entry-content,
body.single-product .woocommerce-tabs .wc-tab,
body.single-product .woocommerce-Tabs-panel--reviews,
body.single-product .woocommerce-Tabs-panel--seller,
body.single-product .woocommerce-Tabs-panel--more_seller_product {
	padding: 20px !important;
}

body.single-product .woocommerce-Tabs-panel--reviews {
	min-height: 0;
}

body.single-product #reviews {
	max-width: 960px;
}

body.single-product #reviews .comment-form-comment textarea,
body.single-product #review_form #respond textarea {
	min-height: 140px;
	border-radius: 12px;
	border: 1px solid var(--sp-color-border);
	padding: 12px 14px;
	background: #fff;
}

body.single-product #review_form #respond input[type="text"],
body.single-product #review_form #respond input[type="email"] {
	border-radius: 10px;
	border: 1px solid var(--sp-color-border);
	padding: 10px 12px;
}

body.single-product #review_form #respond .form-submit input,
body.single-product #review_form #respond .submit {
	min-height: 40px;
	padding: 0 18px;
	border-radius: 10px;
	background: var(--sp-color-primary);
	color: #fff;
	border: 0;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .products,
body.single-product section.related.products .products {
	display: grid;
	grid-template-columns: repeat(4, minmax(240px, 1fr));
	gap: 18px;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product h2,
body.single-product section.related.products > h2 {
	font-size: clamp(24px, 2vw, 30px);
	margin-bottom: 18px;
	color: var(--sp-color-text);
}

body.single-product .woocommerce-Tabs-panel--more_seller_product ul.products li.product,
body.single-product section.related.products ul.products li.product {
	padding: 0 0 12px !important;
	border: 1px solid #d9e4db !important;
	border-radius: 18px !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
	background: #fff !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column;
	min-height: 100%;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product ul.products li.product:hover,
body.single-product section.related.products ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12) !important;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .astra-shop-thumbnail-wrap,
body.single-product section.related.products .astra-shop-thumbnail-wrap {
	margin-bottom: 0;
	border-radius: 0;
	overflow: hidden;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .astra-shop-thumbnail-wrap img,
body.single-product section.related.products .astra-shop-thumbnail-wrap img {
	width: 100%;
	aspect-ratio: 1.333 / 1;
	object-fit: cover;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .astra-shop-summary-wrap,
body.single-product section.related.products .astra-shop-summary-wrap {
	padding: 12px !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 160px;
	flex: 1 1 auto;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .woocommerce-loop-product__title,
body.single-product section.related.products .woocommerce-loop-product__title {
	margin: 2px 0 0;
	font-size: 15px;
	line-height: 1.4;
	min-height: 2.8em;
	text-align: center;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .price,
body.single-product section.related.products .price {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	text-align: center;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .spotmart-card-action-row,
body.single-product section.related.products .spotmart-card-action-row {
	margin-top: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .spotmart-card-action-row .spotmart-card-cta,
body.single-product .woocommerce-Tabs-panel--more_seller_product .spotmart-card-action-row .dokan_request_button,
body.single-product section.related.products .spotmart-card-action-row .spotmart-card-cta,
body.single-product section.related.products .spotmart-card-action-row .dokan_request_button {
	min-height: 42px !important;
	height: 42px !important;
	border-radius: 12px !important;
	font-size: 14px;
	font-weight: 600;
	width: 100% !important;
	flex: none !important;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .spotmart-card-action-row .dokan_request_button,
body.single-product section.related.products .spotmart-card-action-row .dokan_request_button {
	background: #fff !important;
	color: var(--sp-color-primary) !important;
	border: 1px solid var(--sp-color-primary) !important;
}

body.single-product .woocommerce-Tabs-panel--more_seller_product .yith-add-to-wishlist-button-block,
body.single-product section.related.products .yith-add-to-wishlist-button-block {
	top: 12px;
	right: 12px;
}

body.single-product section.related.products {
	margin-top: 44px;
}

@media (max-width: 1200px) {
	body.single-product .spotmart-single-hero {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .spotmart-single-gallery-inner {
		position: relative;
		top: 0;
	}

	body.single-product .woocommerce-Tabs-panel--more_seller_product .products,
	body.single-product section.related.products .products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	body.single-product .summary.entry-summary .cart {
		flex-direction: column;
		align-items: stretch;
	}

	body.single-product .summary.entry-summary form.cart {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	body.single-product .summary.entry-summary .quantity {
		width: 100%;
		min-width: 0;
		flex: 0 0 auto;
	}

	body.single-product .summary.entry-summary .yith-add-to-wishlist-button-block--single {
		top: 18px;
		right: 18px;
	}

	body.single-product .woocommerce-Tabs-panel--more_seller_product .products,
	body.single-product section.related.products .products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body.single-product .site-content > .ast-container,
	body.single-product #content > .ast-container {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	body.single-product .woocommerce-Tabs-panel--more_seller_product .products,
	body.single-product section.related.products .products {
		grid-template-columns: 1fr;
	}

	body.single-product .woocommerce-Tabs-panel--more_seller_product .spotmart-card-action-row,
	body.single-product section.related.products .spotmart-card-action-row {
		grid-template-columns: 1fr;
	}

	body.single-product .summary.entry-summary .spotmart-product-hierarchy-table th,
	body.single-product .summary.entry-summary .spotmart-product-hierarchy-table td {
		display: block;
		width: 100%;
		padding-bottom: 4px;
	}

	body.single-product .summary.entry-summary .spotmart-product-hierarchy-table td {
		padding-top: 0;
		padding-bottom: 12px;
	}
}

/* ======================================================================
   16. SINGLE PRODUCT WPGS CAROUSEL FIX
   ====================================================================== */

body.single-product .spotmart-single-gallery-inner {
	padding: clamp(16px, 1.6vw, 22px);
}

body.single-product .spotmart-single-gallery-inner > .woo-product-gallery-slider,
body.single-product .spotmart-single-gallery .woo-product-gallery-slider {
	display: flex;
	flex-direction: column;
	gap: 18px;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.single-product .spotmart-single-gallery .wpgs-for {
	position: relative;
	display: block !important;
	border-radius: 16px;
	background: #ffffff;
	overflow: hidden;
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-list {
	height: auto !important;
	min-height: clamp(320px, 34vw, 460px);
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-track {
	height: auto !important;
	display: flex !important;
	align-items: stretch !important;
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-slide,
body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image {
	height: auto !important;
	min-height: clamp(320px, 34vw, 460px);
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-slide > img,
body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image > img,
body.single-product .spotmart-single-gallery .wpgs-for .slick-slide img,
body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image img {
	display: block;
	width: 100% !important;
	height: clamp(280px, 30vw, 420px) !important;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
	padding: 18px;
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 34px;
	height: 34px;
	margin-top: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

body.single-product .spotmart-single-gallery .wpgs-for .flaticon-back {
	left: 12px;
}

body.single-product .spotmart-single-gallery .wpgs-for .flaticon-right-arrow {
	right: 12px;
}

body.single-product .spotmart-single-gallery .wpgs-for .slick-dots {
	display: none !important;
}

body.single-product .spotmart-single-gallery .wpgs-nav {
	display: block !important;
	margin: 0;
	padding: 0 4px;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-list {
	margin: 0 -6px;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-track {
	display: flex !important;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-slide {
	float: none !important;
	width: auto !important;
	height: auto !important;
	margin: 0 6px;
	border: 0 !important;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	opacity: 1;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-slide img {
	width: 92px !important;
	height: 92px !important;
	max-width: none;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid #d9e4db;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-current img,
body.single-product .spotmart-single-gallery .wpgs-nav .slick-active.slick-current img {
	border-color: var(--sp-color-primary);
	box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.14);
	opacity: 1;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-active img {
	opacity: 0.92;
}

body.single-product .spotmart-single-gallery .wpgs-nav .slick-arrow {
	display: none !important;
}

@media (max-width: 1200px) {
	body.single-product .spotmart-single-gallery .wpgs-for .slick-list,
	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image {
		min-height: 360px;
	}

	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide > img,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image > img,
	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide img,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image img {
		height: 320px !important;
	}
}

@media (max-width: 640px) {
	body.single-product .spotmart-single-gallery .wpgs-for .slick-list,
	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image {
		min-height: 260px;
	}

	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide > img,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image > img,
	body.single-product .spotmart-single-gallery .wpgs-for .slick-slide img,
	body.single-product .spotmart-single-gallery .wpgs-for .woocommerce-product-gallery__image img {
		height: 240px !important;
		padding: 12px;
	}

	body.single-product .spotmart-single-gallery .wpgs-nav .slick-slide img {
		width: 72px !important;
		height: 72px !important;
	}
}

