/* Planet filo – anasayfa gemi bölümü + filo listesi (ürün) sayfası */
:root {
    --fleet-navy: #0b2348;
    --fleet-navy-deep: #081a36;
    --fleet-gold: #c8963e;
    --fleet-gold-soft: #d4a65a;
    --fleet-muted: #6b7c93;
}
.planet-home .planet-filo .container,
.theme-planet .planet-products-page .container {
    max-width: 1440px;
}

.planet-products-page__empty {
    margin: 40px 0 0;
    color: rgba(31, 57, 95, 0.7);
    font-family: var(--font-body);
    font-size: 16px;
}

/* ===== Filo liste sayfası (yeni tasarım) ===== */
.planet-fleet-page {
    position: relative;
    overflow: hidden;
    padding: 72px 0 100px;
    background: #fff;
}

.planet-fleet-page__map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(640px, 70%);
    height: auto;
    z-index: 0;
    pointer-events: none;
    background-image: var(--fleet-map-url, url("../img/yeni/dot-dunya-harita.png"));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.2;
    filter: invert(1);
    transform: translateX(clamp(-72px, -5vw, -28px));
}

.planet-fleet-page > .container {
    position: relative;
    z-index: 1;
}

.planet-fleet-page__intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
    gap: 40px 64px;
    align-items: start;
    margin-bottom: 56px;
}

.planet-fleet-page__intro-copy,
.planet-fleet-page__aside {
    position: relative;
    z-index: 1;
}

.planet-fleet-page__eyebrow {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fleet-gold);
    line-height: 1.2;
}

.planet-fleet-page__title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 22px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 2.4vw + 18px, 48px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--fleet-navy);
}

.planet-fleet-page__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    background: var(--fleet-gold);
}

.planet-fleet-page__lead {
    color: var(--fleet-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
}

.planet-fleet-page__lead p {
    margin: 0 0 0.85em;
}

.planet-fleet-page__lead p:last-child {
    margin-bottom: 0;
}

.planet-fleet-page__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
    padding-top: 8px;
    text-align: right;
}

.planet-fleet-page__tonnage-label {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fleet-muted);
}

.planet-fleet-page__tonnage-value {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(28px, 2vw + 18px, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--fleet-navy);
}

.planet-fleet-page__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1.5px solid var(--fleet-gold);
    border-radius: 4px;
    background: transparent;
    color: var(--fleet-gold);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.planet-fleet-page__download:hover,
.planet-fleet-page__download:focus-visible {
    background: var(--fleet-gold);
    border-color: var(--fleet-gold);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.planet-fleet-page__download i {
    font-size: 14px;
}

.planet-fleet-page__grid {
    margin-bottom: 48px;
}

/* Kart */
.planet-fleet-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--fleet-navy-deep);
    box-shadow: 0 16px 40px rgba(8, 26, 54, 0.12);
}

.planet-fleet-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.planet-fleet-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0a2b50;
    aspect-ratio: 16 / 10;
    color: inherit;
    text-decoration: none;
}

.planet-fleet-card__media:focus-visible {
    outline: 2px solid var(--fleet-gold);
    outline-offset: -2px;
    z-index: 1;
}

.planet-fleet-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.45s ease;
}

.planet-fleet-card__media:hover img,
.planet-fleet-card__media:focus-visible img {
    transform: scale(1.04);
}

.planet-fleet-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--fleet-gold);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.planet-fleet-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1 1 auto;
    padding: 22px 24px 24px;
    background: linear-gradient(180deg, var(--fleet-navy) 0%, var(--fleet-navy-deep) 100%);
    color: #fff;
}

.planet-fleet-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.planet-fleet-card__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(18px, 0.5vw + 16px, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.planet-fleet-card__dwt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    flex-shrink: 0;
    line-height: 1.15;
    white-space: nowrap;
}

.planet-fleet-card__dwt-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.planet-fleet-card__dwt-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--fleet-gold-soft);
}

.planet-fleet-card__specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
}

.planet-fleet-card__spec {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.planet-fleet-card__spec:first-child {
    padding-left: 0;
}

.planet-fleet-card__spec:last-child {
    padding-right: 0;
    border-right: none;
}

.planet-fleet-card__spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--fleet-gold-soft);
    font-size: 14px;
    flex-shrink: 0;
}

.planet-fleet-card__spec-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.planet-fleet-card__spec-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.planet-fleet-card__spec-value {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    min-height: 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffffe6;
    word-break: break-word;
}

.planet-fleet-card__flag-img {
    display: block;
    flex-shrink: 0;
    width: 32px;
    height: 20px;
    object-fit: cover;
}

.planet-fleet-card__flag-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-width: 100%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: inherit;
}

.planet-fleet-card__spec--flag .planet-fleet-card__spec-value {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.planet-fleet-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: var(--planet-brand-secondary);
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.planet-fleet-card__cta:hover,
.planet-fleet-card__cta:focus-visible {
    color: var(--fleet-gold-soft);
    text-decoration: none;
}

.planet-fleet-card__cta:focus-visible {
    outline: 2px solid var(--fleet-gold);
    outline-offset: 4px;
}

.planet-fleet-card__cta i {
    font-size: 15px;
    line-height: 1;
}

/* Alt istatistik şeridi */
.planet-fleet-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 8px;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.planet-fleet-stats--1 { grid-template-columns: minmax(0, 1fr); }
.planet-fleet-stats--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.planet-fleet-stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.planet-fleet-stats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.planet-fleet-stats__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid #e4eaf2;
}

.planet-fleet-stats__item:last-child {
    border-right: none;
}

.planet-fleet-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--fleet-gold);
    font-size: 22px;
    flex-shrink: 0;
}
.planet-fleet-stats__icon i{
    font-size: 26px;
}
.planet-fleet-stats__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.planet-fleet-stats__value {
    font-family: var(--font-heading);
    font-size: clamp(18px, 0.4vw + 16px, 22px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fleet-navy);
}

.planet-fleet-stats__label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fleet-muted);
    line-height: 1.35;
}

@media (max-width: 1199.98px) {
    .planet-fleet-card__specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 16px;
    }

    .planet-fleet-card__spec {
        padding: 0 12px;
    }

    .planet-fleet-card__spec:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    .planet-fleet-card__spec:nth-child(n + 3) {
        padding-left: 0;
    }

    .planet-fleet-stats__item {
        padding: 18px 16px;
        gap: 10px;
    }
}

@media (max-width: 991.98px) {
    .planet-fleet-page {
        padding: 56px 0 72px;
    }

    .planet-fleet-page__intro {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .planet-fleet-page__title {
        max-width: none;
    }

    .planet-fleet-page__aside {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 28px;
        padding-top: 0;
    }

    .planet-fleet-page__grid {
        margin-bottom: 36px;
    }

    .planet-fleet-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .planet-fleet-stats__item:nth-child(2n) {
        border-right: none;
    }

    .planet-fleet-stats__item:nth-child(-n + 2) {
        border-bottom: 1px solid #e4eaf2;
    }
}

@media (max-width: 767.98px) {
    .planet-fleet-page {
        padding: 40px 0 56px;
    }

    .planet-fleet-page__eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .planet-fleet-page__title {
        margin-bottom: 20px;
        padding-bottom: 16px;
        font-size: clamp(26px, 7vw, 34px);
    }

    .planet-fleet-page__title::after {
        width: 56px;
    }

    .planet-fleet-page__lead {
        font-size: 15px;
        max-width: none;
    }

    .planet-fleet-page__aside {
        flex-direction: column;
        align-items: stretch;
    }

    .planet-fleet-page__download {
        width: 100%;
    }

    .planet-fleet-card__body {
        padding: 18px 16px 20px;
        gap: 14px;
    }

    .planet-fleet-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-bottom: 12px;
    }

    .planet-fleet-card__badge {
        top: 12px;
        left: 12px;
        font-size: 10px;
        padding: 5px 12px;
    }

    .planet-fleet-card__specs {
        gap: 14px 0;
    }

    .planet-fleet-stats__item {
        padding: 16px;
    }

    .planet-fleet-stats__value {
        font-size: 17px;
    }

    .planet-fleet-stats__label {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .planet-fleet-card__specs {
        grid-template-columns: 1fr 1fr;
    }

    .planet-fleet-stats {
        grid-template-columns: 1fr;
    }

    .planet-fleet-stats__item {
        border-right: none;
        border-bottom: 1px solid #e4eaf2;
    }

    .planet-fleet-stats__item:last-child {
        border-bottom: none;
    }

    .planet-fleet-stats__item:nth-child(-n + 2) {
        border-bottom: 1px solid #e4eaf2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .planet-fleet-card__media img,
    .planet-fleet-page__download {
        transition: none;
    }

    .planet-fleet-card__media:hover img,
    .planet-fleet-card__media:focus-visible img {
        transform: none;
    }

    .planet-fleet-card__cta {
        transition: none;
    }

    .planet-fleet-page__download:hover,
    .planet-fleet-page__download:focus-visible {
        transform: none;
    }
}

/* ===== Anasayfa #filo ===== */
#filo.planet-filo {
    background-color: #D4E5FF;
}

.planet-filo .sec-title .title {
    font-family: var(--font-heading);
    color: var(--planet-brand-primary);
}

.planet-filo__head-icon {
    display: block;
    width: min(100%, 329px);
    height: auto;
    margin: 0 auto 28px;
}

.planet-filo__detail {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(10, 43, 80, 0.7);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
}

.planet-filo__detail p:last-child {
    margin-bottom: 0;
}

#filo.planet-filo .planet-fleet-stats {
    margin-top: 48px;
}

/* ===== Overlay filo cards (liste + detay “diğerler”) ===== */
.planet-filo-card {
    --filo-card-radius: 6px;
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--filo-card-radius);
    text-decoration: none;
    color: #fff;
    isolation: isolate;
}

.planet-filo-card:hover,
.planet-filo-card:focus-visible {
    color: #fff;
    text-decoration: none;
}

.planet-filo-card:focus-visible {
    outline: 2px solid var(--planet-brand-secondary, #BEA071);
    outline-offset: 3px;
}

.planet-filo-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a2b50;
}

.planet-filo-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.45s ease;
    will-change: transform;
}

.planet-filo-card:hover .planet-filo-card__media img,
.planet-filo-card:focus-visible .planet-filo-card__media img {
    transform: scale(1.06);
}

.planet-filo-card__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(10, 43, 80, 0.58) 0%,
        rgba(10, 43, 80, 0.22) 38%,
        rgba(10, 43, 80, 0) 68%
    );
}

.planet-filo-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 22px 24px 24px;
    pointer-events: none;
}

.planet-filo-card__title {
    display: block;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}

.planet-filo-card__excerpt {
    display: -webkit-box;
    margin: 0;
    max-width: 36em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 991.98px) {
    .planet-filo__head-icon {
        width: min(100%, 280px);
        margin-bottom: 22px;
    }

    .planet-filo__detail {
        font-size: 15px;
    }

    .planet-filo-card__body {
        padding: 18px 20px 20px;
    }
}

@media (max-width: 767.98px) {
    .planet-filo__head-icon {
        width: min(100%, 220px);
        margin-bottom: 18px;
    }

    .planet-filo__detail {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.7;
    }

    .planet-filo-card__body {
        padding: 16px 16px 18px;
        gap: 4px;
    }

    .planet-filo-card__title {
        font-size: 1.15rem;
    }

    .planet-filo-card__excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .planet-filo-card__gradient {
        background: linear-gradient(
            to top,
            rgba(10, 43, 80, 0.58) 0%,
            rgba(10, 43, 80, 0.2) 40%,
            rgba(10, 43, 80, 0) 68%
        );
    }
}

@media (max-width: 575.98px) {
    .planet-filo-card__media {
        aspect-ratio: 4 / 3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .planet-filo-card__media img {
        transition: none;
    }

    .planet-filo-card:hover .planet-filo-card__media img,
    .planet-filo-card:focus-visible .planet-filo-card__media img {
        transform: none;
    }
}
.planet-fleet-card__spec-icon i {
    font-size: 16px;
}