/* ==========================================================================
   Product Navigation Styles
   ========================================================================== */
.product-nav-section {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    padding: 0 1.25rem;
    background-color: #ffffff;
    /* position: sticky; */
    top: 80px;
    z-index: 5;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, width, padding;
}

@media (max-width: 767px) {
    .product-nav-section {
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }
}

.product-nav-section.is-stuck.is-hidden {
    transform: translateY(calc(-100% - 150px));
    transition: transform 0.28s cubic-bezier(0.55, 0, 1, 0.45);
}



.product-nav {
    /* position: sticky; */
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: start;
}

.product-nav ul {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-nav ul::-webkit-scrollbar {
    display: none;
}

.product-nav li {
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.product-nav a {
    position: relative;
    display: block;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    color: #606060;
    font-weight: 400;
    font-size: clamp(0.90rem, 1.25vw, 0.90rem);
    font-family: inherit;
    text-decoration: none;
    transition: color 0.3s ease, padding 0.3s ease;
}

/* Prevent layout shift (jerk) on hover by pre-calculating the bold text width */
.product-nav a::before {
    display: block;
    content: attr(data-title);
    font-weight: 500;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.product-nav a:hover,
.product-nav a.active {
    color: #000000;
    font-weight: 400;
}

.product-nav a:hover::after,
.product-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e31837;
}

/* ==========================================================================
   Product Features Section Styles
   ========================================================================== */

.product-features-section {
    padding: clamp(50px, 5vw, 80px) 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 50%, #cfcac2 100%);
    font-family: inherit;
}

.product-features-main-title {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    max-width: 850px;
}

.product-features-main-description {
    max-width: 800px;
    margin-bottom: clamp(32px, 10vw, 56px);
    color: #6a6a6a;
    font-size: clamp(1rem, 1.25vw, 1rem);
    line-height: 150%;

}

.product-features-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(13px, 10vw, 40px) clamp(16px, 6vw, 36px);
}

@media (min-width: 768px) {


    .product-features-wrapper {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (min-width: 992px) {
    .product-features-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-product:has(#main-header.is-scrolled) .product-nav-section.is-stuck {
        width: 98%;
        position: sticky;
        margin-inline: auto;
        border: 0;
        border-radius: 12px 12px;
        border-bottom: none;
        max-width: 1840px;
        padding: 0 20px;
        box-shadow: 0 0px 24px rgba(0, 0, 0, 0.08), inset 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .single-product:has(#main-header.is-scrolled) .product-nav-section.is-stuck a {
        padding: 12px 0;
    }
}
@media (hover: hover) and (min-width: 300px) {
    .btn-cta-contact:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
        color: #fff;
    }
    .image-btn-cta:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, var(--primary), var(--accent))
        color: #fff;
        box-shadow: 0 10px 20px rgba(204, 24, 41, 0.2);
    }
}
.product-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-feature-icon {
    display: flex;
    margin-bottom: 15px;
    color: #e31837;
}

.product-feature-icon img,
.product-feature-icon svg {
    width: clamp(24px, 2vw, 28px);
    height: clamp(24px, 2vw, 28px);
    object-fit: contain;
    aspect-ratio: 1/1;
}

.product-feature-title {
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
    font-size: clamp(1rem, 1.25vw, 1rem);
    line-height: 140%;
}

.product-feature-description {
    margin: 0;
    color: #000000;
    font-size: clamp(0.90rem, 1.25vw, 0.9rem);
    line-height: 150%;
    opacity: 0.5;
}

/* Accordion styles for product features on mobile */
.product-feature-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.product-feature-icon-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-feature-toggle {
    display: none;
}

@media (max-width: 767px) {
    .product-features-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-feature-item {
        border-bottom: 1px solid #CFCAC2;
        padding: 16px 0;
    }

    .product-feature-item:first-child {
        border-top: 1px solid #dcdcdc;
    }

    .product-feature-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .product-feature-icon-title {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .product-feature-icon {
        margin-bottom: 0;
    }

    .product-feature-title {
        margin-bottom: 0;
    }

    .product-feature-toggle {
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .product-feature-header.active .product-feature-toggle {
        transform: rotate(180deg);
    }

    .product-feature-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
        opacity: 0;
    }

    .product-feature-header.active+.product-feature-body {
        max-height: 1000px;
        opacity: 1;
        margin-top: 15px;
    }

    .product-feature-description {
        padding-left: 43px;
    }
}

/* ==========================================================================
   Product Compliance Section Styles
   ========================================================================== */

.product-compliance-section {
    padding: clamp(3.75rem, 7vw, 6rem) 1.25rem;
    background-color: #ffffff;
    font-family: inherit;
}

.product-compliance-main-title {
    margin-bottom: 1rem;
    color: #000000;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
}

.product-compliance-main-description {
    max-width: 800px;
    margin-bottom: clamp(32px, 8vw, 48px);
    color: #000000;
    font-size: clamp(0.875rem, 1.25vw, 1rem);
    line-height: 140%;
    opacity: 0.5;
}

.product-compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .product-compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.compliance-document-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F4F4F4;
    padding: clamp(16px, 2vw, 24px);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    gap: 8px;
}

.compliance-document-card:hover {
    background-color: #f0f0f0;
    border-color: #e31837;
}

.compliance-doc-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compliance-doc-icon {
    display: flex;
    color: #000000;
}

.compliance-doc-icon svg {
    width: 24px;
    height: 24px;
}

.compliance-doc-title {
    color: #000000;
    font-size: clamp(0.875rem, 1.25vw, 1rem);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.compliance-doc-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(24px, 4vw, 36px);
    height: clamp(24px, 4vw, 36px);
    background-color: #e31837;
    color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;

}

.compliance-doc-download svg {
    width: clamp(11px, 3vw, 13px);
    height: clamp(11px, 3vw, 13px);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.compliance-document-card:hover .compliance-doc-download {
    transform: translateY(-2px);
    background-color: #c11526;
}

/* ==========================================================================
   Product Recommendation Section Styles
   ========================================================================== */

.product-recommend-section {
    padding: clamp(3.75rem, 7vw, 6rem) 1.25rem;
    background-color: #ffffff;
    font-family: inherit;
}

.product-recommend-hdr {
    margin-bottom: clamp(40px, 6vw, 60px);
    text-align: left;
}

.product-recommend-title {
    color: #000000;
    font-weight: 600;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-recommend-subtitle {
    color: #000000;
    font-size: clamp(1rem, 1.25vw, 1rem);
    line-height: 140%;
    opacity: 0.5;
    max-width: 900px;
    margin: 0 auto;
}

.product-recommend-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: clamp(12px, 2vw, 24px);
    max-width: 1024px;
    margin: 0 auto;

    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-recommend-grid::-webkit-scrollbar {
    display: none;
}

.product-recommend-card {
    flex: 0 0 89%;
    scroll-snap-align: start;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    transition: transform 0.3s ease;
}

.product-recommend-card:focus{
	background: #f4f4f4 !important;
}
a.image-btn-cta.btn-cta-contact.open-cf7-popup:focus {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: #fff !important;
}
@media (min-width: 1025px) {
    .product-recommend-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(24px, 3vw, 40px);
        overflow-x: visible;
    }

    .listing-page-product-section .product-recommend-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        width: 100%;
        gap: clamp(12px, 3vw, 16px);

    }

    .product-recommend-card {
        flex: auto;
    }

}


@media (min-width: 768px) {
    .product-recommend-hdr {
        text-align: center;
    }

    .listing-page-product-section .product-recommend-card {
        flex: 0 0 45%;
    }

    .product-recommend-card {
        flex: 0 0 50%;
    }

    .product-recommend-card:hover {
        transform: translateY(-5px);
    }
}



.product-recommend-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #000000;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    z-index: 2;
}

.product-recommend-img {
    width: calc(100% + 3rem);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
    margin-inline: -1.5rem;
}

.product-recommend-thumb {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-recommend-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-recommend-card-title {
    font-size: clamp(14px, 3.75vw, 1.25rem);
    color: #000000;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product-recommend-card:hover .product-recommend-card-title {
    color: #019d9a;
}

.product-recommend-card-desc {
    color: #000000;
    font-size: 14px;
    line-height: 140%;
    opacity: 0.5;
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.product-recommend-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(24px, 5vw, 40px);
}

.product-recommend-stat {
    display: flex;
    flex-direction: column;
    padding: 0 clamp(8px, 3.5vw, 24px);
    border-right: 1px solid #dcdcdc;
    flex: 1 0 auto;
}

.product-recommend-stat:last-child {
    border-right: none;
}

.product-recommend-val {
    font-size: clamp(14px, 3.75vw, 20px);
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
    background: linear-gradient(180deg, #000 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-recommend-lbl {
    color: #606060;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(12px, 1.25vw, 14px);
    line-height: 140%;
    text-transform: capitalize;
}

.product-recommend-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #019d9a;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.25vw, 0.9rem);
    text-decoration: none;
    margin: 0 auto;
    transition: color 0.2s ease;
    padding: 8px;
}

.product-recommend-link:hover {
    color: #019d9a;
}

.product-recommend-link-icon {
    transition: transform 0.2s ease;
}

.product-recommend-link:hover .product-recommend-link-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   Tech Specifications Section Styles
   ========================================================================== */

.tech-spec-section {
    background-color: #141211;
    color: #ffffff;
    padding: clamp(3.5rem, 7vw, 6rem) 1.25rem;
    font-family: inherit;
}

.tech-spec-header {
    text-align: left;
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.tech-spec-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tech-spec-desc {
    font-size: clamp(1rem, 1.25vw, 1rem);
    max-width: 800px;
    color: #fff;
    font-family: "Google Sans";
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.5;
    margin: 0;
}

/* Tabs Navigation */
.tech-spec-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    display: none;
}

.tech-spec-tab-btn {
    background: transparent;
    color: #8c8c8c;
    border: 1px solid #333;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.tech-spec-tab-btn:focus,
.tech-spec-tab-btn:active {
    outline: none;
}

.tech-spec-tab-btn:hover {
    background: #2a2a2a;
    color: #fff;
}

.tech-spec-tab-btn.active {
    background: #e6192b;
    color: #fff;
    border-color: #e6192b;
}

/* Tabs Content */
.tech-spec-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tech-spec-pane.active {
    display: block;
}

/* Summary Cards */
.tech-spec-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}



.tech-spec-summary-card {
    padding: clamp(20px, 4vw, 24px);
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
}

.tech-spec-summary-val {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 6px 0;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    background: linear-gradient(180deg, #FFF 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-spec-summary-lbl {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.5;
}

/* Specs Grid */
.tech-spec-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-spec-grid.tech-spec-grid-two {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-spec-category {
    margin-bottom: 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 40px;
}

.tech-spec-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tech-spec-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.tech-spec-cat-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.tech-spec-cat-toggle {
    display: none;
    /* Hide toggle on desktop */
}

.tech-spec-cat-icon {
    color: #e6192b;
    display: flex;
}

.tech-spec-cat-icon .tech-spec-cat-svg,
.tech-spec-cat-icon svg {
    width: 24px;
    height: 24px;

    aspect-ratio: 1 / 1;
}

.tech-spec-cat-title {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1rem);
    font-weight: 500;
    color: #ffffff;
}

.tech-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.tech-spec-list-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    border-bottom: none;
    gap: 8px;
}

.tech-spec-list-item:last-child {
    border-bottom: none;
}

.tech-spec-label {
    color: #ffffff;
    font-size: clamp(0.85rem, 1.2vw, 0.90rem);
    text-transform: capitalize;
    line-height: 1.4;
    margin: 0;
    opacity: 0.5;
}

.tech-spec-value {
    color: #ffffff;
    font-size: clamp(0.85rem, 1.2vw, 0.90rem);
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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


@media (max-width: 991px) {
    .tech-spec-grid {
        column-count: 1;
        gap: 0;
    }

    .tech-spec-grid.tech-spec-grid-two {
        display: block;
    }

    .tech-spec-category {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .tech-spec-category {
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }

    .tech-spec-category:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.20);
    }

    .tech-spec-cat-header {
        justify-content: space-between;
        cursor: pointer;
        padding: 16px 0;
        margin-bottom: 0;
    }

    .tech-spec-cat-toggle {
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .tech-spec-cat-header.active .tech-spec-cat-toggle {
        transform: rotate(180deg);
    }

    .tech-spec-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    /* If it has the active class, expand */
    .tech-spec-cat-header.active+.tech-spec-list {
        max-height: 2000px;
        margin-bottom: 24px;
        opacity: 1;
    }

    .tech-spec-value {
        text-align: left;
    }

    .tech-spec-list-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        border-bottom: none;
        gap: 4px;
    }

    .product-recommend-img {
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .tech-spec-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-bottom: 30px;
    }

    .tech-spec-summary-card {
        background: transparent;
        padding: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .tech-spec-summary-card:last-child {
        border-right: none;
    }

    .tech-spec-summary-val {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .tech-spec-summary-lbl {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }
}

/* ==========================================================================
   Certifications Section Styles
   ========================================================================== */

.product-cert-section {
    padding: clamp(3.75rem, 7vw, 6rem) 1.25rem;
    font-family: inherit;
    color: #000000;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
}

.product-cert-main-icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-cert-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #000000;
}

.product-cert-desc {
    color: #6a6a6a;
    font-size: clamp(1rem, 1.2vw, 1rem);
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 140%;
}

.product-cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.25rem, 1vw, 1rem);
}

@media (max-width: 767px) {
    .product-cert-tags {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.product-btm-note {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 1rem;
}

.product-cert-tag {
    background: #ffffff;
    padding: clamp(0.5rem, 1.25vw, 0.75rem) clamp(0.5rem, 2vw, 1.25rem);
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 1vw, 8px);
}

.product-cert-tag-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.product-cert-tag-text {
    color: #000000;
    font-size: clamp(0.85rem, 1vw, 0.90rem);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* ==========================================================================
   Product Videos Section Styles
   ========================================================================== */

.product-videos-section {
    background-color: #ffffff;
    padding: clamp(60px, 8vw, 100px) 1.25rem;
    font-family: inherit;
}

.product-videos-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 12px;
    color: #000000;
    line-height: 1.2;
}

.product-videos-desc {
    font-size: clamp(1rem, 1.25vw, 1rem);
    color: #606060;
    max-width: 800px;
    line-height: 140%;
    margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.product-videos-desc p {
    margin-bottom: 0;
}

.product-video-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-size: 100%;
    min-height: 235px;

}

.product-video-wrapper iframe,
.product-video-wrapper video,
.product-video-wrapper .product-video-fallback-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    border: 0;
    object-fit: cover;
}

/* Fallback for aspect-ratio if not supported */
@supports not (aspect-ratio: 16 / 9) {
    .product-video-wrapper {
        padding-top: 56.25%;
    }
}

@media screen and (max-width: 991px) {
    .product-videos-section {
        padding-bottom: 0;
        overflow: hidden;
    }

    .product-video-wrapper {
        position: relative;
        width: calc(100% + 3.5rem);
        overflow: hidden;
        aspect-ratio: 16 / 9;
        margin: 0 -1.25rem;
    }
}

/* ==========================================================================
   Product Storage Media Section Styles
   ========================================================================== */

.sol-storage-section {
    padding: clamp(2.5rem, 5vw, 5rem) 1.5rem clamp(1.25rem, 3.5vw, 2.25rem);
    background: #ffffff;
    font-family: inherit;
}

.sol-storage-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin: 0 0 clamp(1.25rem, 3.5vw, 2.5rem) 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sol-storage-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   Product Hero Banner Section
   ========================================================================== */

.product-hero-banner-section {
    padding: clamp(4rem, 6vw, 8rem) 1.25rem clamp(3.25rem, 3vw, 4.5rem);
    background-color: #ffffff;
    min-height: calc(clamp(70vh, 80vw, 110dvh) - 160px);
    font-family: inherit;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-archive-hero-banner-section {
    padding: clamp(6rem, 6vw, 8rem) 1.25rem clamp(3.25rem, 3vw, 4.5rem);
    background-color: #ffffff;
    height: 625px;
    min-height: calc(clamp(550px, 90vh, 1200px) - 160px);
    min-height: calc(clamp(550px, 90svh, 1200px) - 160px);
    font-family: inherit;
    display: flex;
    align-items: self-start;
    position: relative;
    z-index: 1;
    overflow: hidden;

}

.product-hero-banner-section::before,
.product-archive-hero-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

@media (min-width: 1025px) {
    .product-archive-hero-banner-section {
        min-height: calc(clamp(70vh, 75vw, 110dvh) - 160px);
        align-items: center;
    }

    .product-hero-banner-section::before {
        transform-origin: right center;
    }

    .product-archive-hero-banner-section::before {
        transform-origin: center;
    }

    .product-hero-banner-section.is-animated::before,
    .product-archive-hero-banner-section.is-animated::before {
        animation: heroBgZoomOut 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

}

@keyframes heroBgZoomOut {
    0% {
        transform: scale(1.55) translate(1%, 0);
    }

    40% {
        transform: scale(1.25) translate(-4%, 0%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* Left Column: Content */
.hero-content-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-archive-hero-banner-section .hero-title {
	font-size: clamp(1.25rem, 3.585vw, 2.5rem);
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

.product-archive-hero-banner-section .hero-title .text-red {
    color: #e6192b;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    margin: 0 0 2rem 0;
    line-height: 1.5;
    opacity: 0.6;
    width: 100%;
    max-width: clamp(25rem, 70vw, 30rem);
}

/* Default / Light Banner Text Colors */
.hero-content-col,
.hero-subtitle,
.hero-title .text-black,
.banner-light .hero-content-col,
.banner-light .hero-subtitle,
.banner-light .hero-title .text-black {
    color: #111111;
}

/* Dark Banner Text Colors */
.banner-dark .hero-content-col,
.banner-dark .hero-subtitle,
.banner-dark .hero-title .text-black {
    color: #ffffff;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-right: 1.25rem;
    border-right: 1px solid #e0e0e0;
}

.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0;
}


.hero-stat-item .stat-value {
    font-size: clamp(1.25rem, 1.75vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(180deg, #FFF 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-item .stat-label {
    font-size: clamp(12px, 1.25vw, 14px);
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-content-col .model_name {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(17px);
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    width: max-content;
    line-height: 20px;
    font-size: 14px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: #e6192b;
    color: #ffffff;
    border: 1px solid #e6192b;
}

.btn-hero-primary:hover {
    background-color: #cc1625;
    border-color: #cc1625;
}

.btn-hero-secondary {
    background-color: transparent;
    color: #e6192b;
    border: 1px solid #e6192b;
}

.btn-hero-secondary:hover {
    background-color: #fff0f1;
}


/* Right Column: Gallery */
.hero-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-main-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 3;
    background-color: #6a6a6a;
    /* Gray background from image */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s ease-in-out;
}

.hero-thumbnails-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-thumbnail {
    width: 80px;
    height: 80px;
    background-color: #CFCAC2;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.hero-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.hero-thumbnail:hover img,
.hero-thumbnail.active img {
    opacity: 1;
}

.hero-thumbnail.active {
    border-bottom: 2px solid #E21E31;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-banner-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding-top: 2rem;
        max-width: clamp(350px, 60vw, 40rem);
        margin-inline: auto;
    }

    .hero-content-col,
    .hero-gallery-col {
        display: contents;
    }

    .hero-gallery-col {
        min-height: 340px;
    }

    .hero-title {
        order: 1;
    }

    .hero-subtitle {
        order: 2;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25rem;
    }

    .hero-content-col .model_name {
        order: 2;
    }

    .hero-stats-row {
        order: 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        width: 100%;
        margin-bottom: 0;
    }

    .hero-stat-item {
        border-right: none;
        padding-right: 0;
        align-items: center;
    }

    .hero-main-image-wrapper {
        order: 4;
        width: 100%;
        margin: 0 auto;
        margin-top: 2rem;
        aspect-ratio: 6 / 5;
    }

    .hero-thumbnails-row {
        order: 5;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: none;
    }

    .hero-thumbnails-row::-webkit-scrollbar {
        display: none;
    }

    .hero-thumbnail {
        flex-shrink: 0;
    }

    .hero-actions {
        order: 6;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 0.05rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .product-archive-hero-banner-section {
        text-align: center;
    }

    .product-archive-hero-banner-section .hero-stats-row {
        grid-template-columns: 30% 30% 40%;
        gap: 0.25rem;
        align-items: self-start;
        max-width: 360px;
        margin-inline: auto;
    }

    .product-archive-hero-banner-section .hero-content-col {
        display: flex;
        margin-inline: auto;
    }

    .product-archive-hero-banner-section .stat-value {
        font-size: clamp(1rem, 3.75vw, 1.5rem);
    }
}

/* ==========================================================================
   Product Applications Section Styles
   ========================================================================== */

.product-applications-section {
    padding: clamp(3.75rem, 5vw, 6rem) 1.25rem 0;
    background-color: #ffffff;
    font-family: inherit;
    color: #000000;
}

.product-applications-main-title {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
}

.product-applications-main-description {
    color: #606060;
    font-size: clamp(1rem, 1.25vw, 1rem);
    line-height: 1.5;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    max-width: 800px;
}

.product-applications-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-application-item {
    background-color: #F4F4F4;
    padding: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.product-application-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6192b;
}

.product-application-icon img,
.product-application-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-application-title {
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.product-application-description {
    margin: 0;
    font-size: clamp(0.9rem, 1.1vw, 0.95rem);
    color: #606060;
    line-height: 1.5;
}

.making_image_content_section_prd_arc .making-image-subtitle {
    margin-bottom: 2rem;
}
.making_image_content_section {
    position: relative;
    min-height: clamp(520px, 80vh, 1024px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: clamp(40px, 12vh, 80px) clamp(20px, 4vw, 40px);
}

@media (max-width: 768px) {
    .product-applications-wrapper {
        grid-template-columns: 1fr;
    }

    .product-nav-section {
        display: block;
    }

    .product-application-item {
        flex-direction: row;
        gap: 10px;
    }

    .product-application-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
}

.single-product .making_image_content_section {
    padding-top: clamp(1.25rem, 2vw, 2rem);
}

.single-product .making_image_content_section::before {
    background: linear-gradient(180deg, #ffffff 0%, rgb(255 255 255 / 35%) 40.01%, rgb(255 255 255 / 11%) 60.01%);
    max-height: 100vh;
}

/* Archive Product Bottom CTA Section */
.making_image_content_section_prd_arc {
    background-color: #000000;
}

section.making_image_content_section_prd_arc::before {
    background: linear-gradient(90deg, #000 0%, #000 25%, #0cc7c4 76.79%, #079996 100%) !important;
    mix-blend-mode: overlay;
    height: 100%;
    max-height: 100%;
}

.making_image_content_section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.making_image_content_section_prd_arc .making-image-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.making_image_content_section_prd_arc .making-image-content-heading {
    font-size: clamp(24px, 3.5vw, 40px);
    max-width: 875px;
    color: #ffffff;
    margin-inline: auto;
    line-height: 130%;
    font-weight: 500;
    text-transform: none;
}

.making-image-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    width: 100%;
    padding: 0 2px;
}

.making-image-content-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    line-height: 130%;
    margin-bottom: clamp(12px, 1.8vw, 20px);
    text-transform: capitalize;
} 

.making-image-subtitle {
    margin-bottom: clamp(20px, 3vw, 32px);
    max-width: 780px;
    margin-inline: auto;
    color: #000;
    text-align: center;
    font-size: clamp(16px, 1.75vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(11px, 0.75vw, 14px) clamp(22px, 3vw, 32px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
}

.pro-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 1024px) {
    .pro-container {
        padding: 0;
    }
} 


/*  CF7 POPUP CSS */
html body .cf7-popup.mdal-popup-landing {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s,
    visibility 0.45s;
}

.cf7-popup.mdal-popup-landing.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cf7-popup.mdal-popup-landing .cf7-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s;
}

.cf7-popup.mdal-popup-landing.active .cf7-popup-overlay {
  opacity: 1;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content {
  position: relative;
  max-width: 760px;
  width: calc(100% - 24px);
  padding: clamp(32px, 3.75vw, 40px) clamp(24px, 2.75vw, 30px);
  border-radius: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s;
  height: calc(100% - 100px);
  max-height: 820px;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body {
  max-height: calc(80vh - 12rem);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body::-webkit-scrollbar {
  display: none;
}

.cf7-popup.mdal-popup-landing .early-access-textarea:focus {
  outline: 0;
  color: #fff;
}

.cf7-popup.mdal-popup-landing.active .cf7-popup-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.overflow_hidden {
  overflow: hidden;
}

.cf-form-title {
  font-size: clamp(24px, 2.75vw, 36px);
  margin-bottom: clamp(24px, 3.75vw, 40px);
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

html body .cf7-popup.mdal-popup-landing .cf7-close {
  position: absolute;
  top: clamp(-12px, -1.75vw, -12px);
  right: clamp(-12px, -1.75vw, -12px);
  width: clamp(36px, 2.75vw, 42px);
  height: clamp(36px, 2.75vw, 42px);
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: clamp(20px, 3.75vw, 26px);
  cursor: pointer;
  transition: background 0.3s;
  padding: 4px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff !important;
}

html body .cf7-popup.mdal-popup-landing .cf7-close:hover {
  background: rgba(216, 216, 216, 0.8);
}

.cf7-close svg,
.cf7-close svg * {
  pointer-events: none;
}

.cf7-close svg path {
  stroke: #000000;
}

.mdal-popup-landing .popup-inner-content .news-card {
  border-radius: 1rem;
  background: 0 0;
  gap: 0;
}

.mdal-popup-landing .popup-inner-content .news-card img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  object-position: top;
}

.mdal-popup-landing .popup-inner-content .news-card .news-card-content {
  position: static;
  width: 100%;
  max-height: max-content;
  row-gap: 0.5rem;
}
.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
  width: 100%;
}

.early-access-form br,
.early-access-form p {
  margin: 0;
  padding: 0;
}

.early-access-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

.early-access-action,
.early-access-field {
  display: flex;
  flex: 1;
  position: relative;
}

.early-access-field.full {
  flex: 0 0 100%;
}

.early-access-field input:-webkit-autofill,
.early-access-field input:-webkit-autofill:active,
.early-access-field input:-webkit-autofill:focus,
.early-access-field input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a00 inset !important;
  box-shadow: 0 0 0 1000px #1a1a1a00 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  border: 1px solid;
  transition: background-color 5000s ease-in-out;
}

html body .early-access-field .early-access-input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  outline: 0;
  transition:
    border-color 0.3s,
    box-shadow 0.4s,
    background 0.3s;
}
html body .contact-popup-layout select:first-child {
    color: #878787;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
}
.cf7-popup.mdal-popup-landing .early-access-textarea:focus {
    outline: 0;
    color: #fff !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}
input.wpcf7-form-control, textarea.wpcf7-form-control{
	color: #fff !important;
}
.contact-us .early-access-input option:first-child {
  color: #999;
}
.contact-us .wpcf7-email::placeholder {
    color: #878787
}
.contact-us input[type="email"]:focus::placeholder {
    color: #999;
}
.cf7-popup-body .early-access-field input:-webkit-autofill, .cf7-popup-body .early-access-field input:-webkit-autofill:active, .cf7-popup-body .early-access-field input:-webkit-autofill:focus, .cf7-popup-body .early-access-field input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset !important;
    border: 1px solid #4C4C4C;
}
.early-access-input,
.wpcf7-form select {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wpcf7-form select option {
  background-color: #0f1115;
  color: #fff;
}

.wpcf7-form select option:checked,
.wpcf7-form select option:hover {
  background-color: #1a1d23;
  color: #000;
}

.early-access-field .early-access-input:focus,
.early-access-textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.045),
    0 0 22px rgba(255, 255, 255, 0.043);
  animation: 1.6s ease-in-out infinite alternate inputGlow;
  color: #fff;
}

@keyframes inputGlow {
  from {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.12),
      0 0 1px rgba(255, 255, 255, 0.25);
  }

  to {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.25),
      0 0 6px rgba(255, 255, 255, 0.45);
  }
}

body html input.wpcf7-form-control, textarea.wpcf7-form-control {
    width: 100%;
    min-height: 80px;
    padding: 14px 18px !important;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    resize: none;
    outline: 0;
    height: 80px;
    overflow: auto;
}
.early-access-input::placeholder,
.early-access-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.dd-field {
  position: relative;
}

.dd-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 0 0;
  padding-right: 36px;
}

.dd-field::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.early-access-action .early-access-btn {
  height: clamp(48px, 4.5vw, 50px);
  padding: 0 28px;
  max-width: 250px;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent))
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s;
  outline: 0;
}

.early-access-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff !important;
}

.early-access-btn:active {
  transform: translateY(0);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form br,
.wpcf7 form p {
  margin: 0;
  padding: 0;
  width: 100%;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  background: rgb(204 0 2 / 85%);
  backdrop-filter: blur(8px);
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  animation: 0.3s forwards errorFadeIn;
  z-index: 9;
}

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

.wpcf7 form {
  position: relative;
}

.wpcf7-response-output {
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
}
body.overflow_hidden {
    overflow: hidden !important;
}

html body .wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}
html body .wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 250px;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  text-align: center;
  padding: 40px;
  color: #fff;
  margin: 0 !important;
  animation: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both responsePopIn;
}
body html .cf7-popup-body .early-access-textarea {
    width: 100%;
    min-height: 80px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    resize: none;
    height: 80px;
    padding: 14px 18px;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-image: initial;
    background: rgba(255, 255, 255, 0.05);
    outline: 0px;
    overflow: auto;
}
@keyframes responsePopIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.wpcf7 form .wpcf7-response-output::before {
  content: "";
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  animation: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both iconScale;
}

@keyframes iconScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: linear-gradient(135deg,
      rgba(52, 211, 153, 0.15) 0,
      rgba(10, 10, 10, 0.95) 100%);
  color: #fff;
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(52, 211, 153, 0.1);
}

.wpcf7 form.sent .wpcf7-response-output::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334d399'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'%2F%3E%3C%2Fsvg%3E");
}

.wpcf7 form.failed .wpcf7-response-output {
  background: linear-gradient(135deg,
      rgba(239, 68, 68, 0.15) 0,
      rgba(10, 10, 10, 0.95) 100%);
  color: #ffd1d1;
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.wpcf7 form.failed .wpcf7-response-output::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'%2F%3E%3C%2Fsvg%3E");
}


/* Contact Us Form Start */
.contact-popup-layout .cf-subtitle-super {
  margin-bottom: 24px;
}

.contact-popup-layout .cf-form-title {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.75vw, 32px);
  line-height: 120%;
}

.contact-popup-layout .ea-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-popup-layout .dd-field::after {
  content: '';
  top: calc(50% + 11px);
  width: 8px;
  height: 8px;
  border-color: rgb(255 255 255 / 40%);
}

.contact-popup-layout select:first-child {
  color: #878787;
  font-size: 14px;
  border-radius: 6px;
  width: 100%;
}

.contact-popup-layout .early-access-field .early-access-input {
  height: 42px;
  padding: 6px 16px;
}

.post-type-archive-electres_product .contact-popup-layout .early-access-action .early-access-btn {
  height: 44px !important;
  max-width: 190px;
  font-size: 15px;
}
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border: 1px solid;
    border-radius: 0;
    padding: 10px 15px;
    max-width: 100%;
}
@media (min-width: 768px) {
  .contact-popup-layout .datasheet-right {
    width: 50%;
    padding: clamp(16px, 4vw, 12px) clamp(12px, 3vw, 40px);
    padding-right: clamp(4px, 1vw, 16px);


  }

  .contact-popup-layout .datasheet-left {
    width: 50%;
    background: linear-gradient(180deg, #019d9a, #000);
    color: white;
    padding: clamp(16px, 4vw, 80px) clamp(12px, 3vw, 30px);
  }
}

@media (max-width: 768px) {

  .contact-popup-layout .cf7-popup-content.datasheet-layout {
    padding: 0 !important;
  }

  .contact-popup-layout .datasheet-right {
    padding: 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 480px) {
  .toggle-group .toggle-item.active {
    font-size: 13px;
  }

  .toggle-group .toggle-item {
    font-size: 12px;
    padding: clamp(10px, 2.75vw, 12px) clamp(6px, 2vw, 20px);
    min-width: clamp(90px, 27vw, 150px);
  }

  .cf7-popup.mdal-popup-landing .early-access-row {
    flex-direction: column;
  }

  .cf7-popup.mdal-popup-landing .cf7-popup-content {
    padding: 40px 16px;
  }

  .cf7-popup.mdal-popup-landing .early-access-field .early-access-input {
    height: 48px;
  }

  .cf7-popup.mdal-popup-landing .early-access-action .early-access-btn {
    height: 48px;
    max-width: 100%;
  }

  .swiper-slide {
    padding-right: 20px;
  }

  .btn,
  .call_to_action,
  .card-btn-wrapper.mobile-cta {
    width: 100%;
  }

  .footer-text {
    font-weight: 400;
    max-width: 265px;
    line-height: 1.5;
    display: flex;
    text-align: center;
    justify-content: center;
    row-gap: 0.25rem;
  }

  /* 
  .image-btn-cta {
    width: 100%;
  } */
}
/* Contact Us Form End */

.brochure-form-wrapper .wpcf7 form.sent .wpcf7-response-output,
.datasheet-popup-x .wpcf7 form .wpcf7-response-output,
.mobile-cta {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.making_image_content_section {
  position: relative;
  min-height: clamp(520px, 80vh, 1024px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 12vh, 80px) clamp(20px, 4vw, 40px);
}

.making_image_content_section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 2.54%, #fff 93.25%);
  max-height: clamp(150px, 40vh, 445px);
}

.making-image-content-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #000000;
  line-height: 130%;
  margin-bottom: clamp(12px, 1.8vw, 20px);
  text-transform: capitalize;
}

.making-image-subtitle {
  margin-bottom: clamp(20px, 3vw, 32px);
  max-width: 780px;
  margin-inline: auto;
  color: #000;
  text-align: center;
  font-size: clamp(16px, 1.75vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.make-section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0.608) 30%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  max-height: 100%;
}

section.making_image_content_section.make-section-overlay:after {
  background: linear-gradient(0deg, #000000de 2.54%, rgba(0, 0, 0, 0.00) 50.25%);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.making-image-overlay {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
  width: 100%;
  padding: 0 2px;
}

.image-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.2vw, 14px) clamp(22px, 3vw, 32px);
  color: #fff;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s,
    color 0.35s;
}
.concent-box .wpcf7-list-item {
    margin: 0;
    display: block;
}
.concent-box label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.concent-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #019d9a;
    cursor: pointer;
	-webkit-appearance: auto !important;
}
input[type="checkbox"]:after
{
	content: none !important;
	position: static !important;
	-webkit-appearance: auto !important;
}
.image-btn-cta svg {
  transition: transform 0.35s;
}

.cf7-popup.mdal-popup-landing .datasheet-layout {
  display: flex;
  max-width: 1200px;
  padding: 20px;
  border: none;
  align-items: stretch;
}

.phone-input-wrapper {
  position: relative;
}

.country-flag {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.country-flag img {
  width: 24px;
  height: 24px;
  display: block;
}

.phone-input {
  padding-left: 60px !important;
}


/* .phone-input-wrapper:after {
  content: "";
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: #2a2a2a;
} */



/* LEFT PANEL */
.background-video-datasheet {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 0;
}

.background-video-datasheet video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.datasheet-left-inner {
  z-index: 1;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.datasheet-left {
  width: 50%;
  background: linear-gradient(180deg, #7a0000, #000);
  color: white;
  padding: clamp(16px, 4vw, 50px) clamp(12px, 3vw, 30px);
  position: relative;
  height: auto;
  overflow: hidden;
}

.renewable-title {
  color: #fff;
  font-size: clamp(24px, 2.75vw, 36px);
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 140%;
  margin: clamp(60px, 8.75vw, 130px) 0 clamp(24px, 9vw, 32px);
}

.datasheet-left-inner .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  /* margin-top: 40px; */
}

.datasheet-left-inner .stat-box h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(16px, 1.75vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.datasheet-left-inner .stat-box p {
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.datasheet-left-inner .social-links a:hover {
  box-shadow: none;
  opacity: 0.8;
}

/* RIGHT PANEL */
.responsive-layout {
  display: none;
}

.datasheet-right .early-access-field {
  flex-direction: column;
}

.datasheet-right {
  width: 50%;
  padding: clamp(16px, 4vw, 40px) clamp(12px, 3vw, 40px);
  padding-right: clamp(4px, 1vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acceptance-error {
  color: #ff3b3b;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: .3px;
}


/* FORM */

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

.form-field label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}


.ea-label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.ea-label span {
  color: #ff3b3b;
  margin-left: 3px;
}
.concent-box .wpcf7-list-item-label {
    font-size: 12px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.concent-box .wpcf7-list-item-label a {
    color: #019d9a;
    transition: var(--transition-standard, all 0.3s ease);
}
.contact-popup-layout .cf-subtitle-super {
    margin-bottom: 24px;
}
.cf-subtitle-super {
    margin: 0;
    font-size: clamp(14px, 1.75vw, 18px);
    color: #F2E9E3;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin-bottom: 40px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {

  .datasheet-right .early-access-row {
    flex-direction: column;
  }

  .cf-subtitle-super {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .datasheet-left {
    display: none;
  }

  .responsive-layout {
    display: block;
    margin: 0 -20px;
    position: relative;
  }

  .datasheet-right {
    width: 100%;
    padding: 0 20px 40px;
    justify-content: start;
  }

  .responsive-layout::before {
    background: linear-gradient(0deg, #000 6.33%, rgba(0, 0, 0, 0.50) 64.7%);
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .datasheet-popup .cf7-popup-content.datasheet-layout {
    padding: 0;
  }

  .brand-logo {
    margin-top: 6px;
    margin-bottom: 20px;
    padding: 0 20px;
    z-index: 9;
    position: relative;
  }

  .datasheet-popup-x .cf7-popup-content.datasheet-layout .datasheet-right {
    /* height: 80vh; */
    min-height: 350px;
    overflow: auto;
  }

  .datasheet-popup-x .dt-dwn-btn,
  .datasheet-popup-x input.wpcf7-submit {

    width: 100%;
  }

  .cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body {
    max-height: 100%;
  }
}