.loading{
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: rgba(255,255,255,0.6);
	padding: 10%;
	display: flex;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	border-radius: 10px;
	color: #333333;
}
/*Nav menu*/
.fl-node-af58n1bpexq0 .brex-mega-menu-desktop .brex-mega-menu > li > a {
	padding: 0 20px 0 20px;
	border-radius: 100px;
}

.account-cart-container {
    padding-right: 7px;
}
.custom-wishlist-icon > a,
.custom-account-cart-container > a{
	position: relative;
	display: flex;
}
.custom-wishlist-icon{
	display: flex;
	justify-content: center;
}
.custom-wishlist-icon > a > img,
.custom-account-cart-container > a > img{
	height: 40px;
}

span.wishlist-count,
span.cart-count {
    position: absolute;
    right: -8px;
    bottom: -8px;
    background: red;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
}
.custom-account-image-container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
	height: 45px;
}
.custom-account-image-container > a > img{
	max-height: 50px;
	max-width: 50px;
	border-radius: 100px;
}
/*Whislist page*/
.wishlist-wrapper{
    margin-top: 50px;
}

#wishlist-products{
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.wishlist-product img {
	max-width: 150px;
	height: auto;
	margin-bottom: 10px;
}

.wishlist-product-title {
	font-size: 16px !important;
	font-weight: 500 !important;
	margin: 10px 0 5px;
}

.wishlist-product-price {
	font-weight: bold;
	color: #3a3a3a;
}
/*Amount header*/
.custom-total-amount-container {
    display: flex;
    justify-content: flex-end;
    min-width: 100%;
    height: 40px;
    align-items: center;
    font-size: 14px;
   	color: #000000;
    font-weight: 600;
}
.custom-account-image-container > a > span {
	font-size: 14px;
    color: #000000;
    font-weight: 600;
}
/**/


.rate-review-container{
    display: flex;
    flex-direction: row;
    padding: 10px;
}
.rate-review-container a{
    text-decoration: none !important;
}

.rate-review-icon{
    font-size: 35px !important;
    line-height: 1.2 !important;
    width: 35px !important;
}
.rate-review-icon:hover{
    cursor: pointer;
    color: #f0ad4e !important;
}
.review_selected{
    color: #f0ad4e !important;
}
.rate-review-title{
    padding-right: 10px;
}
/*cm forms*/
.cm-modal-container{
    display: none;
    position: fixed;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 5%;
}
.cm-modal-content{
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 10%;
}
.cm-modal-content-close{
    position: absolute;
    right: 10%;
    top: 20%;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    transition: background .7s, color .7s;
}
.cm-modal-content-close:hover{
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    transition: background .7s, color .7s;
}
/*Front page categories section*/ 

.product-categories-grid {
    display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.product-category {
    width: 18%;
    margin: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 2px 2px 5px 1px #4f49f312;
    background: #ffffff;
    border-radius: 5px;
}
.product-category > a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}
.product-category > a > h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-align: right;
    margin-top: 15px;
    display: flex;
    min-width: 100%;
    justify-content: flex-end;
}
.product-category > a > h3 > img{
	max-width: 16px;
	margin: 0 10px;
}
.product-category > a > img{
	max-width: 250px;
	width: 100%;
}

/*Recently Viewed*/
.recently-viewed-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    width: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card h3 {
    font-size: 1em;
    margin: 10px 0;
}

.product-card .stock {
    font-size: 0.9em;
    margin-bottom: 10px;
}
.product-buttons-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.product-buttons-left,
.product-buttons-right{
    width: 45%;
}
.product-buttons-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 50px;
    padding: 0 !important;
    color: #000000 !important;
    background: transparent !important;
    border: solid 2px #5391b5 !important;
}
.product-buttons-item > img{
	width: 25px;
}

.in-stock {
    color: green;
}

.out-of-stock {
    color: red;
}
.slick-slide > .uabb-blog-posts-shadow > .uabb-blog-post-inner-wrap > .uabb-blog-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}
.uabb-post-thumbnail > a > img{
	max-height: 450px ;
	min-height: 450px;
	height: 450px;
	width: auto;
}
.home_post_silder > .fl-module-content > .uabb-module-content > .slick-list > .slick-track > .slick-slide > .uabb-blog-posts-shadow > .uabb-blog-post-inner-wrap {
		display: flex ;
		flex-direction: row;
	}
/*Featured products tabs*/
 .featured-products-tabs {
	 padding: 50px 0;
	 border-radius: 0px;
	 box-shadow: 2px 2px 5px 1px #4f49f312;
}
.fl-node-3ewkln9cfjas > .fl-col-content {
    border-style: solid;
    border-width: 0;
    background-clip: border-box;
    border-color: transparent;
    border-top-width: 0px;
}
.featured-products-tabs > .tabs-nav {
	display: flex;
	cursor: pointer;
	margin-bottom: 20px;
	border-bottom: 1px solid #4d91b9;
}
.featured-products-tabs > .tabs-nav > .tab-link{
	padding: 5px 20px;
}
.used-gear-item,
.featured-boat-card {
    width: 100%;
    max-width: 23%;
    margin: 1%;
    padding: 10px;
    border: solid 1px #f0f0f0;
    border-radius: 10px;
    height: 380px;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.used-gear-item{
	background: transparent;
}
.featured-boat-card.featured-boat-card-sidebar{
    width: 100% !important;
    min-width: 100%;
}

.featured-boat-card > a{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	height: fit-content;
}
div.boat-price-image,
div.boat-price-image{
	height: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
}
img.used-gear-image{
	max-height: 175px;
}
h3.used-gear-title,
h3.boat-price-title{
	margin: 20px 0 0 0 !important;
	font-weight: 500 !important;
	font-size: 18px;
}

a.used-gear-view{
	background-color: #5391b5 !important;
    color: #fff;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 12px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 100px !important;
	font-size: 16px;
}

h4.boat-price-sub-title{
	margin: 0 0 10px 0 !important;
	font-weight: 500 !important;
	text-transform: capitalize !important;
}
h5.boat-price-brand {
    margin-bottom: 0;
    font-weight: 500;
}
h5.boat-price-brand > a{
	font-weight: 500 !important;
    color: #5391b5 !important;
}
.boat-price-amount{
	color: #f79407;
}
.tab-link.active {
	font-weight: bold;
	color: #0073aa;
}

.tab-content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.shop-products-grid-front > .shop-product-item {
	width: calc(18% - 5px);
}
.shop-products-grid-front > .shop-product-item > a > h3{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-align: center;
    margin-top: 15px;
    display: flex;
    min-width: 100%;
    justify-content: center;
}
.shop-product-item_image {
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}
/*Featured products*/
.product-featured-grid {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.product-featured {
    width: 16%;
    margin: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 2px 2px 5px 1px #4f49f312;
    flex-direction: column;
    justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}
.product-featured > a > h3{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-align: center;
    margin-top: 15px;
    display: flex;
    min-width: 100%;
    
}
.rvpw-recently-view > h2{
	display: none !important;
}
/* Custom single plugin */
/*Single Product Variations*/
.custom-product-template-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
	flex-direction: row;
	flex-wrap: wrap;
}
tr.group_table_label_container {
	border-top: solid 1px #dddddd;
}
table.group_table > tbody > tr > td.label{
	width: 15em !important; 
}
.left-column,
.right-column{
	padding: 20px;
}
.left-column{
	width: 40%;
}
.right-column {
    width: 55%;
}
.product-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    /* border: 1px solid #ddd; */
    margin-bottom: 10px;
    padding: 20px;
    max-height: 400px;
    display: flex;
    justify-content: center;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gallery-thumbs > img {
    width: 22%;
}

.thumb-hover {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 2px;
    transition: border-color 0.3s;
}

.thumb-hover:hover {
    border-color: #0073aa;
}

/* ====== Product Info ====== */
.product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.product-sku,
.product-stock {
    font-size: 14px;
    color: #666;
}

/* ====== Variations Table ====== */
.bulk-variations-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bulk-variations-table th,
.bulk-variations-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.bulk-variations-table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.variation-qty-input {
    width: 60px;
    text-align: center;
    padding: 5px;
}

/* ====== Tabs ====== */
.product-tabs-container {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
	margin-left: 0;
}

.tab-link {
    cursor: pointer;
    padding: 8px 25px;
    font-weight: 400;
    position: relative;
    color: #333333;
    background: #ffffff;
    border-top: solid 1px #333333;
    border-left: solid 1px #333333;
    border-right: solid 1px #333333;
    border-radius: 8px 8px 0px 0px;
    min-height: 40px;
    transition: all 0.7s;
}

.tab-link.active {
    border-bottom: 2px solid #064971;
    color: #ffffff;
	font-weight: 500;
	background: #064971;
	transition: all 0.7s;
    color: #ffffff !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
/***********************
 * Separator
* *********************/
.separator-row{
	border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #cccccc;
    max-width: 100%;
    margin: auto;
	margin-top: 50px;
	margin-bottom: 20px;
}
/* ====== Related Products ====== */
h2.sub-title{
	font-family: Montserrat, sans-serif;
    font-weight: 400 !important;
	font-size: 2.125rem;
	line-height: 1.3em;
}
.related-products-row {
    margin: 50px 0 0 0;
}
.used-gear-list,
.featured-boats-grid {
    display: flex;
    flex-wrap: wrap;
}

.related-products-container{
    background-color: #f4f5f5;
    border-style: none;
    border-width: 0;
    background-clip: border-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.related-products-section {
    margin-top: 40px;
}

.related-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
	margin-left: 0;
}

.related-product-item {
    width: calc(15% - 5px);
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.related-product-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.related-product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.related-product-item h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

.related-product-item p {
    font-weight: bold;
    color: #333;
}
/*Product stock*/
.special-order-message {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 8px;
    background-color: #fef3c7; /* Un amarillo pastel suave */
    color: #92400e; /* Marrón/naranja oscuro */
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
}

.special-order-btn {
    background-color: #fef3c7; /* Amarillo pastel */
    color: #92400e; /* Marrón-naranja oscuro */
    font-weight: bold;
    border: 2px solid #fcd34d; /* Borde amarillo un poquito más fuerte */
}

.special-order-btn:hover {
    background-color: #fde68a; /* Un poquito más oscuro en hover */
    color: #78350f;
}
.special-order-message {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 8px;
    background-color: #fef3c7; /* Amarillo pastel */
    color: #92400e; /* Marrón-naranja oscuro */
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
}
/*Product short description*/
.view-more-link {
    color: #5391b5;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 5px;
    cursor: pointer;
}

.view-more-link:hover {
    color: #2c5a7b;
}


/*Notice*/
.add-to-cart-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    font-size: 16px;
    display: none;
}
/*Shop*/
.shop-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
	position: relative;
}
.shop-products-grid > p{
	color: #ffffff;
}
.wishlist-product,
.shop-product-item {
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 220px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	max-height: 500px;
}

.shop-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.shop-product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.shop-product-price,
.shop-product-title,
h3.shop-product-title{
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
    color: #333333 !important;
}
.ajax_add_to_cart,
.shop-product-add-to-cart .button,
a.button.product_type_grouped,
.filter-group > button[type="submit"] {
    background-color: #5391b5 !important;
    color: #fff;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 100px !important;
}

.shop-product-add-to-cart .button:hover {
    background-color: #417ea4;
}
.others-pagination,
.shop-pagination {
    margin-top: 40px;
    text-align: center;
    padding: 5px 30px;
    width: fit-content;
    margin: auto;
    border-radius: 50px;
    color: #ffffff !important;
}
a.pagination-link,
a.page-numbers {
    color: #000000;
    padding: 2px 10px;
	border-radius: 5px;
	border: solid 1px; 
}
a.pagination-link.current,
span.page-numbers.current {
    color: #ffffff;
	background: #000;
    padding: 2px 10px;
	border-radius: 5px;
	border: solid 1px;
}
/****************************
 * Shop Controller
 ****************************/
main.site-main.custom-shop-page {
    width: 100%;
    padding: 50px 20px;
}
.shop-page-container{
	padding: 50px 20px;
}
.shop-page-title {
    padding: 20px;
    width: 100%;
    text-align: center;
}

.shop-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.category-card {
    width: 31%;
    height: 300px;
}

.category-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%; /* Ocupa toda la tarjeta */
}

.category-image {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-image:hover {
    transform: scale(1.02);
}

.category-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #ffffff !important;
}

.category-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 10px 0 10px;
    color: #ffffff;
    text-shadow: 2px 0px 7px #000000;
}

.arrow {
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.2s ease;
    margin-right: 10px;
}

.category-card:hover .arrow {
    transform: translateX(5px);
}

/**********************
 * Shop Layout & Filter
************************/

.shop-page-layout {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
    max-width: 1440px;
    margin: auto;
}

/* Sidebar (filtros) */
.shop-sidebar {
    width: 25%;
    max-width: 300px;
    min-width: 200px;
    flex-shrink: 0;
}

/* Sidebar oculto */
.shop-sidebar.hidden {
    display: none;
}

/* Sidebar visible con fade-in animado */
.shop-sidebar.visible {
    display: block; /* Puedes cambiar a flex si lo necesitas */
    animation: fadeInSidebar 0.3s ease-in-out;
}

/* Contenedor principal de productos o categorías */
.shop-main-content {
    flex: 1;
    width: 100%; /* Se adapta según sidebar */
}

/* Animación de aparición del filtro */
@keyframes fadeInSidebar {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.price-range-values {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}
/******
 * Checkout
 *******/
body:not(.cartflows-canvas):not(.cartflows-default):not(.cartflows-instant-checkout) .woocommerce form .form-row.ast-animate-input .select2-container--default .select2-selection--single{
	height: 60px !important;
}
/******
 * Brands
 *******/
/*Terms buttons*/
.other-brand-terms-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
	margin: 0px 0px 50px 0px;
}
.other-brand-terms-item {
    background: #F5A623;
    padding: 5px 20px;
    border-radius: 8px;
    color: #ffffff !important;
	cursor: pointer;
}

/* Filtro: Selects múltiples bonitos */
.others-filter-form select[multiple],
.brand-filter-form select[multiple],
.shop-filters-form select[multiple] {
    width: 100%;
    height: 50px; /* Puedes ajustar esta altura */
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    overflow-y: auto;
    outline: none;
    appearance: none;
	overflow-y: scroll;
}
.others-filter-form select[multiple]:focus,
.brand-filter-form select[multiple]:focus,
.shop-filters-form select[multiple]:focus {
    border-color: #5391b5;
    box-shadow: 0 0 0 2px rgba(83, 145, 181, 0.2);
}
.others-filter-form select[multiple],
.brand-filter-form select[multiple],
.shop-filters-form select[multiple] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none; /* Por si algún navegador mete una flecha por imagen */
}
/* Opciones dentro del select */
.others-filter-form select option,
.brand-filter-form select option,
.shop-filters-form select option {
    padding: 5px;
}


/**********************
 * Filter Form
************************/
.others-filter-form,
.brand-filter-form,
.shop-filters-form {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}
.others-filter-form .filter-group,
.brand-filter-form .filter-group,
.shop-filters-form .filter-group {
    margin-bottom: 25px;
}

.others-filter-form label,
.brand-filter-form label,
.shop-filters-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.others-filter-form input[type="number"] ,
.brand-filter-form input[type="number"] ,
.shop-filters-form input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.others-filter-form input[type="checkbox"],
.brand-filter-form input[type="checkbox"],
.shop-filters-form input[type="checkbox"] {
    margin-right: 5px;
}
.others-filter-form button[type="submit"],
.brand-filter-form button[type="submit"],
.shop-filters-form button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5391b5;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.others-filter-form button[type="submit"]:hover,
.brand-filter-form button[type="submit"]:hover,
.shop-filters-form button[type="submit"]:hover {
    background-color: #417796;
}
.noUi-connect {
    background: #5491b5 !important;
}
.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
    font-size: 12px;
    padding: 0 10px;
    max-height: 25px;
    display: flex;
    justify-content: normal;
    align-items: center;
    border-radius: 50px;
}
/*********************
* Archives
**********************/
.shop-page-description{
	max-width: 1440px;
	margin: auto;
	
}
.shop-page-description > p{
	font-size: 20px;
    line-height: 1.7;
    font-weight: 500;
    font-family: 'Montserrat';
}
/* FILTER RESPONSIVE AJUSTES */

/*********************
* Search
**********************/
.autocomplete-results {
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 4px;
    padding: 0;
    list-style: none;
    display: none;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.autocomplete-item img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.autocomplete-item span {
    font-size: 14px;
    color: #333;
}

input#product-search-input {
    color: #000000;
    max-height: 50px;
    width: 100%;
    border-radius: 50px;
    padding: 0 20px;
    min-height: 45px;
    font-size: 16px;
    font-weight: 400 !important;
}
/*Sell your boat here*/
.radio-button-container {
    display: flex;
    flex-wrap: wrap;
}
.radio-button-container > label{
	min-width: 150px;
}

/*Featured ads*/
.sailboat-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sailboat-gallery-item {
    width: 22%;
}

.sailboat-gallery-item.full {
    width: 100%;
}

.sailboat-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.sailboat-gallery-item img:hover {
    transform: scale(1.02);
}
/**/
.sailboat-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sailboat-lightbox-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
}

.sailboat-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    width: 90%;
    background: transparent;
}

#sailboat-lightbox-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 90vh;
    margin: 0 auto;
}

.sailboat-lightbox-close,
.sailboat-lightbox-prev,
.sailboat-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
    z-index: 3;
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.sailboat-lightbox-close {
    top: 10px;
    right: 10px;
    transform: none;
}

.sailboat-lightbox-prev {
    left: -40px;
}

.sailboat-lightbox-next {
    right: -40px;
}

.hidden {
    display: none !important;
}
/*Filter by brand*/
.brand-section-container {
    display: flex;
    flex-wrap: wrap;
}
.brand-section-container > .shop-sidebar {
	width: 18%;
}
.brand-section-container > .shop-products-grid{
	width: 80%;
	padding: 0 10px !important;
}
.brand-section-container > .shop-products-grid > .shop-pagination{
	width: 100%;
}
/*Monday Mailer*/
/*Backend*/
div#selected-products-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*Monday mailer classified list*/
div.rtcl {
    max-width: 1440px;
    margin: auto;
}

/* Hasta 1024px: sidebar aún visible a la izquierda */
@media (max-width: 1024px) {
    .shop-sidebar {
        width: 30%;
    }
    .shop-main-content {
        width: 70%;
    }
}

/* Hasta 768px: Sidebar se apila debajo del título o arriba del contenido */
@media (max-width: 768px) {
	.featured-boat-card{
		max-width: 48%;
	}
	h2.sub-title{
		padding-left: 20px;
	}
	.sailboat-lightbox-content {
        width: 70vw;
    }
    .sailboat-lightbox-prev,
    .sailboat-lightbox-next {
        top: calc(50% - 20px);
        font-size: 24px;
        padding: 6px 10px;
    }
	.sailboat-gallery-item {
        width: 48%;
    }
    .sailboat-gallery-item.full {
        width: 100%;
    }
	.custom-product-template-wrapper > .left-column,
	.custom-product-template-wrapper > .right-column,
	.product-tabs-wrapper{
		width: 100%;
		padding: 0 20px;
	}
    .shop-page-layout {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .shop-main-content {
        width: 100%;
    }
	.others-filter-form,
	.brand-filter-form,
    .shop-filters-form {
        padding: 15px;
    }
	.others-filter-form .filter-group,
	.brand-filter-form .filter-group,
    .shop-filters-form .filter-group {
        margin-bottom: 20px;
    }
	.others-filter-form button[type="submit"],
	.brand-filter-form button[type="submit"],
    .shop-filters-form button[type="submit"] {
        width: 100%;
    }
	
	.shop-products-grid {
    	display: flex;
		gap: 5px;
		padding: 0px;
        justify-content: flex-start;
	}
	
	.shop-product-item {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
		min-width: 48%;
    }
	
	.shop-products-grid-front > .shop-product-item,
	.product-category,
	.related-product-item {
		width: calc(48% - 5px);
	}
	.category-card {
		width: 46%;
		height: 200px;
	}
	.featured-products-tabs {
		padding: 20px;
	}
	.featured-products-tabs > ul.tabs-nav {
		display: flex;
		overflow-x: scroll;
	}
	.featured-products-tabs > ul.tabs-nav > li.tab-link {
		text-align: center;
		min-width: 160px;
	}
	.brand-section-container > .shop-sidebar {
		width: 100%;
	}
	.brand-section-container > .shop-products-grid{
		width: 100%;
	}
	.brand-section-container > .shop-products-grid > .shop-pagination{
		width: 100%;
	}
}

/* Hasta 480px: filtros y productos en una sola columna */
@media (max-width: 480px) {
	.sailboat-gallery-item {
        width: 100%;
    }
	.shop-product-item {
        flex: 1 1 48%;
        max-width: 50%;
    }
	.others-filter-form input[type="number"],
	.brand-filter-form input[type="number"],
    .shop-filters-form input[type="number"] {
        padding: 6px;
    }
	.others-filter-form label,
	.brand-filter-form label ,
    .shop-filters-form label {
        font-size: 14px;
    }
	.others-filter-form button[type="submit"],
	.brand-filter-form button[type="submit"],
    .shop-filters-form button[type="submit"] {
        font-size: 15px;
    }
}
