/**
 * Shop Products Block Styles - EXACT PRODUCT SLIDER LAYOUT
 *
 * @package Genesis_Child
 * @since 1.0.0
 */

/* ========================================
 * CONTAINER & MAIN LAYOUT
 * ======================================== */

.shop-products-block {
	padding: 40px 20px;
	width: 100%;
}

.shop-products-container {
	display: flex;
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

/* ========================================
 * SIDEBAR FILTERS
 * ======================================== */

.shop-products-sidebar {
	width: 280px;
	flex-shrink: 0;
	padding: 25px;
	border-radius: 8px;
	height: fit-content;
	position: sticky;
	top: 100px;
	background: #f9f9f9;
}

.shop-sidebar-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #0073aa;
}

.shop-filter-section {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.shop-filter-section:last-of-type {
	border-bottom: none;
}

.shop-filter-title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 12px;
	color: #333;
}

.shop-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-filter-list li {
	margin-bottom: 10px;
}

.shop-filter-list label {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 8px;
	transition: all 0.3s;
	border-radius: 4px;
	font-size: 14px;
}

.shop-filter-list label:hover {
	background: rgba(0, 115, 170, 0.08);
	color: #0073aa;
}

.shop-filter-list input[type="checkbox"] {
	margin-right: 10px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #0073aa;
}

/* ========================================
 * MAIN CONTENT AREA
 * ======================================== */

.shop-products-main {
	flex: 1;
	min-width: 0;
}

/* ========================================
 * TOOLBAR
 * ======================================== */

.shop-products-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding: 15px 20px;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	flex-wrap: wrap;
	gap: 15px;
}

.shop-toolbar-left,
.shop-toolbar-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.shop-result-count {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* Sorting area */
.shop-sorting {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop-sorting-label {
	font-size: 14px;
	color: #666;
}

.shop-sorting-icon svg {
	display: block;
}

.shop-layout-switcher {
	display: flex;
	gap: 0;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

.shop-layout-btn {
	padding: 10px 16px;
	background: #fff;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #b3b3b3;
}

.shop-layout-btn svg {
	display: block;
	flex-shrink: 0;
}

.shop-layout-btn--grid svg {
	width: 20px;
	height: 20px;
}

.shop-layout-btn--list svg {
	width: 20px;
	height: 16px;
}

.shop-layout-btn-text {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: inherit;
	transition: color 0.3s;
}

.shop-layout-btn:hover {
	background: #f5f5f5;
}

.shop-layout-btn:hover:not(.active) {
	color: #0073aa;
}

.shop-layout-btn:hover:not(.active) .shop-layout-btn-text {
	color: #0073aa;
}

.shop-layout-btn.active {
	background: #fff;
	color: #4eba46;
}

.shop-layout-btn.active .shop-layout-btn-text {
	color: #4eba46;
}

.shop-layout-btn.active svg path {
	fill: #4eba46;
}

.shop-layout-btn:not(.active) svg path {
	fill: #b3b3b3;
}

.shop-layout-btn:not(.active) .shop-layout-btn-text {
	color: #b3b3b3;
}

.shop-sorting {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 1001;
}

.shop-sorting-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.shop-sorting-icon {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.shop-sorting-icon:hover {
	transform: scale(1.1);
}

.shop-sorting-icon.active {
	transform: rotate(180deg);
}

.shop-orderby {
	display: none !important;
}

/* Custom Dropdown */
.shop-sorting-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 220px;
	z-index: 1002;
	display: none !important;
	flex-direction: column;
	overflow: hidden;
}

.shop-sorting.active .shop-sorting-dropdown {
	display: flex !important;
}

.shop-sorting-option {
	display: block;
	width: 100%;
	padding: 12px 16px;
	text-align: left;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	transition: all 0.2s ease;
	border-bottom: 1px solid #f0f0f0;
}

.shop-sorting-option:last-child {
	border-bottom: none;
}

.shop-sorting-option:hover {
	background-color: #f5f5f5;
	color: #0073aa;
}

.shop-sorting-option.active {
	background-color: #0073aa;
	color: #ffffff;
	font-weight: 600;
}

/* ========================================
 * PRODUCTS GRID LAYOUT - 6 COLUMNS
 * ======================================== */

.shop-products-wrapper {
	flex: 1;
	width: 100%;
}

/* GRID VIEW - EXACTLY LIKE PRODUCT SLIDER */

.shop-products-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(6, 1fr);
}

/* Column overrides for settings */

.shop-products-grid.shop-products-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.shop-products-grid.shop-products-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.shop-products-grid.shop-products-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.shop-products-grid.shop-products-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.shop-products-grid.shop-products-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

/* LIST VIEW */

.shop-products-list-view {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ========================================
 * PRODUCT ITEM - COMPACT DESIGN
 * ======================================== */

.shop-product-item {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.shop-product-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #ccc;
}

.shop-product-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

/* ========================================
 * CORNER ICONS (TOP-LEFT) - ALWAYS VISIBLE
 * ======================================== */

.shop-product-icons-corner {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Wishlist Icon */

.shop-icon-wishlist-corner {
	display: flex;
}

.shop-icon-wishlist-corner .yith-wcwl-add-to-wishlist {
	margin: 0;
}

.shop-icon-wishlist-corner .yith-wcwl-add-button,
.shop-icon-wishlist-corner .yith-wcwl-wishlistaddedbrowse,
.shop-icon-wishlist-corner .yith-wcwl-wishlistexistsbrowse {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #e91e63;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	padding: 0;
	margin: 0;
}

.shop-icon-wishlist-corner .yith-wcwl-add-button a,
.shop-icon-wishlist-corner .yith-wcwl-wishlistaddedbrowse a,
.shop-icon-wishlist-corner .yith-wcwl-wishlistexistsbrowse a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #e91e63;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
}

.shop-icon-wishlist-corner .yith-wcwl-add-button:hover,
.shop-icon-wishlist-corner .yith-wcwl-add-button a:hover {
	background: #c2185b;
	transform: scale(1.05);
}

.shop-icon-wishlist-corner .yith-wcwl-icon {
	width: 16px;
	height: 16px;
}

.shop-icon-wishlist-corner .yith-wcwl-add-to-wishlist-button__label,
.shop-icon-wishlist-corner .feedback {
	display: none !important;
}

/* Quick View Icon */

.shop-icon-corner {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #13c2fb;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.shop-icon-corner:hover {
	background: #0ea5d6;
	transform: scale(1.05);
}

.shop-icon-corner svg {
	width: 16px;
	height: 16px;
}

/* ========================================
 * PRODUCT IMAGE
 * ======================================== */

.shop-product-image-wrapper {
	position: relative;
	overflow: hidden;
	background: #f9f9f9;
	aspect-ratio: 1 / 1;
}

.shop-product-image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.shop-product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.shop-product-item:hover .shop-product-img {
	transform: scale(1.05);
}

/* ========================================
 * PRODUCT INFO
 * ======================================== */

.shop-product-info {
	padding: 12px 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.shop-product-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.shop-product-link:hover {
	text-decoration: none;
}

.shop-product-title {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 36px;
}

.shop-product-link:hover .shop-product-title {
	color: #0073aa;
}

.shop-product-price {
	font-size: 16px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.shop-product-price .woocommerce-Price-amount {
	font-size: 16px;
	font-weight: 700;
}

/* Hide excerpt in grid view */

.shop-products-grid .shop-product-excerpt {
	display: none;
}

/* ========================================
 * ADD TO CART BUTTON (BOTTOM-RIGHT CORNER)
 * ======================================== */

.shop-cart-icon-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #0073aa;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #0073aa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	z-index: 5;
}

.shop-cart-icon-btn:hover {
	background: #0073aa;
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.shop-cart-icon-btn svg {
	width: 18px;
	height: 18px;
}

.shop-cart-icon-btn.added {
	background: #00c853;
	border-color: #00c853;
	color: #fff;
}

/* ========================================
 * LIST VIEW LAYOUT
 * ======================================== */

.shop-products-list-view .shop-product-item {
	display: flex;
}

.shop-products-list-view .shop-product-inner {
	flex-direction: row;
	width: 100%;
}

.shop-products-list-view .shop-product-image-wrapper {
	width: 200px;
	flex-shrink: 0;
}

.shop-products-list-view .shop-product-info {
	padding: 20px;
	flex: 1;
}

.shop-products-list-view .shop-product-title {
	font-size: 18px;
	-webkit-line-clamp: 3;
	min-height: auto;
}

.shop-products-list-view .shop-product-price {
	font-size: 20px;
}

.shop-products-list-view .shop-product-excerpt {
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-top: 10px;
}

/* Product Short Description - Hidden by default, shown only in list view */
.product-slider__product-short-description {
	display: none;
}

.shop-products-list-view .product-slider__product-short-description {
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-top: 8px;
	margin-bottom: 8px;
}

.shop-products-list-view .shop-cart-icon-btn {
	position: static;
	margin-top: 15px;
	width: auto;
	height: auto;
	border-radius: 6px;
	padding: 10px 20px;
	gap: 8px;
	border: none;
}

.shop-products-list-view .shop-cart-icon-btn::after {
	content: attr(aria-label);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

/* ========================================
 * LOAD MORE BUTTON
 * ======================================== */

.shop-loadmore-wrapper {
	display: block;
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e5e5e5;
	opacity: 1;
	height: auto;
	transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.shop-loadmore-wrapper.hidden {
	opacity: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: none;
	pointer-events: none;
}

.shop-loadmore-btn {
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.shop-loadmore-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.shop-loadmore-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ========================================
 * NO PRODUCTS MESSAGE
 * ======================================== */

.shop-no-products {
	text-align: center;
	padding: 60px 20px;
	font-size: 16px;
	color: #999;
	background: #f9f9f9;
	border-radius: 8px;
	border: 2px dashed #ddd;
}

/* ========================================
 * LOADING STATE
 * ======================================== */

.shop-products-loading {
	opacity: 0.6;
	pointer-events: none;
}

/* YITH Quick View Loader Overlay - Match Product Slider Block */
/* Make sure blocked buttons are positioned relatively */
.shop-products-wrapper .product-slider__product-icons .yith-wcqv-button.blocked,
[id^="product-slider-"] .product-slider__product-icons .yith-wcqv-button.blocked,
.related-products-slider .product-slider__product-icons .yith-wcqv-button.blocked,
.woocommerce ul.products li.product .yith-wcqv-button.blocked,
.woocommerce .products .product .yith-wcqv-button.blocked {
	position: relative !important;
}

/* Loader Message (Spinner) */
.shop-products-wrapper .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg,
[id^="product-slider-"] .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg,
.related-products-slider .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg,
.woocommerce ul.products li.product .yith-wcqv-button.blocked .blockMsg,
.woocommerce .products .product .yith-wcqv-button.blocked .blockMsg {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
	z-index: 10 !important;
}

/* Loader Overlay */
.shop-products-wrapper .product-slider__product-icons .yith-wcqv-button.blocked .blockOverlay,
[id^="product-slider-"] .product-slider__product-icons .yith-wcqv-button.blocked .blockOverlay,
.related-products-slider .product-slider__product-icons .yith-wcqv-button.blocked .blockOverlay,
.woocommerce ul.products li.product .yith-wcqv-button.blocked .blockOverlay,
.woocommerce .products .product .yith-wcqv-button.blocked .blockOverlay {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 50% !important;
	opacity: 0.9 !important;
	cursor: wait !important;
	z-index: 9 !important;
}

/* Spinner animation for loader */
.shop-products-wrapper .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg::before,
[id^="product-slider-"] .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg::before,
.related-products-slider .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg::before,
.woocommerce ul.products li.product .yith-wcqv-button.blocked .blockMsg::before,
.woocommerce .products .product .yith-wcqv-button.blocked .blockMsg::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #0073aa;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: block;
}

/* Ensure spinner is visible */
.shop-products-wrapper .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg img,
[id^="product-slider-"] .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg img,
.related-products-slider .product-slider__product-icons .yith-wcqv-button.blocked .blockMsg img,
.woocommerce ul.products li.product .yith-wcqv-button.blocked .blockMsg img,
.woocommerce .products .product .yith-wcqv-button.blocked .blockMsg img {
	display: block !important;
	max-width: 20px !important;
	max-height: 20px !important;
	width: auto !important;
	height: auto !important;
}

/**
* Product Slider Block Styles
*
* @package Genesis_Child
* @since 1.0.0
*/

/* Block Container */

.product-slider-block {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	}
	
.product-slider__container {
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	}
	
/* Header */

.product-slider__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
	gap: 13px;
	}
	
.product-slider__title-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 15px;
	flex: 1;
	}
	
.product-slider__title {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: #222222;
	width: fit-content;
	flex-shrink: 0;
	}
	
.product-slider__title-line {
	display: block;
	width: 100%;
	border-top: 1px dotted;
	flex-shrink: 1;
	margin-bottom: 10px;
}

/* Arrows */

.product-slider__arrows {
	display: flex;
	gap: 10px;
	align-items: center;
	}
	
.product-slider__arrows.arrow-position-top {
	margin-bottom: 0;
	}
	
.product-slider__arrows.arrow-position-bottom {
	margin-top: 20px;
	}
	
.product-slider__arrows.arrow-align-left {
	justify-content: flex-start;
}

.product-slider__arrows.arrow-align-right {
	justify-content: flex-end;
}

.product-slider__arrow {
	width: 41px;
	height: 41px;
	border: 2px solid #F6218D;
	background-color: #F6218D;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
	padding: 0;
	}
	
.product-slider__arrow:hover {
	background-color: #ffffff;
	color: #F6218D;
	}
	
.product-slider__arrow:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	}
	
/* Products Wrapper */

.product-slider__products-wrapper {
	position: relative;
		width: 100%;
	overflow: hidden;
	}
	
/* Grid View */

.product-slider__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	}
	
/* Slider View */
/*
.product-slider__slider {
	overflow: hidden;
	position: relative;
		width: 100%;
	}
	
.product-slider__slider .swiper-wrapper {
	display: flex;
	width: 100%;
	transition: transform 0.3s ease;
	will-change: transform;
	margin: 0;
	padding: 0;
	list-style: none;
	}
	
.product-slider__slider .swiper-slide {
	flex: 0 0 100%;
		width: 100%;
	height: auto;
	padding: 0 10px;
	box-sizing: border-box;
	min-width: 0;
	transition: none;
	}
*/

/* Responsive slide widths - Base styles for fallback, JavaScript will set inline styles dynamically */
/*
@media (min-width: 576px) {
	.product-slider__slider .swiper-slide {
		flex: 0 0 50%;
		width: 50%;
		max-width: 50%;
	}
}

@media (min-width: 768px) {
	.product-slider__slider .swiper-slide {
		flex: 0 0 33.333%;
		width: 33.333%;
		max-width: 33.333%;
	}
}

@media (min-width: 992px) {
	.product-slider__slider .swiper-slide {
		flex: 0 0 25%;
		width: 25%;
		max-width: 25%;
	}
}

@media (min-width: 1200px) {
	.product-slider__slider .swiper-slide {
		flex: 0 0 25%;
		width: 25%;
		max-width: 25%;
	}
}
*/
	
/* Product Items */

.product-slider__grid-item,
.swiper-slide {
	display: flex;
		flex-direction: column;
	height: auto;
	box-sizing: border-box;
}

/* Ensure slides don't shrink */

.swiper-slide {
	flex-shrink: 0;
	flex-grow: 0;
	}
	
.product-slider__product {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s ease;
	border: 1px solid #E5E7EB;
}

/*
.product-slider__product:hover {
	transform: translateY(-5px);
}
*/

.product-slider__product-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	}
	
.product-slider__product-image-wrapper {
	position: relative;
	width: 100%;
	}
	
.product-slider__product-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-slider__product-image img {
	position: relative;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	font-size: 12px;
	display: block;
}

/* Product Icons (Wishlist & View) */

.product-slider__product-icons {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 10;
	opacity: 1;
	transition: opacity 0.3s ease;
	}


