/**
 * Custom Yacht Manager - Improved Frontend CSS
 * Professional styling with RSY Yachts color scheme
 * Navy Blue (#000000) and Gold (#d4af37) theme
 */

/* ==================== COLOR VARIABLES ==================== */
:root {
    --navy-primary: #000000;
    --navy-dark: #000000;
    --gold-accent: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --ocean-blue: #000000;
    --border-color: #e0e0e0;
}

/* ==================== YACHT CARD STYLES ==================== */
.yacht-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 61, 92, 0.08);
}

.yacht-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 61, 92, 0.2);
    border-color: var(--gold-accent);
}

.yacht-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.yacht-card:hover .yacht-image img {
    transform: scale(1.08);
}

.yacht-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 14px;
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
}

.yacht-content {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Yacht Type Badge */
.yacht-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.yacht-header h3 {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.2px;
    margin: 0;
    text-transform: uppercase;
    background: rgba(0, 61, 92, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating .star {
    color: var(--gold-accent);
    font-size: 13px;
}

/* Yacht Title - FIXED: Only one title now */
.yacht-title-row {
    margin-bottom: 16px;
}

.yacht-title-row h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 8px 0;
}

/* Price moved to separate section */
.yacht-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.yacht-price .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-accent);
}

.yacht-price .period {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yacht Info */
.yacht-info {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.yacht-info .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.yacht-info svg {
    opacity: 0.7;
    color: var(--navy-primary);
}

/* Buttons - Extra Compact with Rounded Style */
.yacht-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-outline {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid var(--navy-primary);
    background: transparent;
    color: #000000;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    flex: 1;
    padding: 10px 20px;
    background: var(--gold-accent);
    color: #000000;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #f0c14b;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ==================== GRID LAYOUTS ==================== */
.yachts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

@media (max-width: 1200px) {
    .yachts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ==================== PROFESSIONAL FILTERS ==================== */
.yacht-filters-wrapper {
    margin-bottom: 40px;
}

.yacht-filters {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 3px solid #d4af37;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.yacht-filters::before {
    display: none;
}

.filter-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

.filter-item label {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-item input[type="text"],
.filter-item input[type="number"],
.filter-item select {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.filter-item input:focus,
.filter-item select:focus {
    border-color: var(--gold-accent);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-item input::placeholder {
    color: #999;
}

.filter-price {
    grid-column: span 2;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-inputs .separator {
    color: var(--white);
    font-weight: 600;
}

/* Filter Actions */
.filter-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-actions button {
    padding: 13px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-actions .btn-primary {
    background: var(--gold-accent);
    color: var(--navy-dark);
    border: none;
}

.filter-actions .btn-primary:hover {
    background: #f0c14b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.filter-actions .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.filter-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ==================== LOAD MORE BUTTON ==================== */
.yacht-load-more-wrapper {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.yacht-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--navy-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.2);
}

.yacht-load-more:hover:not(:disabled) {
    background: var(--gold-accent);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.yacht-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yacht-load-more.loading {
    opacity: 0.7;
    pointer-events: none;
}

.yacht-load-more svg {
    transition: transform 0.3s ease;
}

.yacht-load-more:hover:not(:disabled) svg {
    transform: translateY(3px);
}

/* ==================== LOADING SPINNER ==================== */
.yacht-loading {
    text-align: center;
    padding: 50px;
}

.spinner {
    border: 4px solid rgba(0, 61, 92, 0.1);
    border-top: 4px solid var(--gold-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.yacht-loading p {
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== NO RESULTS ==================== */
.no-yachts {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 20px 0;
}

.no-yachts p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* ==================== SINGLE YACHT PAGE ==================== */
.yacht-detail-page {
    padding: 40px 0;
}

.yacht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.yacht-hero {
    margin-bottom: 60px;
}

.yacht-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 61, 92, 0.15);
}

.yacht-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.yacht-hero-content {
    text-align: center;
}

.yacht-meta-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.yacht-badge {
    background: var(--navy-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yacht-title {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--navy-primary);
}

.yacht-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.yacht-price-hero {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-accent);
    margin: 20px 0;
}

.yacht-price-hero .price-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.yacht-actions {
    margin-top: 30px;
}

.yacht-section {
    margin-bottom: 60px;
}

.yacht-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--navy-primary);
}

.yacht-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.spec-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.spec-label {
    font-weight: 600;
    color: var(--text-light);
}

.spec-value {
    font-weight: 700;
    color: var(--navy-primary);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.features-list svg {
    color: var(--gold-accent);
    flex-shrink: 0;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .yachts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-price {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .yachts-grid {
        grid-template-columns: 1fr;
    }
    
    .yacht-filters {
        padding: 25px 20px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .filter-price {
        grid-column: span 1;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-actions button {
        width: 100%;
    }
    
    .yacht-buttons {
        flex-direction: column;
    }
    
    .yacht-title {
        font-size: 32px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .yacht-card {
        margin: 0 10px;
    }
    
    .yacht-load-more {
        width: 100%;
        padding: 15px 20px;
    }
}

/* ==================== PRICE SLIDER SPECIFIC STYLES ==================== */
.price-slider-wrapper {
    position: relative;
}

/* BLACK SLIDER TRACK */
.price-slider-track {
    height: 8px;
    background: #000000;
    border-radius: 4px;
    position: relative;
    margin: 20px 0;
    border: 2px solid #d4af37;
}

/* GOLD ACTIVE RANGE */
.price-slider-range {
    position: absolute;
    height: 100%;
    background: #d4af37;
    border-radius: 4px;
}

.price-range-input {
    position: absolute;
    width: 100%;
    height: 8px;
    top: 20px;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

/* BLACK THUMB WITH GOLD BORDER */
.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    border: 3px solid #d4af37;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.5);
}

.price-range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    border: 3px solid #d4af37;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.5);
}

.price-inputs-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.price-input-box {
    flex: 1;
}

.price-input-box label {
    font-size: 12px;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    pointer-events: none;
}

.price-input-box input {
    padding-left: 42px !important;
}

.price-separator {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
}

.price-display-text {
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    background: #000000;
    border: 2px solid #d4af37;
    border-radius: 8px;
}

#price-display {
    font-size: 18px;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 1px;
}

/* ==================== ENHANCED DETAIL PAGE STYLES ==================== */

/* Breadcrumb */
.yacht-breadcrumb {
    padding: 15px 0;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.yacht-breadcrumb a {
    color: var(--navy-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.yacht-breadcrumb a:hover {
    color: var(--gold-accent);
}

.yacht-breadcrumb .separator {
    margin: 0 5px;
    color: #ccc;
}

/* Enhanced Hero Section */
.yacht-hero-enhanced {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Gallery Main */
.yacht-gallery-main {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 61, 92, 0.1);
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--light-gray);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--navy-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.fullscreen-btn:hover {
    background: var(--navy-primary);
    color: white;
}

/* Thumbnail Strip */
.thumbnail-strip {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    background: var(--white);
}

.thumbnail-strip::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--navy-primary);
    border-radius: 3px;
}

.thumb-item {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumb-item:hover {
    border-color: var(--gold-accent);
}

.thumb-item.active {
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 1px var(--navy-primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Card */
.yacht-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 61, 92, 0.1);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.yacht-header .yacht-badge {
    display: inline-block;
    background: var(--navy-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.yacht-info-card .yacht-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-primary);
    margin: 10px 0 15px;
    line-height: 1.3;
}

.yacht-info-card .yacht-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item svg {
    color: var(--navy-primary);
    flex-shrink: 0;
}

.stat-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Price Section */
.price-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-gray);
}

.price-box {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-primary);
}

.price-amount .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-primary);
}

.price-amount .period {
    font-size: 14px;
    color: var(--text-light);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 10px;
}

.btn-book-now {
    flex: 1;
    background: var(--navy-primary);
    color: white;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid var(--navy-primary);
}

.btn-book-now:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.3);
}

.btn-share {
    background: white;
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share:hover {
    border-color: var(--navy-primary);
    background: var(--light-gray);
}

/* Tabs */
.yacht-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--navy-primary);
}

.tab-btn.active {
    color: var(--navy-primary);
    border-bottom-color: var(--navy-primary);
}

/* Tab Content */
.tab-content-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 61, 92, 0.08);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 25px;
}

.description-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.description-text p {
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy-primary);
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Specifications Grid */
.specs-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.spec-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--navy-primary);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-primary);
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-info .spec-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-info .spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--gold-accent);
    color: white;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

/* No Images Placeholder */
.no-images {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: var(--light-gray);
    color: var(--text-light);
    font-size: 16px;
}

.no-features {
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
    padding: 40px 20px;
}

/* ==================== RESPONSIVE ENHANCEMENTS ==================== */
@media (max-width: 1024px) {
    .yacht-hero-enhanced {
        grid-template-columns: 1fr;
    }
    
    .yacht-info-card {
        position: static;
    }
    
    .main-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .tab-content-wrapper {
        padding: 25px 20px;
    }
    
    .yacht-tabs {
        overflow-x: auto;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .yacht-info-card .yacht-title {
        font-size: 22px;
    }
    
    .price-amount .amount {
        font-size: 28px;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 10px;
    }
}
/* ========================================
   YACHT DETAIL PAGE - BLACK/WHITE/GOLD
   Complete Redesign with CDN Images
   ======================================== */

/* Page Container */
.yacht-detail-page-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
}

/* ========== GALLERY SECTION ========== */

.yacht-gallery-section {
    margin-bottom: 50px;
}

.main-gallery {
    position: relative;
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-slides {
    position: relative;
    min-height: 600px;
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #d4af37;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.nav-arrow:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow img {
    width: 30px;
    height: 30px;
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.thumbnail {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    min-width: 120px;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #d4af37;
}

.thumbnail img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    display: block;
}

.thumbnail:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

/* ========== CONTENT CONTAINER ========== */

.yacht-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.yacht-header-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #d4af37;
}

.yacht-header-section h1 {
    color: #000000;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.yacht-header-section .location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.yacht-header-section .location img {
    width: 20px;
    height: 20px;
}

/* ========== SHARE SECTION ========== */

.share-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    margin: 30px 0;
}

.share-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
}

.share-label img {
    width: 20px;
    height: 20px;
}

.share-icons {
    display: flex;
    gap: 12px;
}

.share-icons a,
.share-icons button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.share-icons a:hover,
.share-icons button:hover {
    background: #d4af37;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-icons img {
    width: 32px;
    height: 32px;
}

/* ========== PRICE BOX ========== */

.price-box {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 4px solid #d4af37;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-label {
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.price-amount .currency {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
}

.price-amount .amount {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
}

.price-period {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 600;
}

/* ========== SPECIFICATIONS ========== */

.specifications-section {
    margin: 50px 0;
}

.specifications-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4af37;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.spec-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-value {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.spec-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ========== DESCRIPTION ========== */

.description-section {
    margin: 50px 0;
}

.description-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.description-section p {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========== BOOKING BUTTONS ========== */

.booking-buttons {
    display: flex;
    gap: 15px;
    margin: 50px 0;
}

.btn-call,
.btn-whatsapp,
.btn-back {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-call {
    background: linear-gradient(135deg, #d4af37, #f0c14b);
    color: #000000;
    border: 3px solid #d4af37;
}

.btn-call:hover {
    background: #000000;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 3px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-back {
    background: #ffffff;
    color: #000000;
    border: 3px solid #000000;
}

.btn-back:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-call img,
.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

/* ========== END WIDGETS ========== */

.yacht-end-widgets {
    margin-top: 80px;
}

.yacht-end-widgets > * {
    margin-bottom: 50px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yacht-detail-page-new {
        padding: 20px 15px;
    }
    
    .gallery-slide img {
        height: 400px;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .yacht-header-section h1 {
        font-size: 2rem;
    }
    
    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-amount .amount {
        font-size: 2.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .yacht-end-widgets {
        margin-top: 50px;
    }
}

/* ========================================
   COPY BUTTON FIX & ICON IMPROVEMENTS
   ======================================== */

/* Copy Button Specific */
.share-icons button.copy-btn {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    cursor: pointer;
}

.share-icons button.copy-btn:hover {
    background: #d4af37;
    border-color: #000000;
}

.share-icons button.copy-btn img {
    width: 32px;
    height: 32px;
    pointer-events: none;
}

/* Copy Success Animation */
@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.copy-success {
    animation: copySuccess 0.3s ease;
}

/* Ensure all share icons are same size */
.share-icons a img,
.share-icons button img {
    width: 32px !important;
    height: 32px !important;
}

/* ========================================
   YACHT FEATURES SECTION
   ======================================== */

.yacht-features-section {
    margin: 50px 0;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 3px solid #d4af37;
}

.yacht-features-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-item img {
    width: 48px;
    height: 48px;
}

.feature-item span {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Features Grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .yacht-features-section {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 10px;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item img {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   INCLUDED SECTION - MINIMALISTIC
   ======================================== */

.included-section {
    margin: 50px 0;
    padding: 40px 35px;
    background: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 10px;
}

.included-section h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #d4af37;
    transition: all 0.2s ease;
}

.included-item:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.included-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.included-item span {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .included-section {
        padding: 30px 20px;
    }
    
    .included-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .included-item {
        padding: 10px 12px;
    }
    
    .included-item span {
        font-size: 0.9rem;
    }
}

/* ========================================
   SINGLE YACHT EVENT PACKAGES + DECORATION
   v2.3.8 - Black/White with subtle gold
   ======================================== */

.rsy-single-event-packages,
.rsy-single-decoration-widget {
    margin: 70px 0;
    padding: 48px 38px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    overflow: hidden;
}

.rsy-single-event-packages {
    background: #050505;
    color: #ffffff;
    border-color: #181818;
}

.rsy-single-section-head,
.rsy-single-decoration-header {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.rsy-single-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(201,169,97,0.32);
    border-radius: 999px;
    color: #c9a961;
    background: rgba(201,169,97,0.07);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rsy-single-section-head h2,
.rsy-single-decoration-header h2 {
    margin: 0 0 14px;
    color: #000000;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.15;
    font-weight: 900;
}

.rsy-single-event-packages .rsy-single-section-head h2 {
    color: #ffffff;
}

.rsy-single-section-head p,
.rsy-single-decoration-header p,
.rsy-single-decoration-copy p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 auto 12px;
}

.rsy-single-event-packages .rsy-single-section-head p {
    color: #cfcfcf;
}

.rsy-single-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rsy-single-package-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    background: #101010;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all .28s ease;
}

.rsy-single-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,97,0.42);
    box-shadow: 0 18px 35px rgba(0,0,0,0.34);
}

.rsy-single-package-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #000000;
    border: 1px solid rgba(201,169,97,0.28);
}

.rsy-single-package-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: .92;
}

.rsy-single-package-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.16rem;
    font-weight: 850;
}

.rsy-single-package-card p {
    flex: 1;
    margin: 0 0 18px;
    color: #c9c9c9;
    font-size: .94rem;
    line-height: 1.65;
}

.rsy-single-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.rsy-single-card-link,
.rsy-single-card-whatsapp,
.rsy-single-black-btn,
.rsy-single-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: all .25s ease;
}

.rsy-single-card-link {
    color: #000000 !important;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.rsy-single-card-link:hover {
    color: #ffffff !important;
    background: #000000;
    border-color: rgba(201,169,97,0.5);
}

.rsy-single-card-whatsapp,
.rsy-single-whatsapp-btn {
    color: #ffffff !important;
    background: #25D366;
    border: 1px solid #25D366;
}

.rsy-single-card-whatsapp:hover,
.rsy-single-whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.rsy-single-decoration-widget {
    position: relative;
}

.rsy-single-decoration-widget::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, #000000, #c9a961, #000000);
    opacity: .9;
}

.rsy-single-decoration-copy {
    max-width: 950px;
    margin: 0 auto 30px;
    text-align: center;
}

.rsy-single-decoration-copy strong {
    color: #000000;
}

.rsy-single-decoration-gallery {
    margin: 32px 0;
}

.rsy-single-gallery-row {
    overflow: hidden;
    margin-bottom: 14px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.rsy-single-gallery-track {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
}

.rsy-single-gallery-track img {
    width: 210px;
    height: 142px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.16);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rsy-single-gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}

.rsy-scroll-left {
    animation: rsySingleSlideLeft 38s linear infinite;
}

.rsy-scroll-right {
    animation: rsySingleSlideRight 38s linear infinite;
}

.rsy-single-gallery-track:hover {
    animation-play-state: paused;
}

@keyframes rsySingleSlideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes rsySingleSlideRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.rsy-single-decoration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.rsy-single-decoration-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #000000;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    font-weight: 750;
}

.rsy-single-decoration-features span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #000000;
    background: #c9a961;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.rsy-single-decoration-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 32px;
    padding: 20px;
    background: #050505;
    border-radius: 16px;
}

.rsy-single-decoration-trust div {
    text-align: center;
    padding: 8px;
}

.rsy-single-decoration-trust strong {
    display: block;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.rsy-single-decoration-trust span {
    display: block;
    color: #c9a961;
    font-size: .78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.rsy-single-decoration-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rsy-single-black-btn {
    color: #ffffff !important;
    background: #000000;
    border: 1px solid #000000;
}

.rsy-single-black-btn:hover {
    color: #000000 !important;
    background: #ffffff;
    border-color: #c9a961;
}

@media (max-width: 1024px) {
    .rsy-single-packages-grid,
    .rsy-single-decoration-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rsy-single-event-packages,
    .rsy-single-decoration-widget {
        margin: 46px 0;
        padding: 34px 20px;
        border-radius: 14px;
    }

    .rsy-single-packages-grid,
    .rsy-single-decoration-features,
    .rsy-single-decoration-trust {
        grid-template-columns: 1fr;
    }

    .rsy-single-card-actions {
        grid-template-columns: 1fr;
    }

    .rsy-single-gallery-track img {
        width: 178px;
        height: 126px;
    }

    .rsy-single-decoration-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rsy-scroll-left,
    .rsy-scroll-right {
        animation: none !important;
    }
}

/* ==================== v2.3.10 STANDARD IMAGE FRAME FIX ==================== */
/* Keeps uploaded yacht images consistent regardless of original portrait/landscape size. */
.yacht-card .yacht-image,
.yacht-card .yacht-image > a,
.yacht-card .yacht-image img {
    display: block;
}

.yacht-card .yacht-image {
    width: 100%;
    height: 240px;
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

.yacht-card .yacht-image img,
.yacht-card .yacht-image picture,
.yacht-card .yacht-image picture img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.yacht-detail-page-new .main-gallery,
.yacht-detail-page-new .gallery-slides,
.yacht-detail-page-new .gallery-slide,
.yacht-detail-page-new .single-image {
    width: 100%;
}

.yacht-detail-page-new .gallery-slides,
.yacht-detail-page-new .gallery-slide,
.yacht-detail-page-new .single-image {
    height: 600px;
    aspect-ratio: 16 / 9;
    background: #050505;
    overflow: hidden;
}

.yacht-detail-page-new .gallery-slide img,
.yacht-detail-page-new .single-image img,
.yacht-detail-page-new .wp-post-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
}

.yacht-detail-page-new .thumbnail {
    width: 120px;
    height: 90px;
    flex: 0 0 120px;
    background: #f3f3f3;
}

.yacht-detail-page-new .thumbnail img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
}

.rsy-single-gallery-track img {
    width: 210px !important;
    height: 142px !important;
    max-width: none !important;
    aspect-ratio: 210 / 142;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
    flex: 0 0 210px;
}

@media (max-width: 768px) {
    .yacht-card .yacht-image {
        height: 220px;
        aspect-ratio: 16 / 10;
    }

    .yacht-detail-page-new .gallery-slides,
    .yacht-detail-page-new .gallery-slide,
    .yacht-detail-page-new .single-image {
        height: 360px;
        aspect-ratio: 4 / 3;
    }

    .rsy-single-gallery-track img {
        width: 170px !important;
        height: 116px !important;
        flex-basis: 170px;
    }
}

@media (max-width: 480px) {
    .yacht-card .yacht-image {
        height: 200px;
    }

    .yacht-detail-page-new .gallery-slides,
    .yacht-detail-page-new .gallery-slide,
    .yacht-detail-page-new .single-image {
        height: 280px;
    }
}

/* ========================================
   SINGLE YACHT ADDONS SECTION - v2.3.12
   Dashboard controlled internal links
   ======================================== */
.yacht-detail-page-new .rsy-single-addons {
    margin: 70px 0;
    padding: 56px 34px;
    background: linear-gradient(135deg, #050505 0%, #111 52%, #050505 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
    overflow: hidden;
    position: relative;
}

.yacht-detail-page-new .rsy-single-addons::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(201,169,97,0.10), transparent 32%);
    pointer-events: none;
}

.yacht-detail-page-new .rsy-single-addons .rsy-single-section-head {
    position: relative;
    z-index: 1;
}

.yacht-detail-page-new .rsy-single-addons .rsy-single-section-head h2,
.yacht-detail-page-new .rsy-single-addons .rsy-single-section-head p {
    color: #fff;
}

.yacht-detail-page-new .rsy-addon-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.yacht-detail-page-new .rsy-addon-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.yacht-detail-page-new .rsy-addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,97,0.38);
    background: rgba(255,255,255,0.075);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.yacht-detail-page-new .rsy-addon-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(201,169,97,0.35);
    margin-bottom: 18px;
}

.yacht-detail-page-new .rsy-addon-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.yacht-detail-page-new .rsy-addon-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.yacht-detail-page-new .rsy-addon-card p {
    color: rgba(255,255,255,0.72);
    font-size: .88rem;
    line-height: 1.58;
    margin: 0 0 18px;
    flex: 1;
}

.yacht-detail-page-new .rsy-addon-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: auto;
}

.yacht-detail-page-new .rsy-addon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all .24s ease;
}

.yacht-detail-page-new .rsy-addon-learn {
    background: #fff;
    color: #000 !important;
    border: 1px solid #fff;
}

.yacht-detail-page-new .rsy-addon-learn:hover {
    background: transparent;
    color: #fff !important;
}

.yacht-detail-page-new .rsy-addon-wa {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.22);
}

.yacht-detail-page-new .rsy-addon-wa:hover {
    border-color: rgba(201,169,97,0.5);
    color: #c9a961 !important;
}

@media (max-width: 1180px) {
    .yacht-detail-page-new .rsy-addon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .yacht-detail-page-new .rsy-single-addons {
        margin: 46px 0;
        padding: 36px 18px;
        border-radius: 14px;
    }

    .yacht-detail-page-new .rsy-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .yacht-detail-page-new .rsy-addon-card {
        padding: 18px 14px;
    }
}

@media (max-width: 520px) {
    .yacht-detail-page-new .rsy-addon-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   SINGLE YACHT EVENT PACKAGES CAROUSEL
   v2.3.13 - Homepage style package carousel
   ======================================== */
.rsy-single-event-packages {
    margin: 70px 0;
    padding: 58px 0;
    background: #050505;
    color: #ffffff;
    border: 1px solid #181818;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

.rsy-single-event-packages .rsy-single-section-head {
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 0 32px;
    text-align: center;
}

.rsy-single-event-packages .rsy-single-section-head h2 {
    color: #ffffff;
}

.rsy-single-event-packages .rsy-single-section-head p {
    color: #cfcfcf;
}

.rsy-single-packages-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 28px;
}

.rsy-single-packages-carousel-wrapper::before,
.rsy-single-packages-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 86px;
    width: 78px;
    z-index: 5;
    pointer-events: none;
}

.rsy-single-packages-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #050505 10%, rgba(5,5,5,0.86) 42%, transparent 100%);
}

.rsy-single-packages-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #050505 10%, rgba(5,5,5,0.86) 42%, transparent 100%);
}

.rsy-single-packages-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 18px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c9a961 #222222;
}

.rsy-single-packages-carousel::-webkit-scrollbar { height: 8px; }
.rsy-single-packages-carousel::-webkit-scrollbar-track { background: #222222; border-radius: 4px; }
.rsy-single-packages-carousel::-webkit-scrollbar-thumb { background: #c9a961; border-radius: 4px; }

.rsy-single-packages-carousel .rsy-single-package-card {
    flex: 0 0 300px;
    padding: 0;
    background: #151515;
    border: 1px solid rgba(201,169,97,0.18);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
}

.rsy-single-packages-carousel .rsy-single-package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,97,0.7);
    box-shadow: 0 16px 36px rgba(201,169,97,0.15);
}

.rsy-single-package-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #000000;
}

.rsy-single-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.rsy-single-packages-carousel .rsy-single-package-card:hover .rsy-single-package-image img {
    transform: scale(1.06);
}

.rsy-single-package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.82);
    color: #c9a961;
    border: 1px solid rgba(201,169,97,0.75);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.rsy-single-package-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 16px 15px;
}

.rsy-single-package-content h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 850;
}

.rsy-single-package-content h3 a {
    color: inherit !important;
    text-decoration: none !important;
}

.rsy-single-package-content p {
    flex: 1;
    margin: 0 0 11px;
    color: #d6d6d6;
    font-size: .84rem;
    line-height: 1.55;
}

.rsy-single-package-features {
    list-style: none;
    margin: 0 0 13px;
    padding: 11px 0 0;
    border-top: 1px solid rgba(201,169,97,0.18);
}

.rsy-single-package-features li {
    position: relative;
    padding: 3px 0 3px 18px;
    color: #cfcfcf;
    font-size: .78rem;
    line-height: 1.4;
}

.rsy-single-package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 3px;
    color: #c9a961;
    font-weight: 900;
}

.rsy-single-package-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    background: rgba(201,169,97,0.08);
    color: #c9a961 !important;
    border: 1px solid rgba(201,169,97,0.75);
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: all .25s ease;
}

.rsy-single-package-cta:hover {
    color: #000000 !important;
    background: #c9a961;
    transform: translateX(3px);
}

.rsy-single-packages-explore-cta {
    position: relative;
    z-index: 6;
    text-align: center;
    margin-top: 28px;
    padding: 0 20px;
}

.rsy-single-packages-explore-cta .rsy-single-black-btn {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
    box-shadow: 0 10px 28px rgba(255,255,255,0.10);
}

.rsy-single-packages-explore-cta .rsy-single-black-btn:hover {
    background: #c9a961;
    color: #000000 !important;
    border-color: #c9a961;
}

@media (max-width: 768px) {
    .rsy-single-event-packages {
        padding: 42px 0;
        margin: 46px 0;
    }
    .rsy-single-event-packages .rsy-single-section-head {
        padding: 0 20px;
    }
    .rsy-single-packages-carousel-wrapper {
        padding: 0 18px;
    }
    .rsy-single-packages-carousel-wrapper::before,
    .rsy-single-packages-carousel-wrapper::after {
        width: 42px;
    }
    .rsy-single-packages-carousel .rsy-single-package-card {
        flex-basis: 265px;
    }
    .rsy-single-package-image {
        height: 142px;
    }
}

/* ==================== v2.3.14 PREMIUM FILTER + CARD IMAGE SLIDER ==================== */
/* Black/white luxury filter styling with very minimal gold accents. */
.yacht-filters-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08) !important;
    padding: 26px !important;
}

.yacht-filters {
    background: #ffffff !important;
    border: 0 !important;
}

.yacht-filters::before {
    background: linear-gradient(90deg, #000000, #c9a961, #000000) !important;
    opacity: 0.9;
}

.filter-item label {
    color: #111111 !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
}

.filter-item input[type="text"],
.filter-item input[type="number"],
.filter-item select {
    background: #f7f7f7 !important;
    color: #111111 !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 12px !important;
    min-height: 48px !important;
    box-shadow: none !important;
}

.filter-item input:focus,
.filter-item select:focus {
    background: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06) !important;
}

.filter-actions .btn-primary,
.yacht-load-more {
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    border-radius: 12px !important;
}

.filter-actions .btn-primary:hover,
.yacht-load-more:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

.filter-actions .btn-outline {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid rgba(0,0,0,0.22) !important;
    border-radius: 12px !important;
}

.filter-actions .btn-outline:hover {
    border-color: #000000 !important;
    background: #f7f7f7 !important;
}

.yacht-card {
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,0.10) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08) !important;
    background: #ffffff !important;
}

.yacht-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(201,169,97,0.45) !important;
    box-shadow: 0 22px 50px rgba(0,0,0,0.14) !important;
}

.yacht-card .yacht-image.yacht-card-slider {
    height: 245px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 18px 18px 0 0 !important;
    overflow: hidden !important;
    background: #eeeeee !important;
    position: relative !important;
}

.yacht-slider-track,
.yacht-slider-track img,
.yacht-card-slider > img.yacht-slide-image {
    width: 100% !important;
    height: 100% !important;
}

.yacht-slider-track {
    position: relative !important;
}

.yacht-slide-image {
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.45s ease, opacity 0.25s ease !important;
}

.yacht-slide-image.active,
.yacht-card-slider > img.yacht-slide-image.active {
    display: block !important;
}

.yacht-card:hover .yacht-slide-image.active {
    transform: scale(1.035) !important;
}

.yacht-slider-count {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 5 !important;
    background: rgba(0,0,0,0.58) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 4px 9px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    backdrop-filter: blur(8px) !important;
}

.yacht-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 6 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.28) !important;
    background: rgba(0,0,0,0.62) !important;
    color: #ffffff !important;
    font-size: 25px !important;
    line-height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transform: translateY(-50%) !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
}

.yacht-slider-prev { left: 16px !important; }
.yacht-slider-next { right: 16px !important; }

.yacht-slider-arrow:hover {
    background: #000000 !important;
    border-color: #ffffff !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.yacht-card .yacht-header h3 {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
}

.yacht-card .yacht-price .amount {
    color: #000000 !important;
}

.yacht-card .yacht-buttons .btn-outline,
.yacht-card .yacht-buttons .btn-primary {
    border-radius: 12px !important;
}

.yacht-card .yacht-buttons .btn-primary {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.yacht-card .yacht-buttons .btn-primary:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
    .yacht-filters-wrapper {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .yacht-card .yacht-image.yacht-card-slider {
        height: 225px !important;
    }

    .yacht-slider-arrow {
        width: 34px !important;
        height: 34px !important;
        font-size: 23px !important;
    }

    .yacht-slider-prev { left: 12px !important; }
    .yacht-slider-next { right: 12px !important; }
}

/* ==================== v2.3.16 COMPACT YACHT CARD HEIGHT FIX ==================== */
.yacht-card {
    border-radius: 14px !important;
    overflow: hidden !important;
}

.yacht-card .yacht-image,
.yacht-card .yacht-image.yacht-card-slider {
    height: 220px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 14px 14px 0 0 !important;
}

.yacht-content {
    padding: 16px 18px 18px !important;
}

.yacht-header {
    margin-bottom: 10px !important;
}

.yacht-card .yacht-header h3 {
    font-size: 10px !important;
    padding: 4px 12px !important;
    line-height: 1.1 !important;
}

.rating .star {
    font-size: 12px !important;
}

.yacht-title-row {
    margin-bottom: 12px !important;
}

.yacht-title-row h2 {
    font-size: 19px !important;
    line-height: 1.22 !important;
    margin: 0 !important;
}

.yacht-price {
    margin-bottom: 12px !important;
    gap: 5px !important;
}

.yacht-price .amount {
    font-size: 23px !important;
    line-height: 1.1 !important;
}

.yacht-price .period {
    font-size: 11px !important;
}

.yacht-info {
    gap: 11px !important;
    margin-bottom: 15px !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.yacht-info .info-item {
    font-size: 12px !important;
    gap: 5px !important;
}

.yacht-info svg {
    width: 13px !important;
    height: 13px !important;
}

.yacht-buttons {
    gap: 9px !important;
    margin-top: 4px !important;
}

.yacht-card .yacht-buttons .btn-outline,
.yacht-card .yacht-buttons .btn-primary,
.yacht-buttons .btn-outline,
.yacht-buttons .btn-primary {
    padding: 11px 14px !important;
    min-height: 40px !important;
    border-radius: 10px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.yacht-slider-count {
    top: 10px !important;
    left: 10px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
}

.yacht-slider-arrow {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
    font-size: 22px !important;
}

.yacht-slider-prev { left: 12px !important; }
.yacht-slider-next { right: 12px !important; }

/* Price range black premium override */
.price-slider-track {
    background: #111111 !important;
    border: 0 !important;
    height: 6px !important;
    box-shadow: none !important;
}

.price-slider-range {
    background: #000000 !important;
}

.price-range-input::-webkit-slider-thumb {
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22) !important;
}

.price-range-input::-moz-range-thumb {
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22) !important;
}

.price-display,
.price-display .price-value,
.price-input-group .price-value,
.price-min-value,
.price-max-value {
    color: #000000 !important;
}

@media (max-width: 768px) {
    .yacht-card .yacht-image,
    .yacht-card .yacht-image.yacht-card-slider {
        height: 205px !important;
    }

    .yacht-content {
        padding: 14px 16px 16px !important;
    }

    .yacht-title-row h2 {
        font-size: 18px !important;
    }

    .yacht-price .amount {
        font-size: 21px !important;
    }

    .yacht-info {
        gap: 9px !important;
        margin-bottom: 13px !important;
    }

    .yacht-card .yacht-buttons .btn-outline,
    .yacht-card .yacht-buttons .btn-primary,
    .yacht-buttons .btn-outline,
    .yacht-buttons .btn-primary {
        min-height: 38px !important;
        padding: 10px 10px !important;
    }
}


/* v2.3.17 FORCE PRICE RANGE SLIDER BLACK THEME - covers shortcode + archive + saved customizer colors */
.yacht-filters .price-range-wrapper,
.yacht-filters-section .price-range-wrapper,
.filter-price .price-range-wrapper {
    background: #f4f4f4 !important;
}
.yacht-filters .slider-track,
.yacht-filters .price-slider-track,
.yacht-filters-section .slider-track,
.yacht-filters-section .price-slider-track,
.filter-price .slider-track,
.filter-price .price-slider-track {
    background: #111111 !important;
    border-color: #111111 !important;
    box-shadow: none !important;
}
.yacht-filters .slider-range,
.yacht-filters .price-slider-range,
.yacht-filters-section .slider-range,
.yacht-filters-section .price-slider-range,
.filter-price .slider-range,
.filter-price .price-slider-range {
    background: #111111 !important;
    background-image: none !important;
}
.yacht-filters .price-slider::-webkit-slider-thumb,
.yacht-filters .price-range-input::-webkit-slider-thumb,
.yacht-filters-section .price-slider::-webkit-slider-thumb,
.yacht-filters-section .price-range-input::-webkit-slider-thumb,
.filter-price .price-slider::-webkit-slider-thumb,
.filter-price .price-range-input::-webkit-slider-thumb {
    background: #ffffff !important;
    border: 3px solid #111111 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}
.yacht-filters .price-slider::-moz-range-thumb,
.yacht-filters .price-range-input::-moz-range-thumb,
.yacht-filters-section .price-slider::-moz-range-thumb,
.yacht-filters-section .price-range-input::-moz-range-thumb,
.filter-price .price-slider::-moz-range-thumb,
.filter-price .price-range-input::-moz-range-thumb {
    background: #ffffff !important;
    border: 3px solid #111111 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}
.yacht-filters .price-amount,
.yacht-filters-section .price-amount,
.filter-price .price-amount,
#price-min-value,
#price-max-value {
    color: #111111 !important;
}


/* v2.3.18 YACHT TITLE FONT + FILTER HEADER ICON CLEANUP */
.yacht-card .yacht-title-row h2,
.yacht-title-row h2 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 21.5px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -0.25px !important;
    color: #000000 !important;
}

.yacht-filters .filter-header h2,
.yacht-filters-wrapper .filter-header h2 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    color: #000000 !important;
}

.yacht-filters .filter-header h2::before,
.yacht-filters-wrapper .filter-header h2::before {
    content: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    .yacht-card .yacht-title-row h2,
    .yacht-title-row h2 {
        font-size: 20px !important;
        line-height: 1.18 !important;
    }
}
