.sh-sal-root {
    --sal-black: #000000;
    --sal-white: #ffffff;
    --sal-grey: #888888;
    --sal-red: #E2001A;
    --sal-card-bg: #f3f3f3;
    --sal-container: 1650px;

    font-family: 'Inter', sans-serif;
    background: var(--sal-white);
    color: var(--sal-black);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* İstersen izolasyon için */
.sh-sal-root,
.sh-sal-root * {
    box-sizing: border-box;
}


.sh-sal-root .brand-header {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 40px 0;
    background: transparent;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.sh-sal-root .brand-header img {
    width: 200px;
    height: auto;
    pointer-events: auto;
}


/* --- DISCOUNT STRIP --- */
.sh-sal-root .discount-strip {
    width: 100%;
    background: var(--sal-black);
    color: var(--sal-white);
    padding: 22px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.sh-sal-root .discount-strip:hover {
    background: var(--sal-red);
}

.discount-strip .arrow-icon {
    transition: transform 0.3s ease;
    color: var(--sal-red);
}

.discount-strip:hover .arrow-icon {
    transform: translateX(8px);
    color: var(--sal-white);
}

.sh-sal-root .section-block {
    margin-bottom: 80px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* --- HERO SECTION --- */
.sh-sal-root .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-bottom: 60px;
}

.sh-sal-root .vimeo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.sh-sal-root .vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sh-sal-root .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.sh-sal-root .hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding-left: 8%;
    padding-right: 20px;
    text-align: left;
}

.sh-sal-root .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 25px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.sh-sal-root .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #dcdcdc;
    font-weight: 300;
    max-width: 500px;
}

.sh-sal-root .hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.sh-sal-root .cta-btn {
    text-decoration: none;
    color: var(--sal-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sh-sal-root .cta-btn:hover {
    background: var(--sal-red);
    color: var(--sal-white);
    border-color: var(--sal-red);
}

/* --- LIFESTYLE GRID --- */
.sh-sal-root .lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 40px;
    width: 100%;
}

.sh-sal-root .lifestyle-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sh-sal-root .lifestyle-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 15px;
}

.sh-sal-root .lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sh-sal-root .lifestyle-card:hover img {
    transform: scale(1.02);
}

.sh-sal-root .lifestyle-card span {
    color: var(--sal-black);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-sal-root .lifestyle-btn {
    display: inline-block;
    background: var(--sal-black);
    color: var(--sal-white);
    padding: 10px 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
}

.sh-sal-root .lifestyle-card:hover .lifestyle-btn {
    background: var(--sal-red);
}

/* --- MIDDLE CTA --- */
.sh-sal-root .middle-cta-wrapper {
    width: 100%;
    margin: 0 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.sh-sal-root .view-all-main-btn {
    display: inline-block;
    background: var(--sal-black);
    border: 2px solid var(--sal-black);
    color: var(--sal-white);
    padding: 24px 80px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
}

.sh-sal-root .view-all-main-btn:hover {
    background: var(--sal-red);
    border-color: var(--sal-red);
    color: var(--sal-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(226, 0, 26, 0.2);
}

/* --- USAGE GRID --- */
.sh-sal-root .usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    width: 100%;
}

.sh-sal-root .usage-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eee;
    overflow: hidden;
}

.sh-sal-root .usage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.sh-sal-root .usage-item:hover img {
    transform: scale(1.02);
}

/* --- GORE-TEX WIDE --- */
.sh-sal-root .gtx-wide-area {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    aspect-ratio: 1920 / 600;
    background: #222;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-sal-root .gtx-wide-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-sal-root .gtx-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.sh-sal-root .gtx-overlay h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sh-sal-root .gtx-overlay p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    margin: 15px 0 25px;
    max-width: 600px;
}

.sh-sal-root .gtx-btn {
    display: inline-block;
    background: var(--sal-white);
    color: var(--sal-black);
    padding: 16px 45px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--sal-white);
}

.sh-sal-root .gtx-btn:hover {
    background: var(--sal-red);
    border-color: var(--sal-red);
    color: var(--sal-white);
}

/* --- TECH DIVIDER --- */
.sh-sal-root .tech-divider {
    margin: 100px auto 60px;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sh-sal-root .tech-divider::before {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--sal-red);
    margin-bottom: 20px;
}

.sh-sal-root .tech-divider h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    color: var(--sal-black);
}

.sh-sal-root .tech-divider p {
    font-size: 0.9rem;
    color: var(--sal-grey);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- VIDEO BLOCKS --- */
.sh-sal-root .media-box {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.sh-sal-root .video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    background: #eee;
    overflow: hidden;
}

.sh-sal-root .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sh-sal-root .text-content {
    max-width: var(--sal-container);
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
}

.sh-sal-root .text-content .sub-label {
    color: var(--sal-red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.sh-sal-root .text-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 15px;
    letter-spacing: -1px;
    color: var(--sal-black);
}

.sh-sal-root .text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* --- SEO SECTION (DÜZELTİLEN ALAN) --- */
.sh-sal-root .seo-section {
    padding: 80px 0;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    position: relative;
}

.sh-sal-root .seo-text {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Metni kısıtlama mekanizması */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Varsayılan olarak 4 satır göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: none;
    /* Anlık açılma için */
}

.sh-sal-root .seo-text.open {
    display: block;
    /* Kısıtlamayı kaldır */
    overflow: visible;
    -webkit-line-clamp: unset;
}

.sh-sal-root .btn-more {
    background: var(--sal-white);
    border: 1px solid var(--sal-black);
    color: var(--sal-black);
    padding: 12px 30px;
    margin: 30px auto 0;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    transition: 0.3s;
}

.sh-sal-root .btn-more:hover {
    background: var(--sal-red);
    color: var(--sal-white);
    border-color: var(--sal-red);
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .sh-sal-root .hero-section {
        height: 75vh;
    }

    .sh-sal-root .vimeo-wrapper iframe {
        min-height: 75vh;
    }

    .sh-sal-root .hero-content {
        padding-left: 20px;
        text-align: center;
    }

    .sh-sal-root .hero-cta-buttons {
        justify-content: center;
    }

    .sh-sal-root .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sh-sal-root .usage-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .sh-sal-root .gtx-wide-area {
        aspect-ratio: 1 / 1.2;
    }

    .sh-sal-root .view-all-main-btn {
        width: 100%;
        padding: 18px 20px;
    }

    .sh-sal-root .seo-section {
        padding: 40px 20px 60px;
    }
}

.sh-tnf-seo {
    padding: 80px 8%;
    border-top: 1px solid var(--tnf-border);
    text-align: center;
}

.sh-tnf-seo-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.9rem;
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* JS "open" class'Ä± bunu aÃ§acak */
.sh-tnf-seo-content.open {
    max-height: 5000px;
}

.sh-tnf-seo-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px 25px;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.sh-tnf-seo-btn:hover {
    background: var(--sal-red);
    color: var(--sal-white);
    border-color: var(--sal-red);
    transition: background 0.3s ease;
}

.displaynone {
    display: none !important;
}