/* ===================================================
   PRODUCT PAGE STYLES
   Shrink Sleeve & Diğer Ürün Sayfaları
   =================================================== */


/* ---------------------------------------------------
   PRODUCT PROMO SECTION (Home Promo Style)
--------------------------------------------------- */

.product-promo {
    /* Üst sarı, alt açık gri/beyaz */
    background: linear-gradient(to bottom, #FCE300 0%, #FCE300 60%, #F5F5F5 60%, #F5F5F5 100%);
    padding: 0 90px 0;
    font-family: "Outfit", sans-serif;
}

.product-promo .container {
    max-width: 100%;
    padding: 0;
}

.product-promo-shell {
    position: relative;
}

/* 80vh'lik beyaz kart */
.product-promo-card {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    height: calc(100vh - (2*var(--header-height)));
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Sol 03 / 05 counter */
.product-promo-counter {
    position: absolute;
    left: -30px;
    top: calc(50% - 40px);
    transform: translate(-40px, -50%);
    text-align: left;
    color: #111;
    font-size: 16px;
    letter-spacing: 0.15em;
}

.product-promo-counter-current {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.product-promo-counter-sep,
.product-promo-counter-total {
    font-size: 14px;
    color: #444;
}

/* ---------------------- Ana Slider ---------------------- */

.product-promo-main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.product-promo-main .swiper-wrapper {
    height: 100%;
}

.product-promo-main .swiper-slide {
    height: auto;
}

.product-promo .promo-slide {
    display: flex;
    height: 100%;
    gap: 60px;
}

/* Sol görsel alanı */
.product-promo .promo-slide-media {
    flex: 0 0 42%;
    overflow: hidden;
    background: #fff;
}

.product-promo .promo-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sağ içerik alanı */
.product-promo .promo-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-right: 40px;
}

.product-promo .promo-slide-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
    margin-bottom: 24px;
}

.product-promo .promo-slide-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

/* CTA buton */
.product-promo .promo-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    width: 220px;
    border-radius: 4px;
    position: relative;
    font-size: 15px;
    transition: 0.25s ease;
    text-decoration: none;
}

.product-promo .promo-slide-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    content: '';
    height: 100%;
    transition: .3s all linear;
    background: #F4D324;
}

.product-promo .promo-slide-btn:hover::before {
    width: 100%;
}

.product-promo .promo-slide-btn span {
    position: relative;
    z-index: 1;
}

.product-promo .promo-slide-btn:hover span {
    color: black;
}

.product-promo .promo-slide-btn-arrow {
    font-size: 18px;
}

/* ---------------------- Promo Text Overflow & Popup ---------------------- */

.product-promo .promo-slide-content {
    overflow: hidden;
    position: relative;
}

.promo-slide-content.is-overflowing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.promo-show-all-btn {
    margin: 0px auto;
    position: absolute;
    left: 0px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    bottom: 0px;
    display: none;
    align-items: center;
    gap: 6px;
    background: #000;
    color: #FFF;
    border: none;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s ease;
}

.promo-show-all-btn:hover {
    background: #F4D324;
    color: #000;
}

.promo-show-all-btn svg {
    width: 14px;
    height: 14px;
}

.promo-slide-content.is-overflowing .promo-show-all-btn {
    display: inline-flex;
}

/* Popup Modal */
.promo-text-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.promo-text-popup-overlay.active {
    display: flex;
}

.promo-text-popup {
    background: #fff;
    border-radius: 8px;
    max-width: 820px;
    width: 100%;
    max-height: 94vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    animation: promoPopupFadeIn 0.3s ease;
}

@keyframes promoPopupFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-text-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.promo-text-popup-close:hover {
    background: #f0f0f0;
}

.promo-text-popup-close svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

.promo-text-popup h1 {
    font-size: 32px;
    font-weight: 500;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: "Outfit", sans-serif;
}

.promo-text-popup p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    font-family: "Outfit", sans-serif;
}

.promo-text-popup p:last-child {
    margin-bottom: 0;
}
@media (max-width: 1400px) {
    .product-promo .promo-slide-title { font-size: 30px; }
}
@media (max-width: 992px) {

    .promo-slide-content.is-overflowing::after,
    .promo-slide-content.is-overflowing .promo-show-all-btn {
        display: none !important;
    }

    .promo-text-popup-overlay {
        padding: 20px;
    }

    .promo-text-popup {
        padding: 32px 24px;
    }

    .promo-text-popup h1 {
        font-size: 24px;
    }
}

/* ---------------------- Thumbs & Arrows ---------------------- */

.product-promo-thumbs-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: 52%;
    margin-left: 60px;
}

/* Thumbs Swiper */
.product-promo-thumbs.swiper {
    flex: 1;
    overflow: hidden;
    width: auto;
    max-width: calc(100% - 60px);
}

.product-promo-thumbs .swiper-wrapper {
    display: flex;
    align-items: center;
}

.product-promo-thumbs .swiper-slide {
    width: 140px !important;
    flex-shrink: 0;
    cursor: pointer;
}

/* Tek tek thumb kartları */
.product-promo .promo-thumb {
    position: relative;
    overflow: hidden;
    width: 140px;
    height: 80px;
    opacity: 0.6;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Görsel tüm alanı kaplasın */
.product-promo .promo-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Başlık: defaultta görünmesin / overlay yok */
.product-promo .promo-thumb-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 13px;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.product-promo .promo-thumb-title::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    height: 2px;
    background-color: #F9D835;
    width: calc(100% - 40px);
}

/* Aktif thumb */
.product-promo-thumbs .swiper-slide-thumb-active .promo-thumb {
    opacity: 1;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid #F4D324;
    transform: translateY(-2px);
}

/* Aktif thumb'ta siyah overlay bar */
.product-promo-thumbs .swiper-slide-thumb-active .promo-thumb-title {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

/* Oklar */
.product-promo-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.product-promo-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-promo-arrows button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}


/* Breadcrumb */
.product-breadcrumb {
    padding: 24px 0px;
    margin-top: 40px;
    background: #F5F5F5;
}

.product-promo .product-breadcrumb {
    margin-top: 0;
    padding-top: 32px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-nav a {
    font-size: 14px;
    font-weight: 400;
    color: #3F3F3F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #000;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
}

.breadcrumb-separator img {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.breadcrumb-current {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}


/* ---------------------------------------------------
   PRODUCT OVERVIEW SECTION (Two Column Intro)
--------------------------------------------------- */

.product-overview {
    padding: 50px 0;
    background: #F8F8F8;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.overview-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.overview-label {
    font-size: 14px;
    font-weight: 500;
    color: #3F3F3F;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.overview-title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    line-height: 1.15;
    margin: 0;
}

.overview-right {
    padding-top: 0;
}

.overview-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .product-overview {
        padding: 60px 0;
    }

    .overview-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .product-overview {
        padding: 40px 0;
    }

    .overview-title {
        font-size: 28px;
    }

    .overview-text p {
        font-size: 15px;
    }
}


/* ---------------------------------------------------
   PRODUCT TABS SECTION
--------------------------------------------------- */

.product-section {
    padding: 50px 0;
}

.product-section--white {
    background: #fff;
}

.product-section--gray {
    background: #f7f7f7;
}

/* ---------------------------------------------------
   OVERVIEW TAB CONTENT (Inside Tabs)
--------------------------------------------------- */

.overview-tab-content {
    width: 100%;
}

.overview-tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 20px;
    align-items: flex-start;
    grid-template-areas:
        "title title"
        "image text";
}

.overview-tab-title-row {
    grid-area: title;
}

.overview-tab-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-area: image;
}

.overview-tab-label {
    font-size: 14px;
    font-weight: 500;
    color: #3F3F3F;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.overview-tab-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin: 0 0 0 0;
    white-space: nowrap;
}

.overview-tab-right {
    grid-area: text;
}

.overview-tab-right {
    overflow-y: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #cfcfcf transparent;
    /* Firefox */
}

/* Chrome, Edge, Safari */
.overview-tab-right::-webkit-scrollbar {
    width: 8px;
}

.overview-tab-right::-webkit-scrollbar-track {
    background: transparent;
    /* Beyaz zeminde sade görünür */
}

.overview-tab-right::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.overview-tab-right::-webkit-scrollbar-thumb:hover {
    background: #bcbcbc;
}

.product-section--materials .overview-tab-right {
    padding-top: 72px;
}

.product-section--materials .overview-tab-layout {
    gap: 0px 60px;
}

.product-section--materials .overview-tab-left {
    gap: 0;
}

.product-section--materials .overview-tab-title {
    font-size: 40px;
    margin-bottom: 32px;
}

.overview-tab-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.overview-tab-text p:last-child {
    margin-bottom: 0;
}

/* Materials List */
.materials-list {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.materials-list li {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin-bottom: 16px;
}

.materials-list li:last-child {
    margin-bottom: 0;
}

.materials-list li strong {
    color: #000;
}

/* Overview Tab Responsive */
@media (max-width: 992px) {
    .overview-tab-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        grid-template-areas:
            "title"
            "image"
            "text";
    }

    .overview-tab-title {
        font-size: 36px;
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .overview-tab-title {
        font-size: 28px;
        white-space: normal;
    }

    .overview-tab-text p {
        font-size: 15px;
    }
}

.product-tab-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.2;
}

.product-tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.product-tab-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-tab-image {
    border-radius: 0;
    overflow: hidden;
}

.product-tab-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-tab-info {
    padding-top: 0;
}

.product-tab-text {
    margin-bottom: 0;
}

.product-tab-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-tab-text p:last-child {
    margin-bottom: 0;
}

.product-tab-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.product-tab-list li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.8;
}

.product-tab-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3F3F3F;
}

/* CTA Button */
.product-tab-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 226px;
    padding: 20px 28px;
    background: #000;
    border-radius: 4px;
    color: #F8F8F8;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-tab-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #FCE300;
    transition: width 0.3s linear;
    z-index: 0;
}

.product-tab-cta:hover::before {
    width: 100%;
}

.product-tab-cta:hover {
    color: #000;
}

.product-tab-cta span,
.product-tab-cta img {
    position: relative;
    z-index: 1;
}

.product-tab-cta:hover img {
    filter: brightness(0);
}

.product-tab-cta img {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}


/* ---------------------------------------------------
   PRODUCT SWIPER (Products Tab)
--------------------------------------------------- */

.product-swiper-wrapper {
    width: 100%;
    position: relative;
}

.product-swiper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.product-swiper-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.product-swiper {
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease;
}

.product-swiper .swiper-wrapper {
    transition-timing-function: ease;
}

.product-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 20px;
    align-items: flex-start;
}

.product-slide-left {
    display: flex;
    flex-direction: column;
}

.product-slide-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
    grid-column: 1 / -1;
}

.product-slide-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #3F3F3F;
    margin-bottom: 24px;
    line-height: 1.5;
}

.product-slide-image {
    overflow: hidden;
}

.product-slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-slide-right {
    padding-top: 0;
    position: relative;
}

.product-slide-right.is-clamped .product-slide-text {
    overflow: visible;
}

.product-slide-right.is-expanded .product-slide-text {
    overflow: visible;
}

.product-slide-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    font-family: "Outfit", sans-serif;
    transition: color 0.3s ease;
}

.product-slide-toggle:hover {
    color: #B8A200;
}

.product-slide-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.product-slide-right.is-expanded .product-slide-toggle svg {
    transform: rotate(180deg);
}

.product-slide-right.is-clamped .product-slide-toggle,
.product-slide-right.is-expanded .product-slide-toggle {
    display: inline-flex;
}

.product-slide-text {
    margin-bottom: 32px;
}

.product-slide-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-slide-text ul li {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
}

.product-slide-text ul {
    list-style: disc;
    margin-bottom: 16px;
    padding-left: 20px;
}

.product-slide-text p:last-child {
    margin-bottom: 0;
}

.product-slide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-slide-list li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.8;
}

.product-slide-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3F3F3F;
}

/* Swiper Navigation */
.product-swiper-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 0;
    padding-top: 0;
    z-index: 10;
}

.product-swiper-pagination {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.product-swiper-pagination .swiper-current {
    font-size: 32px;
    font-weight: 500;
    color: #000;
}

.product-swiper-pagination .swiper-separator {
    font-size: 14px;
    font-weight: 400;
    color: #3F3F3F;
}

.product-swiper-pagination .swiper-total {
    font-size: 14px;
    font-weight: 400;
    color: #3F3F3F;
}

.product-swiper-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-swiper-prev,
.product-swiper-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-swiper-prev:hover,
.product-swiper-next:hover {
    border-color: #000;
}

.product-swiper-next {
    background: #FCE300;
    border-color: #FCE300;
}

.product-swiper-next:hover {
    background: #000;
    border-color: #000;
}

.product-swiper-next:hover img {
    filter: brightness(0) invert(1);
}

.product-swiper-prev img,
.product-swiper-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}


/* ---------------------------------------------------
   SERVICES SWIPER (Services Tab)
--------------------------------------------------- */

.services-swiper-wrapper {
    width: 100%;
}


/* ---------------------------------------------------
   FINISHING SWIPER (Finishing Tab)
--------------------------------------------------- */

.finishing-swiper-wrapper {
    width: 100%;
}

.finishing-swiper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.finishing-swiper-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.finishing-swiper {
    width: 100%;
    overflow: hidden;
}

.finishing-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.finishing-slide-left {
    display: flex;
    flex-direction: column;
}

.finishing-slide-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.2;
}

.finishing-slide-image {
    position: relative;
    overflow: hidden;
}

.finishing-slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.finishing-slide-right {
    padding-top: 0px;
}

.finishing-swiper-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.finishing-swiper-pagination {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.finishing-swiper-pagination .finishing-current {
    font-size: 32px;
    font-weight: 500;
    color: #000;
}

.finishing-swiper-pagination .finishing-separator,
.finishing-swiper-pagination .finishing-total {
    font-size: 14px;
    font-weight: 400;
    color: #3F3F3F;
}

.finishing-swiper-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.finishing-swiper-prev,
.finishing-swiper-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.finishing-swiper-prev:hover,
.finishing-swiper-next:hover {
    border-color: #000;
}

.finishing-swiper-next {
    background: #FCE300;
    border-color: #FCE300;
}

.finishing-swiper-next:hover {
    background: #000;
    border-color: #000;
}

.finishing-swiper-next:hover img {
    filter: brightness(0) invert(1);
}

.finishing-swiper-prev img,
.finishing-swiper-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.services-swiper {
    width: 100%;
    overflow: visible;
}

.services-swiper .swiper-wrapper {
    overflow: visible;
}

.services-swiper .swiper-slide {
    width: 286px;
    height: 400px;
}

/* Service Card */
.service-card {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-gradient {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 50px;
    background: radial-gradient(46.74% 46.98% at 50% 50%, rgba(252, 227, 0, 0.80) 0%, rgba(252, 227, 0, 0.00) 100%);
    z-index: 1;
}

.service-card-image {
    position: relative;
    z-index: 2;
    padding: 16px 16px 0 16px;
}

.service-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 20px 16px 16px 16px;
    line-height: 1.4;
    flex: 1;
}

.service-card-number {
    font-size: 24px;
    font-weight: 500;
    color: #FCE300;
    padding: 0 16px 20px 16px;
}

/* Services Bottom Section */
.services-swiper-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 0;
    gap: 60px;
}

.services-swiper-text {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 700px;
}

.services-text-line {
    width: 60px;
    height: 2px;
    background: #3F3F3F;
    flex-shrink: 0;
    margin-top: 12px;
}

.services-description {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin: 0;
}

.services-swiper-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.services-swiper-prev,
.services-swiper-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-swiper-prev:hover,
.services-swiper-next:hover {
    border-color: #000;
}

.services-swiper-next {
    background: #FCE300;
    border-color: #FCE300;
}

.services-swiper-next:hover {
    background: #000;
    border-color: #000;
}

.services-swiper-next:hover img {
    filter: brightness(0) invert(1);
}

.services-swiper-prev img,
.services-swiper-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}


/* ---------------------------------------------------
   SERVICES CAROUSEL (First Active + Text, Arrow Slide)
--------------------------------------------------- */

.services-carousel-wrapper {
    width: 100%;
}

.services-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.services-carousel-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.services-carousel {
    overflow: hidden;
    width: 100%;
    height: 440px;
}

.services-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

/* Her bir item: kart + text (aktif olunca text görünür) */
.service-carousel-item {
    flex-shrink: 0;
    display: flex;
    gap: 0;
    transition: width 0.5s ease;
    position: relative;
}

/* Sadece kart görünür (inactive) - 1 birim */
.service-carousel-item:not(.active) {
    width: 240px;
}

/* Aktif: kart + text = 4 birim (1 kart + 3 text) */
.service-carousel-item.active {
    width: calc(240px * 4 + 16px * 3);
}

/* Kart */
.service-carousel-card {
    flex-shrink: 0;
    width: 240px;
    height: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-carousel-item.active .service-carousel-card {
    background: #000;
    border-color: #000;
}

.service-carousel-card-image {
    padding: 12px 12px 0 12px;
}

.service-carousel-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.service-carousel-card-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 16px 12px 8px 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0;
}

.service-carousel-item.active .service-carousel-card-title {
    color: #fff;
}

.service-carousel-card-number {
    font-size: 20px;
    font-weight: 500;
    color: #3F3F3F;
    position: absolute;
    bottom: 16px;
    left: 12px;
    transition: color 0.3s ease;
}

.service-carousel-item.active .service-carousel-card-number {
    color: #FCE300;
}

/* Text alanı - sadece aktif olunca görünür */
.service-carousel-text {
    width: calc(240px * 3 + 16px * 2);
    overflow: hidden;
    opacity: 0;
    padding-left: 32px;
    position: absolute;
    left: 240px;
    top: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-carousel-item.active .service-carousel-text {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.service-carousel-text-title {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.service-carousel-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.service-carousel-text p:last-child {
    margin-bottom: 0;
}

/* Navigation */
.services-carousel-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.services-carousel-prev,
.services-carousel-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-carousel-prev:disabled,
.services-carousel-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.services-carousel-prev:not(:disabled):hover,
.services-carousel-next:not(:disabled):hover {
    border-color: #000;
}

.services-carousel-next:not(:disabled) {
    background: #FCE300;
    border-color: #FCE300;
}

.services-carousel-next:not(:disabled):hover {
    background: #000;
    border-color: #000;
}

.services-carousel-next:not(:disabled):hover img {
    filter: brightness(0) invert(1);
}

.services-carousel-prev img,
.services-carousel-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-carousel {
        height: 340px;
    }

    .service-carousel-item:not(.active) {
        width: 200px;
    }

    .service-carousel-item.active {
        width: calc(200px * 4 + 16px * 3);
    }

    .service-carousel-card {
        width: 200px;
        height: 340px;
    }

    .service-carousel-text {
        width: calc(200px * 3 + 16px * 2);
        left: 200px;
    }

    .service-carousel-card-image img {
        height: 160px;
    }
}

@media (max-width: 992px) {
    .services-carousel {
        height: 340px;
    }

    .services-carousel-title {
        font-size: 32px;
    }

    .service-carousel-item:not(.active) {
        width: 160px;
    }

    .service-carousel-item.active {
        width: calc(160px + 320px + 16px);
    }

    .service-carousel-card {
        width: 160px;
        height: 340px;
    }

    .service-carousel-text {
        width: 320px;
        left: 160px;
        padding-left: 16px;
    }

    .service-carousel-card-image img {
        height: 160px;
    }

    .service-carousel-text-title {
        font-size: 22px;
    }

    .service-carousel-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-carousel {
        height: 300px;
    }

    .service-carousel-item:not(.active) {
        width: 140px;
    }

    .service-carousel-item.active {
        width: calc(140px + 280px + 16px);
    }

    .service-carousel-card {
        width: 140px;
        height: 300px;
    }

    .service-carousel-text {
        width: 280px;
        left: 140px;
        padding-left: 12px;
    }

    .service-carousel-card-image img {
        height: 140px;
    }

    .service-carousel-card-title {
        font-size: 14px;
    }

    .service-carousel-text-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .services-carousel {
        height: auto;
    }

    .services-carousel-title {
        font-size: 28px;
    }

    .service-carousel-item:not(.active) {
        width: 120px;
    }

    .service-carousel-item.active {
        width: 100%;
        flex-direction: column;
    }

    .service-carousel-card {
        width: 120px;
        height: 260px;
    }

    .service-carousel-item.active .service-carousel-card {
        width: 100%;
        height: auto;
    }

    .service-carousel-text {
        position: static;
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-top: 16px;
    }

    .service-carousel-card-image img {
        height: 120px;
    }

    .service-carousel-card-title {
        font-size: 13px;
    }

    .service-carousel-text-title {
        font-size: 18px;
    }
}


/* ---------------------------------------------------
   FINISHING TAB (Single Page Layout)
--------------------------------------------------- */

.finishing-content {
    width: 100%;
}

.finishing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.finishing-left {
    display: flex;
    flex-direction: column;
}

.finishing-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.2;
}

.finishing-image {
    overflow: hidden;
}

.finishing-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.finishing-right {
    padding-top: 72px;
}

.finishing-intro {
    margin-bottom: 32px;
}

.finishing-intro p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin: 0;
}

.finishing-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.finishing-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #E0E0E0;
    padding-left: 24px;
    position: relative;
}

.finishing-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    line-height: 1;
    color: #000;
}

.finishing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.finishing-item-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0 0 12px 0;
}

.finishing-item p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin: 0;
}

.finishing-text {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    margin: 0;
}

.finishing-note {
    padding: 20px;
    background: #F8F8F8;
}

.finishing-note p {
    font-size: 14px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Finishing Responsive */
@media (max-width: 992px) {
    .finishing-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .finishing-title {
        font-size: 32px;
    }

    .finishing-right {
        padding-top: 0;
    }

    .finishing-slide-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .finishing-slide-title {
        font-size: 32px;
    }

    .finishing-slide-right {
        padding-top: 0;
    }

}

@media (max-width: 576px) {
    .finishing-title {
        font-size: 28px;
    }

    .finishing-slide-title {
        font-size: 28px;
    }

    .finishing-item-title {
        font-size: 16px;
    }

    .finishing-intro p,
    .finishing-item p {
        font-size: 15px;
    }
}


/* ---------------------------------------------------
   MARKETS SLIDER (Markets Tab - Custom Fade Slider)
--------------------------------------------------- */

.markets-slider-wrapper {
    width: 100%;
    padding: 60px 0 40px 0;
}

/* 5 Fixed Circles Container */
.markets-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Circle base styles */
.market-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background: linear-gradient(180deg, #FCE300 0%, rgba(252, 227, 0, 0.3) 100%);
    flex-shrink: 0;
    position: relative;
}

.market-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.market-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Small circles (edges) */
.market-circle-sm {
    width: 160px;
    height: 160px;
}

/* Medium circles (adjacent to center) */
.market-circle-md {
    width: 240px;
    height: 240px;
}

/* Large circle (center/active) */
.market-circle-lg {
    width: 340px;
    height: 340px;
}

/* Gray outer ring for center circle only */
.market-circle-lg::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid #E0E0E0;
}

/* Active title below center circle */
.market-active-title {
    font-size: 18px;
    font-weight: 400;
    color: #3F3F3F;
    text-align: center;
    margin-top: 24px;
    transition: opacity 0.3s ease;
}

/* Markets Navigation */
.markets-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.markets-slider-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.markets-slider-pagination .pagination-dot {
    width: 10px;
    height: 10px;
    background: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.markets-slider-pagination .pagination-dot.active {
    background: #000;
}

.markets-slider-prev,
.markets-slider-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.markets-slider-prev:hover,
.markets-slider-next:hover {
    border-color: #000;
}

.markets-slider-next {
    background: #FCE300;
    border-color: #FCE300;
}

.markets-slider-next:hover {
    background: #000;
    border-color: #000;
}

.markets-slider-next:hover img {
    filter: brightness(0) invert(1);
}

.markets-slider-prev img,
.markets-slider-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

/* Market Overlay Modal */
.market-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 40px;
}

.market-overlay.active {
    opacity: 1;
    visibility: visible;
}

.market-overlay-content {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.market-overlay.active .market-overlay-content {
    transform: translateY(0);
}

.market-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #F8F8F8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.market-overlay-close:hover {
    background: #FCE300;
}

.market-overlay-close svg {
    width: 20px;
    height: 20px;
}

.market-overlay-inner {
    padding: 60px;
}

.market-overlay-title {
    font-size: 36px;
    font-weight: 400;
    color: #000;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.market-overlay-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #3F3F3F;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.market-overlay-text p {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.8;
    margin: 0;
}

/* Market Overlay Responsive */
@media (max-width: 768px) {
    .market-overlay {
        padding: 20px;
    }

    .market-overlay-inner {
        padding: 40px 24px;
    }

    .market-overlay-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .market-overlay-title {
        font-size: 28px;
        padding-right: 40px;
    }

    .market-overlay-subtitle {
        font-size: 16px;
    }

    .market-overlay-text p {
        font-size: 15px;
    }
}


/* ---------------------------------------------------
   MARKETS SHOWCASE
--------------------------------------------------- */

.markets-showcase {
    width: 100%; position: relative;
    --markets-showcase-height: min(610px, calc(100vh - var(--header-height) - 80px));
}

.markets-showcase-main {
    width: 100%;
    height: var(--markets-showcase-height);
}

.markets-showcase-main .swiper-slide {
    height: 100%;
}

.markets-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.markets-grid-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.markets-showcase-shell {
    display: flex; position: relative;
    background: #000;
    height: 100%;
    min-height: 0;
}

.markets-showcase-panel {
    display: flex;
    width: 70%; z-index: 5;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 48px 48px;
    color: #fff;
    position: relative;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 70%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
}

.markets-showcase-copy {
    max-width: 800px;
}

.markets-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: #FCE300;
    font-size: 20px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.markets-showcase-label::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
}

.markets-showcase-lead {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    color: #fff;
}

.markets-showcase-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.4;
}

.markets-showcase-thumbs {
    width: 100%;
    overflow: hidden;
}

.markets-thumbs-dock {
    padding: 0 48px 24px;
    position: absolute;
    z-index: 6; bottom: 0; left: 0;
    pointer-events: none;
    width: 1200px;
}

.markets-thumbs-dock .markets-showcase-thumbs {
    pointer-events: auto;
    margin: 0px;
}

.markets-showcase-thumbs .swiper-wrapper {
    align-items: flex-start;
}

.markets-showcase-thumbs .swiper-slide {
    width: 160px;
    flex-shrink: 0;
}

.markets-thumb {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    text-align: left;
}

.markets-thumb-image {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1.4 / 0.78;
    overflow: hidden;
    background: #111;
    opacity: 0.42;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.markets-thumb-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

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

.markets-thumb-title {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.2;
}

.markets-thumb.active .markets-thumb-image,
.markets-thumb:hover .markets-thumb-image {
    opacity: 1;
    transform: translateY(-2px);
}

.markets-thumb.active .markets-thumb-image {
    box-shadow: inset 0 -3px 0 #FCE300; padding-bottom: 3px;
}

.markets-thumb.active {
    color: #fff;
}

.markets-showcase-media {
    position: absolute;
    min-height: 100%; width: 50%;
    overflow: hidden;
    background: #111;
    right: 0px; top: 0px;
}

.markets-showcase-image-wrap {
    position: absolute;
    inset: 0;
}

.markets-showcase-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 80%);
    z-index: 1;
    pointer-events: none;
}

.markets-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.markets-showcase-main .swiper-slide-active .markets-showcase-image {
    transform: scale(1);
}

.markets-grid-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.markets-showcase-nav {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.markets-showcase-prev,
.markets-showcase-next {
    width: 42px;
    height: 42px;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.markets-showcase-prev:hover,
.markets-showcase-next:hover {
    border-color: #000;
}

.markets-showcase-next {
    background: #FCE300;
    border-color: #FCE300;
}

.markets-showcase-next:hover {
    background: #000;
    border-color: #000;
}

.markets-showcase-next:hover img {
    filter: brightness(0) invert(1);
}

.markets-showcase-prev img,
.markets-showcase-next img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.markets-showcase-prev img {
    filter: brightness(0);
}

.markets-showcase-next img {
    filter: brightness(0);
}

@media (max-width: 992px) {
    .markets-showcase {
        --markets-showcase-height: auto;
    }

    .markets-showcase-main {
        height: auto;
    }

    .markets-showcase-main .swiper-slide {
        height: auto;
    }

    .markets-grid-title {
        font-size: 32px;
    }

    .markets-showcase-shell {
        grid-template-columns: 1fr;
        height: auto;
    }

    .markets-showcase-panel {
        order: 2;
        width: 100%;
        padding: 34px 28px 28px;
    }

    .markets-showcase-media {
        min-height: 420px;
    }

    .markets-showcase-copy {
        max-width: none;
    }

    .markets-showcase-thumbs .swiper-slide {
        width: 140px;
    }

    .markets-thumbs-dock {
        margin-top: 0;
        padding: 18px 28px 0;
        background: #000;
    }

    .markets-thumbs-dock .markets-showcase-thumbs {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .markets-showcase-shell {
        min-height: auto;
    }

    .markets-showcase-media {
        min-height: 320px;
    }

    .markets-showcase-panel {
        padding: 26px 20px 18px;
    }

    .markets-showcase-label {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .markets-showcase-lead {
        font-size: 20px;
    }

    .markets-showcase-text {
        font-size: 16px;
        line-height: 1.55;
    }

    .markets-showcase-thumbs .swiper-slide {
        width: 110px;
    }

    .markets-thumbs-dock {
        padding: 16px 20px 0;
    }

    .markets-thumb-title {
        margin-top: 8px;
        font-size: 15px;
    }

    .markets-showcase-nav {
        right: 14px;
        bottom: 14px;
    }

    .markets-showcase-prev,
    .markets-showcase-next {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .markets-grid-title {
        font-size: 28px;
    }

    .markets-showcase-media {
        min-height: 260px;
    }

    .markets-showcase-label {
        font-size: 14px;
    }

    .markets-showcase-lead {
        font-size: 18px;
    }

    .markets-showcase-text {
        font-size: 15px;
    }

    .markets-showcase-thumbs {
        overflow: visible;
    }

    .markets-showcase-thumbs .swiper-slide {
        width: 96px;
    }

    .markets-thumb-title {
        font-size: 14px;
    }
}


/* ---------------------------------------------------
   RELATED PRODUCTS / SEE OTHER PRODUCTS
--------------------------------------------------- */

.related-products {
    padding: 50px 0;
    background: #F8F8F8;
}

.related-products-header {
    margin-bottom: 60px;
}

.related-products-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3F3F3F;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-products-label span:first-child {
    width: 24px;
    height: 2px;
    background: #3F3F3F;
}

.related-products-title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}

/* Grid */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.related-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

/* Circle */
.related-product-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(225deg, #FCE300 0%, #FFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.related-product-circle img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay - default hidden */
.related-product-overlay {
    position: absolute;
    top: 13px;
    left: 13px;
    right: 13px;
    bottom: 13px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-product-overlay-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

/* Product Name */
.related-product-name {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F3F;
    text-align: center;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== HOVER EFFECT ========== */
.related-product-card:hover .related-product-circle img {
    opacity: 0.3;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.related-product-card:hover .related-product-name {
    opacity: 0;
}


/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 1600px) {
    .markets-showcase {
        --markets-showcase-height: min(610px, calc(100vh - var(--header-height) - 80px));
    }
    .markets-showcase-text{ font-size: 14px;}
    .markets-thumbs-dock{ max-width: 900px; }
    .product-section{ padding: 30px 0px; }
    .related-products-title,.markets-grid-title,.services-carousel-title{ font-size: 30px; }
    .service-carousel-card{ height: 340px; }
}

@media (max-width: 1200px) {
    .product-promo {
        padding: 60px 60px 100px;
    }

    .product-promo-counter {
        left: -20px;
        transform: translate(-30px, -50%);
    }

    .related-products-grid {
        gap: 24px;
    }

    .related-product-overlay-text {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .product-promo {
        padding: 40px 30px 80px;
    }

    .product-promo-card {
        height: auto;
        min-height: auto;
        padding: 20px;
    }

    .product-promo .promo-slide {
        flex-direction: column;
        gap: 30px;
    }

    .product-promo .promo-slide-media {
        flex: 0 0 auto;
        width: 100%;
    }

    .product-promo .promo-slide-content {
        margin-top: 0;
    }

    .product-promo .promo-slide-title {
        font-size: 28px;
    }

    .product-promo-counter {
        display: none;
    }

    .product-promo-thumbs-nav {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }

    .product-promo-arrows {
        flex-direction: row;
    }

    .product-breadcrumb {
        padding: 20px 0px;
    }

    .product-intro {
        padding: 60px 0;
    }

    .product-intro-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .product-intro-title {
        font-size: 36px;
    }

    .product-intro-right {
        padding-top: 0;
    }

    /* Sections */
    .product-section {
        padding: 60px 0;
    }

    .related-products {
        padding: 50px 0;
    }

    .related-products-title {
        font-size: 36px;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .related-product-overlay {
        padding: 15px;
    }

    .related-product-overlay-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 50px 0;
    }

    .product-slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-slide-title {
        font-size: 20px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .finishing-slide-inner {
        grid-template-columns: 1fr;
    }

    .overview-tab-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .overview-tab-title {
        font-size: 28px !important;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-promo {
        padding: 30px 20px 60px;
    }

    .product-promo .promo-slide-title {
        font-size: 24px;
    }

    .product-promo .promo-slide-text {
        font-size: 14px;
    }

    .product-promo .promo-slide-btn {
        width: 100%;
        justify-content: center;
    }

    .product-promo-thumbs-nav {
        flex-direction: column;
        gap: 15px;
    }

    .product-breadcrumb {
        padding: 15px 20px;
    }

    /* Sections */
    .product-section {
        padding: 40px 0;
    }

    .product-tab-text p {
        font-size: 15px;
    }

    .product-tab-cta {
        padding: 12px 24px;
        font-size: 13px;
    }

    .related-products {
        padding: 50px 0;
    }

    .related-products-header {
        margin-bottom: 40px;
    }

    .related-products-title {
        font-size: 28px;
    }

    .related-products-grid {
        gap: 24px;
    }

    .related-product-overlay {
        padding: 12px;
    }

    .related-product-overlay-text {
        font-size: 11px;
    }

    .related-product-name {
        font-size: 14px;
    }
}


/* ---------------------------------------------------
   HEADLINE SECTION
--------------------------------------------------- */

.product-headline-section {
    padding: 80px 0 140px;
}

.product-headline-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-headline-left {
    flex: 1;
}

.product-headline-kicker {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #3F3F3F;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.product-headline {
    font-size: 64px;
    font-weight: 200;
    color: #3F3F3F;
    line-height: 1.15;
}

.product-headline-text {
    flex: 1;
    font-size: 16px;
    font-weight: 300;
    color: #3F3F3F;
    line-height: 1.7;
    padding-top: 12px;
}
