/**
 * Collection Page Styles - Figma Match
 *
 * @package Onviqa
 * @since 1.0.0
 */

/* ==========================================================================
   Body state when filters are open
   ========================================================================== */

body.filters-open {
	overflow: hidden !important;
}

/* ==========================================================================
   Collection Wrapper - Prevent overflow from 100vw elements
   ========================================================================== */

.only-collection-wrapper {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.only-collection {
	overflow-x: hidden;
}

/* ==========================================================================
   Hide Default WooCommerce Elements
   ========================================================================== */

.only-collection-page .woocommerce-products-header,
.only-collection-page .woocommerce-result-count,
.only-collection-page .woocommerce-ordering,
.only-collection-page .shop-toolbar,
.only-collection-page .shop-header,
.only-collection-page .shop-breadcrumb-area,
.only-collection-page .term-description,
.only-collection-page .woocommerce-notices-wrapper,
.only-collection-page > main > .woocommerce-container > nav.woocommerce-breadcrumb,
.only-collection-page .ksq-sticky-bar,
.only-collection-page #ksqStickyBar {
	display: none !important;
}

/* Show our custom breadcrumbs */
.only-collection__breadcrumbs .woocommerce-breadcrumb {
	display: flex !important;
}

/* Clean up default container */
.only-collection-page .woocommerce-container {
	max-width: none;
	padding: 0;
	margin: 0;
}

.only-collection-page .site-main {
	padding: 0;
}

/* ==========================================================================
   Collection Layout Container
   ========================================================================== */

.only-collection {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 24px 50px 0 50px; /* 24px top padding below trust bar */
	box-sizing: border-box;
}

/* Ensure breadcrumbs have proper margin - 24px below trust bar to breadcrumb, 24px below breadcrumb */
.only-collection .only-breadcrumb-wrapper {
	margin-bottom: 24px;
	padding: 0; /* Remove default padding as container handles spacing */
}

/* ==========================================================================
   Breadcrumbs - Uses global breadcrumbs.css styles
   ========================================================================== */

/* Show breadcrumbs on collection pages (override hide rule) */
.only-collection .only-breadcrumb-wrapper .woocommerce-breadcrumb {
	display: flex !important;
}

/* ==========================================================================
   Main Layout - Two Column Grid
   ========================================================================== */

.only-collection__layout {
	display: grid;
	grid-template-columns: 342px 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 1024px) {
	.only-collection {
		padding: 24px 30px 0 30px; /* Maintain 24px top padding on tablet */
	}
	
	.only-collection__layout {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ==========================================================================
   Mobile Toolbar - Figma Design Match
   Two buttons side by side: Filter + Sort
   ========================================================================== */

.only-collection__mobile-toolbar {
	display: none; /* Hidden on desktop */
}

.only-collection__mobile-results {
	display: none; /* Hidden on desktop */
}

/* Show mobile results on tablet/mobile */
@media (max-width: 1024px) {
	.only-collection__mobile-results {
		display: flex;
		align-items: baseline;
		gap: 6px;
		padding: 20px 16px;
		margin: 0 -16px; /* Extend to edges like toolbar */
		width: calc(100% + 32px);
	}
	
	.only-collection__mobile-results-title {
		font-family: 'Roboto Flex', sans-serif;
		font-size: 14px;
		font-weight: 400;
		color: #222222;
	}
	
	.only-collection__mobile-results-count {
		font-family: 'Roboto Flex', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color: #222222;
	}
}

.only-collection__mobile-sort-dropdown {
	display: none; /* Hidden by default */
}

@media (max-width: 1024px) {
	/* Hide desktop toolbar on tablet/mobile */
	.only-collection__toolbar--desktop {
		display: none !important;
	}
	
	/* Show mobile toolbar - FULL WIDTH, NO GAP */
	.only-collection__mobile-toolbar {
		display: flex;
		flex-direction: row;
		gap: 0;
		margin: 0 -16px; /* Negative margin to extend to edges */
		width: calc(100% + 32px); /* Full width including padding */
	}
	
	/* Mobile Filter & Sort Buttons - Figma Exact: 180px each = 360px total, 48px height */
	.only-collection__mobile-filter-btn,
	.only-collection__mobile-sort-btn {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		height: 48px;
		background: #F5F6FA;
		border: 1px solid #E6E9F0;
		border-radius: 0;
		font-family: 'Roboto Flex', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color: #222222;
		cursor: pointer;
		transition: all 0.2s ease;
		padding: 0 24px;
		position: relative;
		margin: 0;
	}
	
	/* Remove double border between buttons */
	.only-collection__mobile-sort-btn {
		border-left: none;
	}
	
	.only-collection__mobile-filter-btn:active,
	.only-collection__mobile-sort-btn:active {
		background: #ECEEF3;
	}
	
	/* Icons */
	.only-collection__mobile-filter-btn svg:first-child,
	.only-collection__mobile-sort-btn svg:first-child {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
		color: #666666;
	}
	
	/* Chevron arrow */
	.only-collection__mobile-chevron {
		width: 8px;
		height: 4px;
		margin-left: auto;
		color: #222222;
	}
	
	/* Filter badge (orange circle with count) - Figma: 20px circle */
	.only-collection__filter-badge {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20px;
		height: 20px;
		background: #FF5100;
		border-radius: 50%;
		font-family: 'Roboto Flex', sans-serif;
		font-size: 10px;
		font-weight: 600;
		line-height: 12px;
		color: #FFFFFF;
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.only-collection {
		padding: 24px 16px 0 16px; /* Maintain 24px top padding on mobile */
	}
	
	/* Adjust negative margins for mobile padding */
	.only-collection__mobile-toolbar {
		margin: 0 -16px;
		width: calc(100% + 32px);
	}
	
	/* Mobile Sort Backdrop (blur overlay) */
	.only-collection__mobile-sort-backdrop {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		z-index: 9998;
	}
	
	.only-collection__mobile-sort-backdrop.is-open {
		display: block;
	}
	
	/* Mobile Sort Dropdown */
	.only-collection__mobile-sort-dropdown {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #FFFFFF;
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
		z-index: 9999;
		display: none;
		max-height: 60vh;
		overflow-y: auto;
		padding-bottom: env(safe-area-inset-bottom, 0);
	}
	
	.only-collection__mobile-sort-dropdown.is-open {
		display: block;
	}
	
	/* Sort dropdown header */
	.only-collection__mobile-sort-header {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 18px 16px;
		border-bottom: 1px solid #E5E5E5;
	}
	
	.only-collection__mobile-sort-header span {
		font-family: 'Roboto Flex', sans-serif;
		font-size: 16px;
		font-weight: 600;
		color: #222222;
	}
	
	.only-collection__mobile-sort-option {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 20px;
		background: transparent;
		border: none;
		border-bottom: 1px solid #F0F0F0;
		font-family: 'Roboto Flex', sans-serif;
		font-size: 15px;
		font-weight: 400;
		color: #222222;
		text-align: left;
		cursor: pointer;
		transition: background 0.15s ease;
	}
	
	.only-collection__mobile-sort-option:last-child {
		border-bottom: none;
	}
	
	.only-collection__mobile-sort-option:active {
		background: #F5F5F5;
	}
	
	/* Option content with icon and label */
	.only-collection__mobile-sort-option-content {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	
	.only-collection__mobile-sort-option-content svg {
		width: 18px;
		height: 18px;
		color: #666666;
		flex-shrink: 0;
	}
	
	.only-collection__mobile-sort-option.is-active {
		font-weight: 600;
		color: #FF5100;
	}
	
	.only-collection__mobile-sort-option.is-active .only-collection__mobile-sort-option-content {
		color: #FF5100;
	}
	
	.only-collection__mobile-sort-option.is-active .only-collection__mobile-sort-option-content svg {
		color: #FF5100;
	}
	
	/* Checkmark icon for active option */
	.only-collection__mobile-sort-option > svg {
		width: 18px;
		height: 18px;
		color: #FF5100;
		flex-shrink: 0;
	}
	
	/* Title and description mobile */
	.only-collection__title {
		font-size: 24px;
		line-height: 1.3;
	}
	
	.only-collection__description {
		font-size: 13px;
		line-height: 1.5;
	}
	
	/* Header spacing */
	.only-collection__header {
		margin-bottom: 16px;
	}
}

/* Small mobile - under 480px */
@media (max-width: 480px) {
	.only-collection {
		padding: 24px 12px 0 12px; /* Maintain 24px top padding on small mobile */
	}
	
	/* Keep 0 gap, adjust margins for smaller padding */
	.only-collection__mobile-toolbar {
		gap: 0;
		margin: 0 -12px;
		width: calc(100% + 24px);
	}
	
	.only-collection__mobile-filter-btn,
	.only-collection__mobile-sort-btn {
		height: 48px; /* Keep 48px as per Figma */
		font-size: 14px;
		padding: 0 16px;
		gap: 8px;
	}
	
	.only-collection__title {
		font-size: 20px;
	}
}

/* ==========================================================================
   Filter Sidebar
   ========================================================================== */

.only-collection__sidebar {
	position: static; /* No sticky - show all filters without scroll */
	align-self: flex-start;
	max-height: none; /* Remove max-height - show all filters */
	overflow: visible; /* No scrolling - show all filters */
	padding-right: 0;
}

@media (max-width: 1024px) {
	.only-collection__sidebar {
		position: static;
		max-height: none;
		overflow: visible;
		padding-right: 0;
		width: 100%;
	}
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.only-collection__main {
	min-width: 0;
}

/* Collection Header - Title & Description */
.only-collection__header {
	margin-top: 0; /* Align with sidebar Active Filter section */
	margin-bottom: 20px;
}

.only-collection__title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	color: #1a1a1a;
	margin: 0 0 10px;
	line-height: 1.2;
}

.only-collection__description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	max-width: 700px;
}

.only-collection__description p {
	margin: 0;
}

/* ==========================================================================
   Toolbar - Count & Sort
   ========================================================================== */

.only-collection__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	margin-bottom: 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.only-collection__count {
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.only-collection__count-number {
	font-weight: 600;
	color: #1a1a1a;
}

/* Sort Dropdown - Figma Exact: 220px × 50px, 1px #1B1B20 border, 4px radius */
.only-collection__sort {
	display: flex;
	align-items: center;
	gap: 12px;
}

.only-collection__sort-label {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #666666;
}

.only-collection__sort-dropdown {
	position: relative;
}

.only-collection__sort-select {
	appearance: none;
	width: 220px;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid #1B1B20;
	border-radius: 4px;
	padding: 0 40px 0 16px;
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #1B1B20;
	cursor: pointer;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.only-collection__sort-select:hover {
	border-color: #000;
}

.only-collection__sort-select:focus {
	border-color: #1B1B20;
	outline: none;
}

.only-collection__sort-arrow {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #1B1B20;
}

.only-collection__sort-arrow svg {
	width: 10px;
	height: 5px;
}

/* Sort Direction Toggle Button - Figma: 32px × 32px */
.only-collection__sort-direction {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #222222;
	transition: all 0.2s;
	flex-shrink: 0;
	padding: 0;
}

.only-collection__sort-direction:hover {
	opacity: 0.7;
}

.only-collection__sort-direction:focus {
	outline: none;
}

.only-collection__sort-direction svg {
	width: 32px;
	height: 32px;
}

/* Default state - hide both, show based on direction */
.only-collection__sort-direction .only-sort-arrow-down,
.only-collection__sort-direction .only-sort-arrow-up {
	display: none;
}

/* ASC = Ascending = Arrow pointing UP */
.only-collection__sort-direction[data-direction="asc"] .only-sort-arrow-up {
	display: block;
}

.only-collection__sort-direction[data-direction="asc"] .only-sort-arrow-down {
	display: none;
}

/* DESC = Descending = Arrow pointing DOWN */
.only-collection__sort-direction[data-direction="desc"] .only-sort-arrow-down {
	display: block;
}

.only-collection__sort-direction[data-direction="desc"] .only-sort-arrow-up {
	display: none;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.only-collection__products {
	margin-top: 0;
}

/* Hide WooCommerce's default header and notices wrapper inside our container */
.only-collection__products > .woocommerce-products-header,
.only-collection__products > .woocommerce-notices-wrapper {
	display: none !important;
}

/* The actual product grid - targets WooCommerce's ul.products */
.only-collection__products ul.products,
.only-collection__products > ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 20px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Reset default WooCommerce list item styles */
.only-collection__products ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	list-style: none !important;
	/* Reset WooCommerce default card styles from main.css */
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.only-collection__products ul.products li.product:hover {
	border: none !important;
	box-shadow: none !important;
}

@media (max-width: 1200px) {
	.only-collection__products ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.only-collection__products ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		/* Figma: 12px horizontal gap, 20px vertical gap */
		gap: 20px 12px !important;
	}
}

/* Mobile grid - keep 2 columns */
@media (max-width: 480px) {
	.only-collection__products ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		/* Figma: 12px horizontal gap, 20px vertical gap */
		gap: 20px 12px !important;
	}
	
	/* Ensure product cards fill the space */
	.only-collection__products ul.products li.product .ksq-product-card {
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* Empty State */
.only-collection__empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	background: #f9f9f9;
	border-radius: 12px;
}

.only-collection__empty-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	color: #ccc;
}

.only-collection__empty-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.only-collection__empty-text {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   Infinite Scroll Loader
   ========================================================================== */

.only-collection__loader {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}

@media (max-width: 1200px) {
	.only-collection__loader {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.only-collection__loader {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 12px;
	}
}

.only-collection__load-trigger {
	height: 1px;
	margin-top: 40px;
}

/* ==========================================================================
   Recommended Searches - Full Width Section (Figma Match)
   ========================================================================== */

.only-collection__recommended {
	/* Full width background - expands beyond container */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	margin-top: 60px;
	margin-bottom: 0;
	padding: 40px 0;
	background: var(--color-bg-light, #F0F4F8);
}

.only-collection__recommended-inner {
	/* Centered container with max-width */
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.only-collection__recommended-title {
	/* Figma: DM Serif Display, 24px, center aligned */
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	text-align: center;
	color: #1B1B20;
	margin: 0;
	width: 100%;
}

.only-collection__recommended-list {
	/* Figma: flex wrap, centered, gap 8px 12px */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 8px 12px;
	width: 100%;
	max-width: 1440px;
}

.only-collection__recommended-link {
	/* Figma: white background, 1px #D1D4DB border, 40px radius, 12px 16px padding */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	background: #FFFFFF;
	border: 1px solid #D1D4DB;
	border-radius: 40px;
	
	/* Figma: Roboto Flex, 14px, right aligned text */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	text-align: right;
	color: #1B1B20;
	
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.only-collection__recommended-link:hover {
	border-color: var(--color-secondary, #FF5100);
	color: var(--color-secondary, #FF5100);
	background: #FFFFFF;
}

/* Remove the arrow SVG from the link */
.only-collection__recommended-link svg {
	display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.only-collection__recommended-inner {
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.only-collection__recommended {
		padding: 32px 0;
		margin-top: 40px;
	}
	
	.only-collection__recommended-inner {
		padding: 0 16px;
		gap: 20px;
	}
	
	.only-collection__recommended-title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.only-collection__recommended-list {
		gap: 8px;
	}
	
	.only-collection__recommended-link {
		font-size: 13px;
		line-height: 15px;
		padding: 10px 14px;
	}
}

/* ==========================================================================
   SEO Intro Text Block - Centered Content (Figma Match)
   ========================================================================== */

.only-collection__seo-intro {
	/* Centered container with max-width */
	max-width: 1440px;
	margin: 100px auto;
	padding: 0 50px;
}

.only-collection__seo-intro-inner {
	/* 800px centered block with 16px gap */
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.only-collection__seo-intro-title {
	/* Figma: DM Serif Display, 24px, 33px line-height, center */
	width: 100%;
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	text-align: center;
	color: #111111;
	margin: 0;
}

.only-collection__seo-intro-content {
	/* Figma: Roboto Flex, 16px, 26px line-height, center */
	width: 100%;
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #666666;
}

.only-collection__seo-intro-content p {
	margin: 0 0 16px;
}

.only-collection__seo-intro-content p:last-child {
	margin-bottom: 0;
}

/* Links in content */
.only-collection__seo-intro-content a {
	color: var(--color-secondary, #FF5100);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.only-collection__seo-intro-content a:hover {
	color: var(--color-secondary-hover, #E54900);
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.only-collection__seo-intro {
		padding: 0 30px;
		margin: 80px auto;
	}
}

@media (max-width: 768px) {
	.only-collection__seo-intro {
		padding: 0 16px;
		margin: 60px auto;
	}
	
	.only-collection__seo-intro-title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.only-collection__seo-intro-content {
		font-size: 15px;
		line-height: 24px;
	}
}

/* ==========================================================================
   SEO Image-Text Blocks - Full Width Section (Figma Match)
   ========================================================================== */

.only-collection__image-text-section {
	/* Full width background */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	margin-top: 0;
	margin-bottom: 0;
	padding: 100px 0;
	background: var(--color-bg-light, #F0F4F8);
}

.only-collection__image-text-inner {
	/* Centered container: 1140px max-width */
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
}

/* Individual Image-Text Block */
.only-image-text-block {
	width: 100%;
	display: grid;
	grid-template-columns: 560px 1fr;
	gap: 80px;
	align-items: start;
}

/* Layout variations */
.only-image-text-block--layout-left {
	/* Image on left, content on right (default) */
	grid-template-columns: 560px 1fr;
}

.only-image-text-block--layout-right {
	/* Image on right, content on left */
	grid-template-columns: 1fr 560px;
}

.only-image-text-block--layout-right .only-image-text-block__image {
	order: 2;
}

.only-image-text-block--layout-right .only-image-text-block__content {
	order: 1;
}

/* Image Container */
.only-image-text-block__image {
	width: 560px;
	height: 520px;
	border-radius: 20px;
	overflow: hidden;
	background: #D9D9D9;
	flex-shrink: 0;
}

.only-image-text-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.only-image-text-block__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
	color: #ccc;
}

/* Content Container */
.only-image-text-block__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-top: 40px;
}

/* Text Block */
.only-image-text-block__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.only-image-text-block__title {
	/* Figma: DM Serif Display, 24px, 33px line-height */
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	color: #111111;
	margin: 0;
}

.only-image-text-block__description {
	/* Figma: Roboto Flex, 14px, 22px line-height */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #666666;
}

.only-image-text-block__description p {
	margin: 0 0 12px;
}

.only-image-text-block__description p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Accordion / Blurb System
   ========================================================================== */

.only-image-text-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 500px;
}

/* Accordion Item */
.only-accordion-item {
	background: #FFFFFF;
	border: 1px solid #D1D4DB;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.only-accordion-item--active {
	/* Active state - expanded */
}

/* Accordion Trigger Button */
.only-accordion-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.only-accordion-item__trigger:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

/* First accordion item (expanded by default) */
.only-accordion-item--active .only-accordion-item__trigger {
	padding-bottom: 12px;
}

.only-accordion-item__title {
	/* Figma: Roboto Flex, 18px, 21px, weight 600 */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	color: var(--color-secondary, #FF5100);
	transition: color 0.2s ease;
}

/* Non-expanded items have darker title */
.only-accordion-item:not(.only-accordion-item--active) .only-accordion-item__title {
	font-weight: 500;
	color: #222222;
}

.only-accordion-item__icon {
	width: 12px;
	height: 8px;
	flex-shrink: 0;
	margin-left: 16px;
	color: #222222;
	transition: transform 0.3s ease;
}

.only-accordion-item--active .only-accordion-item__icon {
	transform: rotate(180deg);
}

/* Accordion Content */
.only-accordion-item__content {
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.only-accordion-item__inner {
	padding: 0 32px 24px;
	/* Figma: Roboto Flex, 18px, 24px line-height */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #444444;
}

.only-accordion-item__inner p {
	margin: 0 0 12px;
}

.only-accordion-item__inner p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
	.only-collection__image-text-inner {
		max-width: 960px;
		padding: 0 40px;
	}
	
	.only-image-text-block {
		grid-template-columns: 480px 1fr;
		gap: 60px;
	}
	
	.only-image-text-block--layout-right {
		grid-template-columns: 1fr 480px;
	}
	
	.only-image-text-block__image {
		width: 480px;
		height: 440px;
	}
}

@media (max-width: 1024px) {
	.only-collection__image-text-section {
		padding: 80px 0;
	}
	
	.only-collection__image-text-inner {
		padding: 0 30px;
		gap: 50px;
	}
	
	.only-image-text-block {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.only-image-text-block--layout-right {
		grid-template-columns: 1fr;
	}
	
	.only-image-text-block--layout-right .only-image-text-block__image {
		order: 1;
	}
	
	.only-image-text-block--layout-right .only-image-text-block__content {
		order: 2;
	}
	
	.only-image-text-block__image {
		width: 100%;
		height: 400px;
	}
	
	.only-image-text-block__content {
		padding-top: 0;
	}
}

@media (max-width: 768px) {
	.only-collection__image-text-section {
		padding: 60px 0;
	}
	
	.only-collection__image-text-inner {
		padding: 0 16px;
		gap: 40px;
	}
	
	.only-image-text-block__image {
		height: 320px;
		border-radius: 16px;
	}
	
	.only-image-text-block__title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.only-image-text-block__description {
		font-size: 13px;
		line-height: 20px;
	}
	
	.only-image-text-accordion {
		max-width: 100%;
	}
	
	.only-accordion-item__trigger {
		padding: 20px 24px;
	}
	
	.only-accordion-item--active .only-accordion-item__trigger {
		padding-bottom: 10px;
	}
	
	.only-accordion-item__title {
		font-size: 16px;
		line-height: 19px;
	}
	
	.only-accordion-item__inner {
		padding: 0 24px 20px;
		font-size: 16px;
		line-height: 22px;
	}
}

/* ==========================================================================
   Numbered List Section - Left Title + Right Numbered Items (Figma Match)
   ========================================================================== */

.only-collection__numbered-list {
	/* Centered container with max-width 1140px */
	max-width: 1140px;
	margin: 100px auto;
	padding: 0 50px;
}

.only-collection__numbered-list-inner {
	display: grid;
	grid-template-columns: 500px 1fr;
	gap: 80px;
	align-items: start;
}

/* Left Side: Intro */
.only-numbered-list__intro {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 9px; /* Align with first number badge */
}

.only-numbered-list__title {
	/* Figma: DM Serif Display, 24px, 33px line-height */
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	color: #111111;
	margin: 0;
}

.only-numbered-list__description {
	/* Figma: Roboto Flex, 14px, 22px line-height */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #666666;
}

.only-numbered-list__description p {
	margin: 0 0 12px;
}

.only-numbered-list__description p:last-child {
	margin-bottom: 0;
}

/* Right Side: Numbered Items */
.only-numbered-list__items {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-left: 64px; /* Space for numbers */
}

/* Dashed Line Connecting Numbers */
.only-numbered-list__items::before {
	content: '';
	position: absolute;
	left: 20px; /* Center of 40px number badge */
	top: 40px; /* Start below first badge */
	bottom: 60px; /* End before last badge */
	width: 0;
	border-left: 1px dashed #DDDDDD;
}

/* Individual Item */
.only-numbered-list__item {
	position: relative;
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

/* Number Badge */
.only-numbered-list__number {
	position: absolute;
	left: -64px; /* Position to the left */
	top: 0;
	width: 40px;
	height: 40px;
	background: var(--color-secondary, #FF5100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1; /* Above dashed line */
}

.only-numbered-list__number span {
	/* Figma: Helvetica Neue, 20px, weight 500 */
	font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
}

/* Item Content */
.only-numbered-list__item-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.only-numbered-list__item-title {
	/* Figma: Roboto Flex, 20px, weight 600 */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 22px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #000000;
	margin: 0;
}

.only-numbered-list__item-text {
	/* Figma: Roboto Flex, 16px, 24px line-height */
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #666666;
}

.only-numbered-list__item-text p {
	margin: 0 0 12px;
}

.only-numbered-list__item-text p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
	.only-collection__numbered-list {
		padding: 0 40px;
		margin: 80px auto;
	}
	
	.only-collection__numbered-list-inner {
		grid-template-columns: 420px 1fr;
		gap: 60px;
	}
	
	.only-numbered-list__intro {
		max-width: 420px;
	}
}

@media (max-width: 1024px) {
	.only-collection__numbered-list {
		padding: 0 30px;
		margin: 60px auto;
	}
	
	.only-collection__numbered-list-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.only-numbered-list__intro {
		max-width: 100%;
		padding-top: 0;
	}
	
	.only-numbered-list__items {
		padding-left: 64px;
	}
}

@media (max-width: 768px) {
	.only-collection__numbered-list {
		padding: 0 16px;
		margin: 40px auto;
	}
	
	.only-collection__numbered-list-inner {
		gap: 32px;
	}
	
	.only-numbered-list__title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.only-numbered-list__description {
		font-size: 13px;
		line-height: 20px;
	}
	
	.only-numbered-list__items {
		padding-left: 56px;
		gap: 32px;
	}
	
	.only-numbered-list__items::before {
		left: 18px;
		top: 36px;
		bottom: 48px;
	}
	
	.only-numbered-list__number {
		left: -56px;
		width: 36px;
		height: 36px;
	}
	
	.only-numbered-list__number span {
		font-size: 18px;
		line-height: 22px;
	}
	
	.only-numbered-list__item-title {
		font-size: 18px;
		line-height: 20px;
	}
	
	.only-numbered-list__item-text {
		font-size: 15px;
		line-height: 22px;
	}
}

/* ==========================================================================
   Title-Text-Image Block - Centered Content (Figma Match)
   ========================================================================== */

.only-collection__title-text-image {
	/* Centered container with max-width 800px */
	max-width: 800px;
	margin: 100px auto;
	padding: 0 50px;
}

.only-collection__title-text-image-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.only-title-text-image__title {
	/* Figma: DM Serif Display, 24px, 33px line-height, center */
	width: 100%;
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	text-align: center;
	color: #111111;
	margin: 0;
}

.only-title-text-image__content {
	/* Figma: Roboto Flex, 16px, 26px line-height, center */
	width: 100%;
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #666666;
}

.only-title-text-image__content p {
	margin: 0 0 16px;
}

.only-title-text-image__content p:last-child {
	margin-bottom: 0;
}

/* Links in content */
.only-title-text-image__content a {
	color: var(--color-secondary, #FF5100);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.only-title-text-image__content a:hover {
	color: var(--color-secondary-hover, #E54900);
}

.only-title-text-image__image {
	width: 100%;
	margin-top: 16px;
	border-radius: 20px;
	overflow: hidden;
	background: #f5f5f5;
}

.only-title-text-image__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
	.only-collection__title-text-image {
		padding: 0 30px;
		margin: 80px auto;
	}
}

@media (max-width: 768px) {
	.only-collection__title-text-image {
		padding: 0 16px;
		margin: 60px auto;
	}
	
	.only-collection__title-text-image-inner {
		gap: 20px;
	}
	
	.only-title-text-image__title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.only-title-text-image__content {
		font-size: 15px;
		line-height: 24px;
	}
	
	.only-title-text-image__image {
		margin-top: 12px;
		border-radius: 16px;
	}
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.only-collection--loading .only-collection__products {
	opacity: 0.5;
	pointer-events: none;
}

/* ==========================================================================
   Product Card Animations
   ========================================================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Initial page load animation for first 12 products - target li.product wrappers */
.only-collection__products ul.products li.product:nth-child(1) .ksq-product-card { animation: fadeInUp 0.4s ease 0.05s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(2) .ksq-product-card { animation: fadeInUp 0.4s ease 0.1s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(3) .ksq-product-card { animation: fadeInUp 0.4s ease 0.15s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(4) .ksq-product-card { animation: fadeInUp 0.4s ease 0.2s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(5) .ksq-product-card { animation: fadeInUp 0.4s ease 0.25s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(6) .ksq-product-card { animation: fadeInUp 0.4s ease 0.3s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(7) .ksq-product-card { animation: fadeInUp 0.4s ease 0.35s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(8) .ksq-product-card { animation: fadeInUp 0.4s ease 0.4s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(9) .ksq-product-card { animation: fadeInUp 0.4s ease 0.45s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(10) .ksq-product-card { animation: fadeInUp 0.4s ease 0.5s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(11) .ksq-product-card { animation: fadeInUp 0.4s ease 0.55s forwards; opacity: 0; }
.only-collection__products ul.products li.product:nth-child(12) .ksq-product-card { animation: fadeInUp 0.4s ease 0.6s forwards; opacity: 0; }

/* Products loaded via AJAX (13+) - no CSS animation, JS handles it */
.only-collection__products ul.products li.product:nth-child(n+13) .ksq-product-card {
	opacity: 1;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.only-faq {
	width: 100%;
	background: var(--color-bg-light, #F0F4F8);
	padding: 100px 0;
	margin: 100px 0 0 0;
}

.only-faq__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 540px 800px;
	gap: 100px;
	align-items: start;
}

.only-faq__title {
	font-family: 'DM Serif Display', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 44px;
	color: var(--color-text, #111111);
	margin: 0;
}

.only-faq__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	width: 100%;
}

.only-faq__item {
	width: 100%;
	border-top: 1px solid #D1D4DB;
	border-bottom: 1px solid #D1D4DB;
	margin-bottom: -1px; /* Prevent double borders */
}

.only-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.only-faq__question:hover {
	opacity: 0.7;
}

.only-faq__question-text {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	color: var(--color-text, #111111);
	flex: 1;
	padding-right: 20px;
}

.only-faq__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--color-text, #111111);
	transition: transform 0.3s ease;
}

.only-faq__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.only-faq__icon-horizontal,
.only-faq__icon-vertical {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When FAQ is open (active), rotate the icon and hide vertical line */
.only-faq__item--active .only-faq__icon-vertical {
	opacity: 0;
	transform: rotate(90deg);
}

.only-faq__answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.only-faq__answer[hidden] {
	display: block;
}

.only-faq__answer-content {
	padding: 0 0 24px 0;
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-text-light, #666666);
}

.only-faq__answer-content p {
	margin: 0 0 12px 0;
}

.only-faq__answer-content p:last-child {
	margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1440px) {
	.only-faq__inner {
		padding: 0 40px;
		gap: 60px;
	}
}

@media (max-width: 1024px) {
	.only-faq {
		padding: 60px 0;
		margin-top: 60px;
	}
	
	.only-faq__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 30px;
	}
	
	.only-faq__title {
		font-size: 28px;
		line-height: 38px;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.only-faq {
		padding: 50px 0;
		margin-top: 50px;
	}
	
	.only-faq__inner {
		padding: 0 16px;
		gap: 30px;
	}
	
	.only-faq__title {
		font-size: 24px;
		line-height: 33px;
	}
	
	.only-faq__question {
		padding: 20px 0;
	}
	
	.only-faq__question-text {
		font-size: 16px;
		line-height: 19px;
	}
	
	.only-faq__answer-content {
		font-size: 14px;
		line-height: 22px;
	}
}

/* ==========================================================================
   Tips Block Section
   ========================================================================== */

.only-tips-block {
	width: 100%;
	padding: 100px 0;
	margin: 0;
}

.only-tips-block__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 50px;
}

.only-tips-block__title {
	font-family: 'DM Serif Display', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 44px;
	color: var(--color-text, #111111);
	margin: 0 0 24px 0;
}

.only-tips-block__intro {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text-light, #666666);
	margin-bottom: 32px;
}

.only-tips-block__intro p {
	margin: 0 0 16px 0;
}

.only-tips-block__intro p:last-child {
	margin-bottom: 0;
}

.only-tips-block__list {
	list-style: none;
	counter-reset: tips-counter;
	padding: 0;
	margin: 0;
}

.only-tips-block__item {
	position: relative;
	padding-left: 0;
	margin-bottom: 24px;
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text-light, #666666);
	counter-increment: tips-counter;
}

.only-tips-block__item::before {
	content: counter(tips-counter) ". ";
	font-weight: 600;
	color: var(--color-text, #111111);
}

.only-tips-block__item:last-child {
	margin-bottom: 0;
}

.only-tips-block__item-title {
	font-weight: 600;
	color: var(--color-text, #111111);
}

.only-tips-block__item-description {
	display: inline;
}

/* Responsive styles */
@media (max-width: 1440px) {
	.only-tips-block__inner {
		padding: 0 40px;
	}
}

@media (max-width: 1024px) {
	.only-tips-block {
		padding: 60px 0;
	}
	
	.only-tips-block__inner {
		padding: 0 30px;
	}
	
	.only-tips-block__title {
		font-size: 28px;
		line-height: 38px;
	}
}

@media (max-width: 768px) {
	.only-tips-block {
		padding: 50px 0;
	}
	
	.only-tips-block__inner {
		padding: 0 16px;
	}
	
	.only-tips-block__title {
		font-size: 24px;
		line-height: 33px;
		margin-bottom: 20px;
	}
	
	.only-tips-block__intro {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 24px;
	}
	
	.only-tips-block__item {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   Best Designs Block Section
   ========================================================================== */

.only-best-designs-block {
	width: 100%;
	padding: 0;
	margin: 100px 0 0 0; /* 100px gap from previous block */
}

.only-best-designs-block__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 50px;
}

.only-best-designs-block__title {
	font-family: 'DM Serif Display', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 44px;
	color: var(--color-text, #111111);
	margin: 0 0 24px 0;
}

.only-best-designs-block__intro {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text-light, #666666);
	margin-bottom: 32px;
}

.only-best-designs-block__intro p {
	margin: 0 0 16px 0;
}

.only-best-designs-block__intro p:last-child {
	margin-bottom: 0;
}

.only-best-designs-block__list {
	list-style: none;
	counter-reset: designs-counter;
	padding: 0;
	margin: 0;
}

.only-best-designs-block__item {
	position: relative;
	padding-left: 0;
	margin-bottom: 24px;
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text-light, #666666);
	counter-increment: designs-counter;
}

.only-best-designs-block__item::before {
	content: counter(designs-counter) ". ";
	font-weight: 600;
	color: var(--color-text, #111111);
}

.only-best-designs-block__item:last-child {
	margin-bottom: 0;
}

.only-best-designs-block__item-title {
	font-weight: 600;
	color: var(--color-text, #111111);
}

.only-best-designs-block__item-description {
	display: inline;
}

/* Responsive styles */
@media (max-width: 1440px) {
	.only-best-designs-block__inner {
		padding: 0 40px;
	}
}

@media (max-width: 1024px) {
	.only-best-designs-block {
		margin-top: 60px;
	}
	
	.only-best-designs-block__inner {
		padding: 0 30px;
	}
	
	.only-best-designs-block__title {
		font-size: 28px;
		line-height: 38px;
	}
}

@media (max-width: 768px) {
	.only-best-designs-block {
		margin-top: 50px;
	}
	
	.only-best-designs-block__inner {
		padding: 0 16px;
	}
	
	.only-best-designs-block__title {
		font-size: 24px;
		line-height: 33px;
		margin-bottom: 20px;
	}
	
	.only-best-designs-block__intro {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 24px;
	}
	
	.only-best-designs-block__item {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 20px;
	}
}


/* ==========================================================================
   No Products Found - Empty State (Full Width when no products)
   ========================================================================== */

/* When there are no products, make the empty state full-width */
.only-collection__products .only-no-products-found {
	grid-column: 1 / -1; /* Span all columns */
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.only-no-products-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
	border-radius: 20px;
	border: 1px dashed #D1D4DB;
	min-height: 400px;
	text-align: center;
	gap: 20px;
}

.only-no-products-found__icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-secondary, #FF5100);
	border-radius: 50%;
	padding: 20px;
	margin-bottom: 8px;
}

.only-no-products-found__icon svg {
	width: 100%;
	height: 100%;
	stroke: #FFFFFF;
	stroke-width: 1.5;
}

.only-no-products-found__count {
	font-family: 'Roboto Flex', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666666;
	margin: 0;
}

.only-no-products-found__title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 38px;
	text-align: center;
	color: #111111;
	margin: 0;
	max-width: 600px;
}

/* Hide the extra sections that were in woocommerce.php - they should not show on collection pages */
.only-collection-page .only-no-products-found__bestsellers,
.only-collection-page .only-no-products-found__brands,
.only-collection-page .only-no-products-found__recently-viewed,
.only-collection-page .only-no-products-found__trust {
	display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.only-no-products-found {
		padding: 60px 24px;
		min-height: 320px;
		border-radius: 16px;
	}
	
	.only-no-products-found__icon {
		width: 64px;
		height: 64px;
		padding: 16px;
	}
	
	.only-no-products-found__count {
		font-size: 14px;
		line-height: 16px;
	}
	
	.only-no-products-found__title {
		font-size: 22px;
		line-height: 30px;
	}
}

@media (max-width: 480px) {
	.only-no-products-found {
		padding: 40px 20px;
		min-height: 280px;
	}
	
	.only-no-products-found__title {
		font-size: 20px;
		line-height: 28px;
	}
}

/* ======================================
   KLOIRA BRANDED PLACEHOLDER
   Beautiful branded placeholder for collection pages
   ====================================== */

.only-kloira-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 560 / 520;
}

.only-kloira-placeholder svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Placeholder in Image-Text Blocks */
.only-image-text-block__placeholder {
	border-radius: 12px;
}

.only-image-text-block__placeholder svg {
	border-radius: 12px;
}

/* Placeholder in Title-Text-Image Block */
.only-title-text-image__placeholder {
	max-width: 100%;
	border-radius: 20px;
}

.only-title-text-image__placeholder svg {
	border-radius: 20px;
}

/* Remove old generic placeholder styles - replaced by Kloira branded placeholder */
.only-image-text-block__image-placeholder {
	display: none; /* Deprecated - using Kloira placeholder instead */
}

/* Hover effect for placeholder */
.only-kloira-placeholder:hover svg {
	transform: scale(1.02);
	transition: transform 0.3s ease;
}

.only-kloira-placeholder svg {
	transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.only-kloira-placeholder {
		aspect-ratio: 1 / 1;
		max-height: 400px;
	}
}

@media (max-width: 480px) {
	.only-kloira-placeholder {
		max-height: 300px;
	}
}


