/* =====================================================
   Yacht Charter Plugin – Frontend Styles
   Aesthetic: Refined Maritime Luxury (cream/navy/gold)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Jost:wght@300;400;500&display=swap');

:root {
    --ycp-cream:    #f5f0e8;
    --ycp-sand:     #e8dfc8;
    --ycp-gold:     #b8924a;
    --ycp-navy:     #1a2744;
    --ycp-dark:     #111827;
    --ycp-mid:      #6b7280;
    --ycp-light:    #9ca3af;
    --ycp-white:    #ffffff;
    --ycp-radius:   4px;
    --ycp-shadow:   0 2px 12px rgba(0,0,0,.08);
    --ycp-shadow-lg:0 8px 32px rgba(0,0,0,.12);
    --ycp-font-display: 'Cormorant Garamond', Georgia, serif;
    --ycp-font-body:    'Jost', sans-serif;
    --ycp-transition:   .25s ease;
}

.ycp-listing-wrap,
.ycp-single-wrap { font-family: var(--ycp-font-body); color: var(--ycp-dark); }

/* ===== FILTER BAR ===== */
.ycp-filters {
    background: var(--ycp-cream);
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    padding: 20px 24px 14px;
    margin-bottom: 36px;
}
.ycp-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}
.ycp-sort-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* Dropdown */
.ycp-dropdown { position: relative; }
.ycp-drop-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ycp-white);
    border: 1px solid var(--ycp-sand);
    border-radius: 50px;
    padding: 9px 18px;
    font-family: var(--ycp-font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--ycp-dark);
    cursor: pointer;
    transition: border-color var(--ycp-transition), background var(--ycp-transition);
    white-space: nowrap;
}
.ycp-drop-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform var(--ycp-transition); }
.ycp-dropdown.open .ycp-drop-btn svg { transform: rotate(180deg); }
.ycp-drop-btn:hover,
.ycp-dropdown.open .ycp-drop-btn { border-color: var(--ycp-gold); background: var(--ycp-cream); }
.ycp-drop-btn.active { border-color: var(--ycp-gold); background: var(--ycp-gold); color: #fff; }

.ycp-drop-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: var(--ycp-white);
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    box-shadow: var(--ycp-shadow-lg);
    z-index: 999;
    padding: 6px 0;
    animation: ycpFadeDown .15s ease;
}
.ycp-dropdown.open .ycp-drop-menu { display: block; }
@keyframes ycpFadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.ycp-drop-item {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    cursor: pointer;
    color: var(--ycp-dark);
    transition: background var(--ycp-transition);
}
.ycp-drop-item:hover { background: var(--ycp-cream); }
.ycp-drop-item.active { color: var(--ycp-gold); font-weight: 500; }

/* Browse button */
.ycp-browse-btn {
    background: var(--ycp-dark);
    color: var(--ycp-white);
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-family: var(--ycp-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background var(--ycp-transition);
    margin-left: auto;
}
.ycp-browse-btn:hover { background: var(--ycp-navy); }

/* Sort buttons */
.ycp-sort-btn {
    background: var(--ycp-gold);
    color: var(--ycp-white);
    border: none;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--ycp-transition);
    font-family: var(--ycp-font-body);
}
.ycp-sort-btn:hover { opacity: .85; }
.ycp-sort-btn.active { background: var(--ycp-navy); }

.ycp-results-count { font-size: 12px; color: var(--ycp-mid); margin-left: 8px; }

/* Active filters */
.ycp-active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ycp-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--ycp-navy);
    color: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3px;
}
.ycp-filter-tag button { background: none; border: none; color: #fff; cursor: pointer; font-size: 13px; padding: 0; line-height: 1; }

/* ===== GRID ===== */
.ycp-grid-wrap {
    display: grid;
    gap: 28px;
    position: relative;
}
.ycp-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ycp-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ycp-cols-1 { grid-template-columns: 1fr; }

@media (max-width: 1024px) {
    .ycp-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ycp-cols-3, .ycp-cols-2 { grid-template-columns: 1fr; }
    .ycp-filter-row { gap: 8px; }
    .ycp-browse-btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ===== CARD ===== */
.ycp-card {
    background: var(--ycp-white);
    border-radius: var(--ycp-radius);
    overflow: hidden;
    box-shadow: var(--ycp-shadow);
    transition: transform var(--ycp-transition), box-shadow var(--ycp-transition);
    display: flex;
    flex-direction: column;
}
.ycp-card:hover { transform: translateY(-4px); box-shadow: var(--ycp-shadow-lg); }

.ycp-card-img-link { display: block; text-decoration: none; }
.ycp-card-img {
    height: 240px;
    background: #0a1628;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ycp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}
.ycp-card:hover .ycp-card-img img { transform: scale(1.03); }

/* Card body */
.ycp-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }

/* FOR CHARTER label + rating row */
.ycp-card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ycp-card-lt-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--ycp-gold);
    text-transform: uppercase;
}

/* Star rating */
.ycp-rating { display: flex; align-items: center; gap: 1px; }
.ycp-rating .ycp-star { font-size: 13px; line-height: 1; }
.ycp-star.full  { color: #f59e0b; }
.ycp-star.half  { color: #f59e0b; opacity: .6; }
.ycp-star.empty { color: #d1d5db; }

/* Title */
.ycp-card-title {
    font-family: var(--ycp-font-display);
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 12px;
    line-height: 1.2;
}
.ycp-card-title a { color: var(--ycp-dark); text-decoration: none; }
.ycp-card-title a:hover { color: var(--ycp-gold); }

/* Divider */
.ycp-card-divider { border: none; border-top: 1px solid var(--ycp-sand); margin: 0 0 14px; }

/* Specs — list with inline SVG icons */
.ycp-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
}
.ycp-card-specs li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--ycp-mid);
    line-height: 1;
}
/* SVG sizing enforced both here and inline on element */
.ycp-card-specs li svg,
.ycp-card-specs li svg * { max-width: 14px !important; max-height: 14px !important; }

/* Excerpt */
.ycp-card-excerpt { font-size: 13px; color: var(--ycp-mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* Footer */
.ycp-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 4px; }

/* Book Now link */
.ycp-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ycp-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ycp-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--ycp-navy);
    padding-bottom: 1px;
    transition: color var(--ycp-transition), border-color var(--ycp-transition);
}
.ycp-book-btn svg { width: 13px !important; height: 13px !important; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }
.ycp-book-btn:hover { color: var(--ycp-gold); border-color: var(--ycp-gold); }

/* Price */
.ycp-price {
    font-family: var(--ycp-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ycp-dark);
}

/* ===== NO RESULTS ===== */
.ycp-no-results { text-align: center; padding: 60px 20px; color: var(--ycp-mid); grid-column: 1/-1; }
.ycp-no-results p { font-size: 16px; }

/* ===== PAGINATION ===== */
.ycp-pagination { text-align: center; margin-top: 40px; }
.ycp-load-more {
    background: transparent;
    border: 1.5px solid var(--ycp-dark);
    color: var(--ycp-dark);
    padding: 12px 36px;
    font-family: var(--ycp-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--ycp-transition);
}
.ycp-load-more:hover { background: var(--ycp-dark); color: #fff; }

/* ===== LOADING ===== */
.ycp-loading {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
}
.ycp-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--ycp-sand);
    border-top-color: var(--ycp-gold);
    border-radius: 50%;
    animation: ycpSpin .7s linear infinite;
}
@keyframes ycpSpin { to { transform: rotate(360deg); } }

/* ===========================
   SINGLE YACHT PAGE
   =========================== */
.ycp-single-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }

/* Gallery Hero */
/* ===== GALLERY ===== */
.ycp-gallery-hero {
    margin-bottom: 36px;
    position: relative;
}

/* Ana fotoğraf kutusu */
.ycp-main-img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    position: relative;
    line-height: 0;
}
.ycp-main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: opacity .2s ease;
    cursor: zoom-in;
}

/* Prev / Next ok butonları */
.ycp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,.85);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    transition: background .2s, opacity .2s;
    font-size: 20px;
    color: #111827;
    line-height: 1;
    padding: 0;
}
.ycp-gallery-arrow:hover { background: #fff; }
.ycp-gallery-arrow.prev { left: 14px; }
.ycp-gallery-arrow.next { right: 14px; }
.ycp-gallery-arrow[disabled] { opacity: .3; cursor: default; }

/* Fotoğraf sayacı */
.ycp-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 11px;
    font-family: var(--ycp-font-body);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
    pointer-events: none;
    z-index: 5;
}

/* Thumbnail strip */
.ycp-thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ycp-thumb-strip::-webkit-scrollbar { display: none; }

.ycp-thumb {
    flex: 0 0 110px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
    background: var(--ycp-cream);
}
.ycp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ycp-thumb.active { border-color: var(--ycp-gold); }
.ycp-thumb:hover { border-color: var(--ycp-gold); opacity: .85; }

@media (max-width: 640px) {
    .ycp-gallery-arrow { width: 36px; height: 36px; font-size: 16px; }
    .ycp-thumb { flex: 0 0 80px; height: 54px; }
}


/* Body layout */
.ycp-single-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) { .ycp-single-body { grid-template-columns: 1fr; } }

/* Breadcrumb */
.ycp-breadcrumb { font-size: 12px; color: var(--ycp-light); margin-bottom: 10px; }
.ycp-breadcrumb a { color: var(--ycp-mid); text-decoration: none; }
.ycp-breadcrumb a:hover { color: var(--ycp-gold); }

/* Header */
.ycp-single-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.ycp-badge-lt, .ycp-badge-dest, .ycp-badge-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}
.ycp-badge-lt   { background: var(--ycp-navy); color: #fff; }
.ycp-badge-dest { background: var(--ycp-cream); color: var(--ycp-dark); border: 1px solid var(--ycp-sand); }
.ycp-badge-cat  { background: var(--ycp-cream); color: var(--ycp-dark); border: 1px solid var(--ycp-sand); }

.ycp-single-title {
    font-family: var(--ycp-font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: var(--ycp-dark);
    margin: 0 0 8px;
    line-height: 1.1;
}
.ycp-single-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ycp-mid); margin-bottom: 24px; }
.ycp-single-rating .ycp-star { font-size: 16px; }

/* Spec Bar */
.ycp-spec-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}
.ycp-spec-item {
    flex: 1;
    min-width: 100px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-right: 1px solid var(--ycp-sand);
    background: var(--ycp-cream);
    text-align: center;
}
.ycp-spec-item:last-child { border-right: none; }
.ycp-spec-icon { font-size: 20px; }
.ycp-spec-val { font-family: var(--ycp-font-display); font-size: 16px; font-weight: 600; color: var(--ycp-dark); }
.ycp-spec-label { font-size: 10px; letter-spacing: .8px; color: var(--ycp-light); }

/* Sections */
.ycp-description, .ycp-tech-specs, .ycp-amenities-section { margin-bottom: 36px; }
.ycp-description h2, .ycp-tech-specs h2, .ycp-amenities-section h2 {
    font-family: var(--ycp-font-display);
    font-size: 24px;
    font-weight: 400;
    border-bottom: 1px solid var(--ycp-sand);
    padding-bottom: 8px;
    margin-bottom: 18px;
    color: var(--ycp-dark);
}
.ycp-content { font-size: 15px; line-height: 1.75; color: var(--ycp-mid); }

/* Tech specs grid */
.ycp-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--ycp-sand); border-radius: 6px; overflow: hidden; }
.ycp-tech-row { display: flex; justify-content: space-between; padding: 11px 18px; border-bottom: 1px solid var(--ycp-sand); font-size: 13px; }
.ycp-tech-row:nth-child(even) { background: var(--ycp-cream); }
.ycp-tech-label { color: var(--ycp-mid); }
.ycp-tech-val { font-weight: 500; color: var(--ycp-dark); }

/* Amenities */
.ycp-amenities-list { display: flex; flex-wrap: wrap; gap: 8px; }
.ycp-amenity-tag {
    background: var(--ycp-cream);
    border: 1px solid var(--ycp-sand);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--ycp-dark);
}

/* ===== SIDEBAR ===== */
.ycp-single-sidebar { position: sticky; top: 24px; }

.ycp-pricing-card {
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--ycp-shadow);
    margin-bottom: 20px;
}
.ycp-pricing-card-header {
    background: var(--ycp-navy);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.ycp-pricing-card-body { padding: 24px; }
.ycp-price-display { margin-bottom: 8px; }
.ycp-main-price {
    font-family: var(--ycp-font-display);
    font-size: 34px;
    font-weight: 600;
    color: var(--ycp-dark);
}
.ycp-original-price { font-size: 18px; color: var(--ycp-light); text-decoration: line-through; margin-right: 8px; }
.ycp-discounted-price { font-family: var(--ycp-font-display); font-size: 30px; font-weight: 600; color: var(--ycp-gold); }
.ycp-price-alt { font-size: 13px; color: var(--ycp-mid); margin-bottom: 8px; }
.ycp-apa-note { font-size: 12px; color: var(--ycp-mid); margin-bottom: 8px; }
.ycp-avail { font-size: 13px; color: var(--ycp-mid); margin-bottom: 18px; }

.ycp-cta-btn {
    display: block;
    background: var(--ycp-dark);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: background var(--ycp-transition);
    margin-bottom: 10px;
}
.ycp-cta-btn:hover { background: var(--ycp-navy); }

.ycp-inquiry-btn {
    display: block;
    background: transparent;
    color: var(--ycp-dark);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    border: 1.5px solid var(--ycp-dark);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--ycp-transition);
}
.ycp-inquiry-btn:hover { background: var(--ycp-dark); color: #fff; }

.ycp-contact-card {
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    padding: 20px;
    background: var(--ycp-cream);
}
.ycp-contact-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--ycp-mid); margin: 0 0 14px; }
.ycp-broker-name { font-weight: 500; margin-bottom: 10px; font-size: 14px; }
.ycp-contact-link {
    display: block;
    font-size: 13px;
    color: var(--ycp-navy);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color var(--ycp-transition);
}
.ycp-contact-link:hover { color: var(--ycp-gold); }
.ycp-contact-link.ycp-wa { color: #25d366; }

/* =====================================================
   DETAIL PAGE — matches aquinoxyachting.com structure
   ===================================================== */

/* ---- Hero Banner ---- */
.ycp-detail-page { font-family: var(--ycp-font-body); }

.ycp-detail-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.ycp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(.55);
}
.ycp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,39,68,.7) 0%, rgba(0,0,0,.4) 100%);
}
.ycp-hero-inner {
    position: relative;
    z-index: 2;
    padding: 50px 20px 40px;
}
.ycp-hero-title {
    font-family: var(--ycp-font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 14px;
}
.ycp-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}
.ycp-hero-breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.ycp-hero-breadcrumb a:hover { color: var(--ycp-gold); }
.ycp-hero-breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ---- Body layout ---- */
.ycp-detail-body { background: var(--ycp-white); }
.ycp-detail-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 52px;
    align-items: start;
}
@media(max-width: 900px) {
    .ycp-detail-body-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 20px 60px; }
}

/* ---- LEFT: Category label ---- */
.ycp-dl-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.ycp-dl-cat-line {
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background: var(--ycp-gold);
}
.ycp-dl-cat-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ycp-gold);
}

/* Yacht name — h4 matches Elementor heading */
.ycp-dl-name {
    font-family: var(--ycp-font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--ycp-dark);
    margin: 0 0 18px;
    line-height: 1.15;
}

/* Specs icon list — matches Elementor inline icon-list */
.ycp-dl-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.ycp-dl-specs li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--ycp-mid);
    font-weight: 400;
}
.ycp-dl-specs li svg {
    width: 15px;
    height: 15px;
    fill: var(--ycp-gold);
    flex-shrink: 0;
}

.ycp-dl-excerpt { font-size: 14px; line-height: 1.7; color: var(--ycp-mid); margin-bottom: 18px; }

.ycp-dl-divider { border: none; border-top: 1px solid var(--ycp-sand); margin: 24px 0; }

/* Section headings — match Elementor h2 style */
.ycp-dl-section-h {
    font-family: var(--ycp-font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ycp-dark);
    margin: 32px 0 14px;
}

.ycp-dl-content { font-size: 14px; line-height: 1.8; color: var(--ycp-mid); margin-bottom: 24px; }
.ycp-dl-content p { margin-bottom: 14px; }

/* Main photo */
.ycp-dl-main-photo { margin: 24px 0; border-radius: 6px; overflow: hidden; }
.ycp-dl-main-photo img { width: 100%; height: auto; display: block; }

/* Gallery strip */
.ycp-dl-gallery { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 28px; }
.ycp-dl-thumb { width: 110px; height: 76px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; flex-shrink: 0; }
.ycp-dl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ycp-dl-thumb.active, .ycp-dl-thumb:hover { border-color: var(--ycp-gold); }

/* What's Included list — matches Elementor icon-list traditional */
.ycp-dl-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}
@media(max-width:600px){ .ycp-dl-amenities { grid-template-columns: 1fr; } }
.ycp-dl-amenities li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ycp-mid);
    line-height: 1.5;
}
.ycp-dl-amenities li svg { width: 8px; height: 8px; fill: var(--ycp-gold); flex-shrink: 0; margin-top: 4px; }

/* Technical Specs table */
.ycp-dl-tech-table { border: 1px solid var(--ycp-sand); border-radius: 6px; overflow: hidden; margin-bottom: 28px; }
.ycp-dt-row { display: flex; justify-content: space-between; padding: 10px 18px; font-size: 13px; border-bottom: 1px solid var(--ycp-sand); }
.ycp-dt-row:last-child { border-bottom: none; }
.ycp-dt-row:nth-child(even) { background: var(--ycp-cream); }
.ycp-dt-label { color: var(--ycp-mid); }
.ycp-dt-val { font-weight: 500; color: var(--ycp-dark); }

/* ---- RIGHT column ---- */
.ycp-dr-photo { border-radius: 6px; overflow: hidden; margin-bottom: 24px; }
.ycp-dr-photo img { width: 100%; height: auto; display: block; }

/* Booking Card — matches "Rent This Yacht" Elementor box */
.ycp-dr-card {
    background: var(--ycp-cream);
    border: 1px solid var(--ycp-sand);
    border-radius: 8px;
    padding: 30px 28px 28px;
    position: sticky;
    top: 100px;
}

.ycp-dr-heading {
    font-family: var(--ycp-font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--ycp-dark);
    margin: 0 0 8px;
}
.ycp-dr-sub { font-size: 13px; color: var(--ycp-mid); line-height: 1.6; margin-bottom: 14px; }
.ycp-dr-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ycp-mid); margin-bottom: 18px; }
.ycp-dr-rating .ycp-star { font-size: 15px; }

/* Price block — matches "h2 $950/day" Elementor heading */
.ycp-dr-price-block { margin-bottom: 22px; }
.ycp-dr-price-old { font-size: 16px; color: var(--ycp-light); text-decoration: line-through; display: block; margin-bottom: 2px; }
.ycp-dr-price {
    font-family: var(--ycp-font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--ycp-dark);
    margin: 0 0 4px;
    line-height: 1.1;
}
.ycp-dr-price-day { font-size: 13px; color: var(--ycp-mid); margin: 2px 0; }
.ycp-dr-apa  { font-size: 12px; color: var(--ycp-mid); margin: 2px 0; }
.ycp-dr-avail{ font-size: 12px; color: var(--ycp-mid); margin: 4px 0 0; }

/* Buttons */
.ycp-dr-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--ycp-dark);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: background var(--ycp-transition);
    margin-top: 18px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.ycp-dr-btn-primary svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.ycp-dr-btn-primary:hover { background: var(--ycp-navy); color: #fff; }

.ycp-dr-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    border: 1.5px solid var(--ycp-dark);
    color: var(--ycp-dark);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--ycp-transition);
    margin-bottom: 20px;
    box-sizing: border-box;
}
.ycp-dr-btn-secondary:hover { background: var(--ycp-dark); color: #fff; }

/* Contact */
.ycp-dr-contact { border-top: 1px solid var(--ycp-sand); padding-top: 16px; }
.ycp-dr-broker { font-weight: 500; font-size: 14px; margin-bottom: 10px; }
.ycp-dr-clink {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ycp-navy);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color var(--ycp-transition);
}
.ycp-dr-clink svg { width: 15px; height: 15px; flex-shrink: 0; }
.ycp-dr-clink:hover { color: var(--ycp-gold); }
.ycp-dr-wa { color: #25d366 !important; }
.ycp-dr-wa:hover { color: #128c7e !important; }

/* end detail page */

/* =====================================================
   PAGE HEADER — self-contained, matches site aesthetic
   ===================================================== */
.ycp-page-header {
    background-color: var(--ycp-navy);
    background-image: linear-gradient(135deg, #1a2744 0%, #0f1a33 100%);
    padding: 52px 24px 44px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.ycp-page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.ycp-page-header-title {
    font-family: var(--ycp-font-display);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 18px;
    line-height: 1.1;
}
.ycp-page-header-bc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: var(--ycp-font-body);
    flex-wrap: wrap;
    justify-content: center;
}
.ycp-page-header-bc a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.ycp-page-header-bc a:hover { color: var(--ycp-gold); }
.ycp-page-header-bc svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.ycp-page-header-bc span { color: rgba(255,255,255,.5); }

/* =====================================================
   AQUINOX — EK DÜZELTMELER
   ===================================================== */

/* Mobil üst boşluk fix */
@media (max-width: 768px) {
    body,
    html {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    /* WordPress admin bar olmayan sayfalarda üst boşluk kaldır */
    .site,
    #page,
    .ycp-single-wrap,
    .ycp-listing-wrap {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Galeri ana fotoğraf — cursor ile lightbox açılacağını belli et */
#ycp-main-photo {
    cursor: zoom-in;
    transition: opacity .15s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumb geçiş animasyonu */
.ycp-thumb {
    cursor: pointer;
    transition: opacity .2s, border-color .2s;
}
.ycp-thumb:hover { opacity: .85; }

/* Thumb strip yatay kaydırma */
.ycp-thumb-strip {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ycp-thumb-strip::-webkit-scrollbar { display: none; }

/* Fiyat "Starting From" etiketi */
.ycp-price-from {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Extras & Terms bölümleri */
.ycp-extras-section,
.ycp-terms-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8dfc8;
}
.ycp-extras-section h2,
.ycp-terms-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 16px;
}
.ycp-extras-content,
.ycp-terms-content {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #374151;
    line-height: 1.75;
}

/* Lightbox CSS */
#ycp-lightbox {
    -webkit-user-select: none;
    user-select: none;
}
#ycp-lb-img {
    box-shadow: 0 8px 48px rgba(0,0,0,.5);
    transition: opacity .15s;
}
#ycp-lb-prev,
#ycp-lb-next {
    transition: background .2s;
}
#ycp-lb-prev:hover,
#ycp-lb-next:hover {
    background: rgba(255,255,255,.3) !important;
}

/* =====================================================
   TÜRKÇE LOCALE text-transform:uppercase KORUMASI
   Tema CSS'inin button/a elementlerine uyguladığı
   text-transform:uppercase tarayıcı locale'i kullanır
   ve i→İ dönüşümüne yol açar. Tüm plugin elementleri
   için text-transform:none zorlanır.
   ===================================================== */
.ycp-drop-btn,
.ycp-drop-item,
.ycp-sort-btn,
.ycp-browse-btn,
.ycp-cta-btn,
.ycp-inquiry-btn,
.ycp-contact-link,
.ycp-load-more,
.ycp-listing-wrap button,
.ycp-listing-wrap label,
.ycp-listing-wrap a,
#ycp-search-btn {
    text-transform: none !important;
}
