body{
	overflow-x:hidden;
}
*{
  scrollbar-width: thin !important;
  scrollbar-color: #005BA2 #eeeeee !important;
}

.yacht-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px;
	display: grid;
    grid-template-columns: 1fr 1fr;
}

.yacht-feature-list li {
    margin-bottom: 6px;
    font-size: 16px;
    color: #222;
}
.yacht-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))!important;
    gap: 20px;
    margin: 20px 0;
}

.activity-item {
    text-align: center;
	
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.3s ease;
	width: 100%;
    max-width: 275px;
	
	
}

.activity-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.activity-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.activity-title {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.yacht-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.addon-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s ease;
	width:100%;
	max-width: 275px;
}

.addon-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.addon-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.addon-title {
    font-size: 16px;
    color: #222;
    margin: 0;
}

.similar-yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.yacht-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s ease;
	width: 100%;
}

.yacht-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.yacht-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.yacht-title {
    font-size: 16px !important;
    color: #222;
    margin: 0;
	font-weight:500 !important;
}


/*filter css*/
.yacht-filter-form {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.searchandfilter ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
	justify-content: space-between;
	
}
.searchandfilter ul li.sf-field-taxonomy-yacht-cat label{
	width: 100%;
}
.searchandfilter ul li { 
    display: flex;  
    flex-direction: column;
}
.searchandfilter li {
	flex: 1;
    min-width: auto;
}

.sf-input-select,
.sf-input-number {
    width: 100%;
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.sf-input-select:focus,
.sf-input-number:focus {
    border-color: #000;
    background: #fff;
    outline: none;
}

.sf-field-submit input[type="submit"] {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
	    margin-top: 30px;
}
.searchandfilter .sf-range-max, .searchandfilter .sf-range-min {
    max-width: 95px;
}
.sf-field-submit input[type="submit"]:hover {
    background: #333;
}

.search-filter-reset {
    display: inline-block;
    margin-left: 15px;
    color: #666;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.search-filter-reset:hover {
    color: #000;
}

/* Slider styles from noUiSlider (light adjustment to match theme) */
.meta-slider.noUi-target {
	max-width: 192px;
    margin-top: 10px;
    height: 6px;
    background: #eee;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.noUi-connect {
    background: #000;
    border-radius: 6px;
}

.noUi-handle {
    width: 16px;
    height: 16px;
    top: -5px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}


/*filter loop grid*/
.container.filter-loop-grid{
	width:1440px;
	margin:auto;
}
.yacht-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.yacht-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.yacht-image-wrapper {
    position: relative;
}

.yacht-image {
    width: 100%;
    height: auto;
    display: block;
}

.yacht-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 8px;
    width: 36px;
    height: 36px;
    text-align: center;
}

.share-icon {
    top: 10px;
    right: 10px;
}
.camera-icon {
	background: #000000;
	bottom: 10px;
	right: 10px;
}
.camera-icon svg{
	    fill: #939393;
}

.camera-icon img {
    filter: invert(1);
    width: 16px;
    height: 16px;
}

.share-icon img {
    width: 18px;
    height: 18px;
}

.yacht-content {
    padding: 20px;
}

.yacht-title {
    margin: 0 0 5px;
	font-size:24px;
	    font-weight: 700;
}

.yacht-location {
    color: #666;
    margin-bottom: 15px;
}

.yacht-specs {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
    align-items: center;
}

.yacht-details {
	margin-right: auto;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}
.yacht-details svg{
	width:14px;
}

.yacht-price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}


.yacht-type {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	padding: 6px 10px;
	border-radius: 67px;
	font-size: 13px;
	position: absolute;
	top: 20px;
	left: 20px;
}


.yacht-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 5px 7px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    border: 1px solid #ddd;
    color: #333;
    background: #fff;
}

.btn-whatsapp {
    background: #29a71a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-whatsapp img {
    width: 25px;
    height: 25px;
}
.btn.btn-telegram img {
    width: 25px;
    height: 25px;
}

.btn.btn-telegram{
	background-color:#039be5;
}
.yacht-image {
    aspect-ratio: 1 / .7;
    object-fit: cover;
}
.price-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap:30px;
}
.btn-outline:hover{
    border: 1px solid #ddd;
    color: #333;
    background: #ad8654;
}
.btn:hover {
	color:white;
}