/* ==========================================================================
   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;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.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;
}

/* 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;
}

.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);
    }
}

.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, 1.25rem);
    line-height: 140%;
    opacity: 0.5;
    max-width: 800px;
    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: 1200px;
    margin: 0 auto;

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

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

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

    .product-recommend-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(24px, 3vw, 40px);
        overflow-x: visible;
    }
}

.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;
}

@media (min-width: 768px) {
    .product-recommend-card {
        flex: auto;
    }

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



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

.product-recommend-img {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
    aspect-ratio: 3/3;
}

.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(1rem, 2vw, 1.5rem);
    color: #000000;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
}

.product-recommend-card-desc {
    color: #000000;
    font-size: clamp(0.85rem, 1.25vw, 1rem);
    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(0.85rem, 1.25vw, 1.25rem);
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
}

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

.product-recommend-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #e31837;
    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: #c11526;
}

.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;
    }

}

@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);
}

.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(65vh, 65vw, 100dvh) - 160px);
    font-family: inherit;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-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-hero-banner-section::before {
        transform-origin: right center;
        /* 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;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.hero-title .text-red {
    color: #e6192b;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1rem);
    margin: 0 0 2rem 0;
    line-height: 1.5;
    max-width: 90%;
}

/* 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;
    background: linear-gradient(180deg, #ffffff 20%, #ffffff 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-item .stat-label {
    font-size: 0.90rem;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
}

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

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    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.75rem;
    }

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

    .hero-title {
        order: 1;
    }

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

    .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: calc(100% + 2.5rem);
        margin: 0 -1.25rem;
        margin-top: 1rem;
        aspect-ratio: 4 / 3;
    }

    .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;
    }

    .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: 1.25rem;
    }

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

/* ==========================================================================
   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;
}

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

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

.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%, rgba(255, 255, 255, 0.00) 60.01%);
    max-height: 100vh;
}