
/* ==========================================================
   Window Film Home — Hero Banner (wf-hero)
   ========================================================== */

.wf-hero__inner img{
    width: 100%;
    border-radius: 0 0 30px 30px;
}

/* ==========================================================
   Window Film Home — Sunshield Lineup cards (wf-lineup)
   ========================================================== */
.wf-lineup__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.wf-lineup__card {
    background: #2c347f;
    border-radius: 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    margin-bottom: 13%;
}

.wf-lineup__content {
    padding: 36px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wf-lineup__title {
    margin: 0;
    color: #ffffff;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(22px, 1vw + 16px, 30px);
    letter-spacing: 0.2px;
}

.wf-lineup__copy {
    margin: 0;
    color: #ffffff;
    line-height: 1.55;
    font-weight: 400;
    min-height: 120px;
}

.wf-lineup__card .white_main_btn {
    align-self: flex-start;
}

.wf-lineup__media {
    display: block;
    width: 100%;
    height: auto;
    margin-top: auto;
    position: relative;
    bottom: -11%;
}

@media (max-width: 960px) {
    .wf-lineup__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wf-lineup__card {
        max-height: 254px;
        margin-bottom: 35%;
    }

    .wf-lineup__content {
        padding: 28px 24px 0;
        gap: 18px;
    }

    .wf-lineup__media {
        bottom: 6%;
    }
}

/* ==========================================================
   Window Film Home — Feature icons row (wf-features)
   ========================================================== */
.wf-features__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    justify-items: center;
}

.wf-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    max-width: 200px;
}

.wf-features__icon {
    width: clamp(100px, 9vw, 150px);
    height: auto;
    display: block;
}

.wf-features__label {
    color: #8b8b8b;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .wf-features__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 18px;
    }

    .wf-features__item {
        flex: 0 0 calc((100% - 36px) / 3);
        max-width: 140px;
        gap: 12px;
    }
}

/* ==========================================================
   Product Detail — Hero (pd-hero)
   ========================================================== */
.pd-hero__top {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 11px;
    align-items: stretch;
    max-height: 233px;
    overflow: hidden;
}

.pd-hero__photo {
    overflow: hidden;
    max-height: 233px;
}

.pd-hero__photo img {
    width: 100%;
    height: 100%;
    max-height: 233px;
    object-fit: cover;
    display: block;
}

.pd-hero__plate {
    background: url("../assets/images/new-window/product-name-bg.jpg") center/cover no-repeat;
    padding: 32px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    max-height: 233px;
}

.pd-hero__pill {
    align-self: flex-start;
    background: #cc1f36;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    border-radius: 12px;
    padding: 14px 100px 14px 19px;
    font-size: clamp(20px, 1.4vw + 8px, 30px);
    letter-spacing: 0.3px;
}

.pd-hero__tag {
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    text-align: center;
    font-size: clamp(16px, 1vw + 6px, 22px);
}

.pd-hero__rule {
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 28px 0;
    opacity: 1;
}

.pd-hero__body {
    display: grid;
    grid-template-columns: .5fr 1fr;
    grid-template-areas:
        "title media"
        "copy  media";
    column-gap: 85px;
    position: relative;
    align-items: start;
}

.pd-hero__body::before {
    content: "";
    position: absolute;
    left: 35%;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 78%;
    background: #d8d8d8;
}

.pd-hero__title {
    grid-area: title;
    color: #2c347f;
    margin: 0;
    padding-right: 30px;
}

.pd-hero__copy {
    grid-area: copy;
    padding-right: 30px;
}

.pd-hero__copy p {
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.6;
}

.pd-hero__copy p:last-child {
    margin-bottom: 0;
}

.pd-hero__media {
    grid-area: media;
    padding-left: 30px;
    align-self: center;
}

.pd-hero__media img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .pd-hero__top {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .pd-hero__photo {
        display: none;
    }

    .pd-hero__plate {
        align-items: flex-start;
        padding: 28px 22px;
        gap: 14px;
    }

    .pd-hero__pill {
        padding: 10px 28px;
    }

    .pd-hero__tag {
        align-self: flex-start;
        text-align: left;
    }

    .pd-hero__rule {
        display: none;
    }

    .pd-hero__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "media"
            "copy";
        column-gap: 0;
        row-gap: 18px;
    }

    .pd-hero__body::before {
        display: none;
    }

    .pd-hero__title {
        padding: 28px 0 14px;
        border-bottom: 1px solid #d8d8d8;
        text-align: center;
    }

    .pd-hero__copy,
    .pd-hero__media {
        padding: 0;
    }
}

/* ==========================================================
   Product Detail — Highlights / Advantages (pd-info)
   ========================================================== */

.pd-info {
    background: #F5F5F5;
}
.pd-info__tabs {
    display: none;
}

.pd-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pd-info__panel {
    background: #ffffff;
    border: 1px solid #d8dae3;
    overflow: hidden;
}

.pd-info__panel:first-child {
    border-right: none;
}

.pd-info__header {
    margin: 0;
    background: #2c347f;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.pd-info__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
    padding: 40px 50px;
}

.pd-info__pill {
    background: #eaebf2;
    color: #1a1a1a;
    text-align: center;
    padding: 12px 14px;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .pd-info__tabs {
        display: flex;
        background: #ffffff;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 18px;
    }

    .pd-info__tab {
        flex: 1;
        border: none;
        background: #ffffff;
        color: #2c347f;
        padding: 16px 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 160ms ease, color 160ms ease;
    }

    .pd-info__tab.is-active {
        background: #2c347f;
        color: #ffffff;
    }

    .pd-info__grid {
        grid-template-columns: 1fr;
        gap: 0;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .pd-info__panel {
        display: none;
        border: none;
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .pd-info__panel:first-child {
        border-right: none;
    }

    .pd-info__panel.is-active {
        display: block;
    }

    .pd-info__header {
        display: none;
    }

    .pd-info__pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 12px;
        padding: 6px;
    }

    .pd-info__pill {
        background: #ffffff;
        border-radius: 999px;
        padding: 12px 22px;
        flex: 0 0 auto;
    }
}

/* ==========================================================
   Product Detail — 3-Tab Specs Block (pd-tabs)
   ========================================================== */
.pd-tabs__nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.pd-tabs__tab {
    flex: 0 0 auto;
    min-width: 290px;
    border: none;
    background-color: transparent;
    background-image: none;
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 18px 50px;
    cursor: pointer;
    text-align: center;
    transition: color 160ms ease;
    position: relative;
    z-index: 0;
    filter: drop-shadow(2px -4px 5.3px rgba(0, 0, 0, 0.15));
}

.pd-tabs__tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    z-index: -1;
    transition: background-color 160ms ease;
}

.pd-tabs__tab:first-child::before {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}

.pd-tabs__tab:not(:first-child)::before {
    clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}

.pd-tabs__tab:first-child {
    z-index: 3;
}

.pd-tabs__tab:not(:first-child) {
    margin-left: -30px;
}

.pd-tabs__tab:nth-child(2) {
    z-index: 2;
}

.pd-tabs__tab:nth-child(3) {
    z-index: 1;
}

.pd-tabs__tab.is-active::before {
    background-color: #2c347f;
}

.pd-tabs__tab.is-active {
    color: #ffffff;
    z-index: 5;
}

.pd-tabs__content {
    border: 1px solid #2c347f;
    background: #FCFAFD;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

.pd-tabs__panel {
    display: none;
    padding: 30px;
}

.pd-tabs__panel.is-active {
    display: block;
}

.pd-tabs__scroll {
    width: 100%;
}

.pd-glance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.pd-glance-table th,
.pd-glance-table td {
    padding: 16px 28px;
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #cfd2e8;
    vertical-align: middle;
}

.pd-glance-table tr:last-child th,
.pd-glance-table tr:last-child td {
    border-bottom: none;
}

.pd-glance-table th {
    background: #eaebf2;
    text-align: right;
    font-weight: 700;
    width: 10%;
    white-space: nowrap;
}

.pd-glance-table td {
    background: #ffffff;
    text-align: left;
}

.pd-glance-table__divider {
    background: transparent !important;
    width: 0;
    padding: 0 !important;
}

.pd-perf-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.pd-perf-table thead th {
    background: #2c347f;
    color: #ffffff;
    padding: 12px 8px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #2c347f;
    text-align: center;
    white-space: nowrap;
    line-height: 1.25;
}

.pd-perf-table thead th:first-child {
    text-align: left;
    padding-left: 16px;
    min-width: 180px;
}

.pd-perf-table tbody td {
    padding: 11px 8px;
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: center;
    border: 1px solid #d8dae3;
    background: #ffffff;
}

.pd-perf-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    background: #eaebf2;
    padding-left: 16px;
    white-space: nowrap;
}

.pd-illustration {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    align-items: center;
    gap: 30px;
    padding: 20px 40px;
}

.pd-illustration__image {
    display: block;
    margin: auto;
    max-height: 350px;
}

.pd-illustration__image_mob {
    /* width: 100%; */
    height: auto;
    display: none;
}

.pd-illustration__labels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pd-illustration__labels li {
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    padding-left: 14px;
    position: relative;
}

.pd-illustration__labels li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #2c347f;
    font-weight: 700;
}

.pd-tabs__legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 60px;
    margin-top: 36px;
    padding: 0 30px;
}

.pd-tabs__legend ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-tabs__legend li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.pd-tabs__legend b {
    font-weight: 700;
}

.pd-tabs__note {
    margin: 24px 30px 0;
    color: #2c347f;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

@media (max-width: 768px) {
    .pd-tabs__nav {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
        padding-bottom: 6px;
    }
    .pd-tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .pd-illustration__image{
        display: none;
    }

    .pd-illustration__image_mob {
        display: block;
        width: 100%;
    }

    .pd-tabs__tab {
        flex-shrink: 0;
        clip-path: none !important;
        background-image: none;
        background-color: #ffffff;
        border: 1px solid #2c347f;
        border-radius: 6px;
        min-width: auto;
        padding: 12px 22px;
        font-size: 14px;
        position: relative;
    }
    .pd-tabs__tab::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        clip-path: inherit;
        display: block;
        z-index: -1;
        filter: drop-shadow(2px -4px 5.3px rgba(0, 0, 0, 0.15));
    }

    .pd-tabs__tab:first-child::before,
    .pd-tabs__tab:not(:first-child)::before {
        clip-path: none;
    }

    .pd-tabs__tab:not(:first-child) {
        margin-left: 0;
    }

    .pd-tabs__tab.is-active {
        background-image: none;
        background-color: #2c347f;
        color: #ffffff;
    }

    .pd-tabs__content {
        margin-top: 0;
    }

    .pd-tabs__panel {
        padding: 16px;
    }

    .pd-tabs__scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pd-glance-table,
    .pd-perf-table {
        min-width: 700px;
    }

    .pd-illustration {
        /* grid-template-columns: 1fr; */
        padding: 0;
        /* gap: 20px; */
    }

    .pd-tabs__legend {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0 6px;
    }

    .pd-tabs__legend li {
        grid-template-columns: 60px 1fr;
    }

    .pd-tabs__note {
        margin: 20px 6px 0;
    }
}

/* ==========================================================
   Window Film Contact — Banner (wf-contact-banner)
   ========================================================== */
.wf-contact-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wf-contact-banner__bg {
    display: block;
    width: 100%;
    height: auto;
}

.wf-contact-banner__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%;
    padding: 0 20px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
}

/* ==========================================================
   Window Film Contact — Inquiry Form (wf-contact-form)
   ========================================================== */
.wf-contact-form__heading {
    color: #cc1f36;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(15px, 0.6vw + 12px, 20px);
    margin: 0 0 28px;
}

.wf-contact-form__card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(15, 22, 50, 0.08);
    padding: 50px 60px 44px;
    overflow: hidden;
}

.wf-contact-form__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2c347f 0%, #2c347f 50%, #cc1f36 50%, #cc1f36 100%);
}

.wf-contact-form__topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 44px;
}

.wf-contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-contact-form__group-title {
    color: #0a0d2c;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 6px;
    border-bottom: 2px solid #cc1f36;
    width: fit-content;
    margin-bottom: 6px;
}

.wf-contact-form__option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #2c2c2c;
}

.wf-contact-form__option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: var(--stroke-weight-2, 2px) solid var(--color-blue-87, #D8DBE6);
    background: var(--color-grey-98, #F8F9FC);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    margin: 0;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.wf-contact-form__option input[type="radio"]:checked {
    background: #E32B24;
    border-color: #E32B24;
}

.wf-contact-form__option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wf-contact-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 20px;
}

.wf-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wf-contact-form__field--full {
    grid-column: 1 / -1;
}

.wf-contact-form__field > label {
    color: #0a0d2c;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.wf-contact-form__field input,
.wf-contact-form__field select,
.wf-contact-form__field textarea {
    width: 100%;
    background: #f5f6f9;
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #2c2c2c;
    outline: none;
}

.wf-contact-form__field input::placeholder,
.wf-contact-form__field textarea::placeholder {
    color: #b0b3c0;
}

.wf-contact-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='%232c2c2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
    color: #b0b3c0;
}

.wf-contact-form__field textarea {
    resize: none;
    min-height: 120px;
}

.wf-contact-form__submit {
    display: block;
    margin: 36px auto 0;
    background: #cc1f36;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 52px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: background-color 160ms ease;
}

.wf-contact-form__submit:hover {
    background: #b41a2e;
}

@media (max-width: 768px) {
    .wf-contact-banner__bg {
        height: 157px;
    }
    .wf-contact-form__card {
        padding: 28px 22px 30px;
        border-radius: 10px;
    }

    .wf-contact-form__topics {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .wf-contact-form__group {
        padding-bottom: 16px;
        border-bottom: 1px solid #e8e8ee;
    }

    .wf-contact-form__group:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .wf-contact-form__fields {
        column-gap: 14px;
        row-gap: 16px;
    }

    .wf-contact-form__submit {
        width: 100%;
        max-width: 320px;
        margin-top: 28px;
    }
}