.details-hero {
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.details-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 29, 67, 0.96) 0%,
            rgba(22, 51, 107, 0.84) 52%,
            rgba(22, 51, 107, 0.36) 100%
        );
}

.details-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 85px;
    padding-bottom: 90px;
}

.details-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 500;
}

.details-breadcrumb a {
    transition: color 0.2s ease;
}

.details-breadcrumb a:hover {
    color: var(--white);
}

.details-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
}

.details-breadcrumb span {
    color: var(--accent);
}

.details-hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.details-hero-content > p {
    max-width: 680px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 17px;
    line-height: 1.75;
}

.details-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.details-overview-section {
    padding: 105px 0;
    background: var(--white);
}

.details-overview-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    align-items: center;
    gap: 80px;
}

.details-main-image {
    height: 590px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe5ec;
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.13);
}

.details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-image-label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: rgba(22, 51, 107, 0.88);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.details-image-label i {
    color: var(--accent);
}

.details-overview-content h2 {
    margin-bottom: 24px;
}

.details-overview-content p {
    color: var(--muted);
}

.details-overview-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    margin-top: 32px;
}

.details-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.details-back-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.details-back-link:hover i {
    transform: translateX(-4px);
}

.details-features-section {
    padding: 100px 0;
    background: var(--light);
}

.details-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.details-section-heading p {
    color: var(--muted);
}

.details-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.details-feature-card {
    min-width: 0;
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.details-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 130, 32, 0.38);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.08);
}

.details-feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 21px;
    border-radius: 11px;
    background: rgba(245, 130, 32, 0.11);
    color: var(--accent);
    font-size: 21px;
}

.details-feature-card h3 {
    margin-bottom: 11px;
    color: var(--primary);
    font-size: 16px;
}

.details-feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.details-specifications-section {
    padding: 105px 0;
    background: var(--white);
}

.details-specifications-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);
    align-items: center;
    gap: 80px;
}

.details-specifications-content > p {
    max-width: 620px;
    color: var(--muted);
}

.specification-table {
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.specification-row {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.specification-row:last-child {
    border-bottom: 0;
}

.specification-label,
.specification-value {
    padding: 15px 18px;
}

.specification-label {
    height: 100%;
    display: flex;
    align-items: center;
    background: var(--light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.specification-value {
    color: var(--muted);
    font-size: 13px;
}

.details-consultation-card {
    padding: 42px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.16);
}

.consultation-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 12px;
    background: rgba(245, 130, 32, 0.15);
    color: var(--accent);
    font-size: 23px;
}

.consultation-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.details-consultation-card h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 25px;
}

.details-consultation-card p {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.details-gallery-section {
    padding: 100px 0;
    background: var(--light);
}

.details-gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.details-gallery-header h2 {
    margin-bottom: 0;
}


.details-gallery-item {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #dfe5ec;
}

.details-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}

.details-gallery-item {
    height:270px;
}

.details-gallery-large{
    grid-row:auto;
}

.details-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.details-gallery-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(22, 51, 107, 0.52);
    color: var(--white);
    font-size: 23px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.details-gallery-item:hover img {
    transform: scale(1.05);
}

.details-gallery-item:hover .details-gallery-overlay {
    opacity: 1;
}

.details-cta-section {
    padding: 90px 0;
    background: var(--accent);
    text-align: center;
}

.details-cta-content {
    max-width: 780px;
}

.details-cta-label {
    display: inline-block;
    margin-bottom: 21px;
    padding: 8px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.details-cta-section h2 {
    color: var(--white);
}

.details-cta-section p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.84);
}

.breeze-combinations-section {
    padding: 100px 0;
    background: var(--light);
}

.breeze-combinations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.breeze-combination-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.breeze-combination-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,130,32,.35);
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.breeze-combination-image {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.breeze-combination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.breeze-combination-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(22,51,107,.55);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity .25s ease;
}

.breeze-combination-card:hover img {
    transform: scale(1.06);
}

.breeze-combination-card:hover
.breeze-combination-overlay {
    opacity: 1;
}

.breeze-combination-content {
    padding: 20px;
    text-align: center;
}

.breeze-combination-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.breeze-combination-content h3 {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.45;
}

.breeze-combination-item,
.details-gallery-item {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.breeze-combinations-section {
    padding: 100px 0;
    background: var(--light);
}

.breeze-combinations-section .details-section-heading {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.breeze-combinations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.breeze-combination-item {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #dfe5ec;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.breeze-combination-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.breeze-combination-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 29, 67, 0.02) 35%,
            rgba(10, 29, 67, 0.9) 100%
        );
    pointer-events: none;
}

.breeze-combination-info {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}

.breeze-combination-code {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.breeze-combination-name {
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.image-view-icon {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(10, 29, 67, 0.72);
    color: var(--white);
    font-size: 14px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    backdrop-filter: blur(7px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.breeze-combination-item:hover img {
    transform: scale(1.05);
}

.breeze-combination-item:hover .image-view-icon,
.breeze-combination-item:focus-visible .image-view-icon {
    opacity: 1;
    transform: translateY(0);
}

.breeze-combination-item:focus-visible,
.details-gallery-item:focus-visible {
    outline: 3px solid rgba(245, 130, 32, 0.35);
    outline-offset: 3px;
}

.details-gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.details-gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 35px;
}

.details-gallery-header h2 {
    margin-bottom: 0;
}

.details-gallery-description {
    max-width: 400px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

.details-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 18px;
}

.details-gallery-item,
.details-gallery-item:nth-child(n) {
    width: 100%;
    height: 280px;
    min-width: 0;
    position: relative;
    display: block;
    grid-column: auto;
    grid-row: auto;
    overflow: hidden;
    border-radius: 12px;
    background: #dfe5ec;
    cursor: pointer;
}

.details-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.details-gallery-overlay {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(22, 51, 107, 0.38);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.details-gallery-item:hover img {
    transform: scale(1.05);
}

.details-gallery-item:hover .details-gallery-overlay,
.details-gallery-item:focus-visible .details-gallery-overlay {
    opacity: 1;
}

.details-gallery-item:hover .image-view-icon,
.details-gallery-item:focus-visible .image-view-icon {
    opacity: 1;
    transform: translateY(0);
}

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-lightbox.is-open {
    display: flex;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(3, 10, 24, 0.94);
    cursor: zoom-out;
    backdrop-filter: blur(7px);
}

.product-lightbox-dialog {
    width: min(1180px, 100%);
    height: min(820px, calc(100vh - 56px));
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-content {
    width: calc(100% - 150px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-lightbox-image-wrapper {
    min-height: 0;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.product-lightbox-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-lightbox-image-wrapper img.is-loaded {
    opacity: 1;
}

.product-lightbox-loading {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    color: var(--white);
    font-size: 28px;
    pointer-events: none;
}

.product-lightbox-loading.is-visible {
    display: grid;
}

.product-lightbox-footer {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
}

.product-lightbox-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.product-lightbox-footer span {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.product-lightbox-close,
.product-lightbox-navigation {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-lightbox-close:hover,
.product-lightbox-navigation:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.product-lightbox-close {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 19px;
}

.product-lightbox-navigation {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 18px;
    transform: translateY(-50%);
}

.product-lightbox-navigation:hover {
    transform: translateY(-50%) scale(1.05);
}

.product-lightbox-navigation[hidden] {
    display: none;
}

.product-lightbox-previous {
    left: 0;
}

.product-lightbox-next {
    right: 0;
}

@media (max-width: 1050px) {

    .breeze-combinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .details-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 820px) {

    .breeze-combinations-section,
    .details-gallery-section {
        padding: 75px 0;
    }

    .details-gallery-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .details-gallery-description {
        max-width: 100%;
        text-align: left;
    }

    .product-lightbox {
        padding: 18px;
    }

    .product-lightbox-dialog {
        height: calc(100vh - 36px);
    }

    .product-lightbox-content {
        width: calc(100% - 110px);
    }

    .product-lightbox-navigation {
        width: 45px;
        height: 45px;
    }

}

@media (max-width: 620px) {

    .breeze-combinations-grid,
    .details-gallery-grid {
        grid-template-columns: 1fr;
    }

    .breeze-combination-item {
        height: 300px;
    }

    .details-gallery-item,
    .details-gallery-item:nth-child(n) {
        height: 245px;
        grid-template-rows: none;
    }

    .image-view-icon {
        width: 39px;
        height: 39px;
        opacity: 1;
        transform: none;
    }

    .product-lightbox {
        padding: 10px;
    }

    .product-lightbox-dialog {
        width: 100%;
        height: calc(100vh - 20px);
        display: block;
    }

    .product-lightbox-content {
        width: 100%;
        height: 100%;
        padding: 54px 0 70px;
    }

    .product-lightbox-image-wrapper {
        border-radius: 8px;
    }

    .product-lightbox-close {
        width: 42px;
        height: 42px;
        top: 2px;
        right: 2px;
    }

    .product-lightbox-navigation {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 5px;
        transform: none;
    }

    .product-lightbox-navigation:hover {
        transform: scale(1.04);
    }

    .product-lightbox-previous {
        left: 2px;
    }

    .product-lightbox-next {
        right: 2px;
    }

    .product-lightbox-footer {
        min-height: 58px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 10px 55px 0;
        text-align: center;
    }

    .product-lightbox-footer p,
    .product-lightbox-footer span {
        width: 100%;
    }

}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width:1050px){

    .breeze-combinations-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .details-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:620px){

    .breeze-combinations-grid{
        grid-template-columns:1fr;
    }

    .details-gallery-grid{
        grid-template-columns:1fr;
    }

    .details-gallery-item{
        height:220px;
    }

}

@media (max-width: 1050px) {

    .details-overview-grid {
        gap: 45px;
    }

    .details-main-image {
        height: 520px;
    }

    .details-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .details-specifications-grid {
        gap: 45px;
    }

}

@media (max-width: 820px) {

    .details-hero {
        min-height: 520px;
    }

    .details-hero-overlay {
        background: rgba(10, 29, 67, 0.87);
    }

    .details-overview-section,
    .details-features-section,
    .details-specifications-section,
    .details-gallery-section {
        padding: 75px 0;
    }

    .details-overview-grid,
    .details-specifications-grid {
        grid-template-columns: 1fr;
    }

    .details-main-image {
        height: 500px;
    }

}

@media (max-width: 620px) {

    .details-hero {
        min-height: 560px;
    }

    .details-hero-content {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .details-hero-content > p {
        font-size: 15px;
    }

    .details-hero-actions {
        flex-direction: column;
    }

    .details-hero-actions .btn {
        width: 100%;
    }

    .details-main-image {
        height: 390px;
    }

    .details-overview-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .details-feature-grid {
        grid-template-columns: 1fr;
    }

    .specification-row {
        grid-template-columns: 1fr;
    }

    .specification-label {
        border-bottom: 1px solid var(--border);
    }

    .details-consultation-card {
        padding: 30px 24px;
    }

    .details-gallery-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .details-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 240px);
    }

    .details-gallery-large {
        grid-row: auto;
    }

    .details-cta-section {
        padding: 72px 0;
    }

}

.details-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.details-hero-meta span {
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
}

.details-image-code {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(22, 51, 107, 0.92);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.details-main-image {
    position: relative;
}

.details-overview-lead {
    color: #253750;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

.details-full-description {
    margin-top: 18px;
    color: #667085;
    font-size: 15px;
    line-height: 1.9;
}

.details-section-description {
    max-width: 640px;
    margin: 14px auto 0;
    color: #6b7587;
    line-height: 1.7;
    text-align: center;
}

.product-configurations-list {
    display: grid;
    gap: 45px;
    margin-top: 45px;
}

.product-configuration-group {
    padding: 28px;
    border: 1px solid #e1e6ee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 42px rgba(26, 43, 73, 0.07);
}

.product-configuration-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-configuration-number {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #16336b;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.product-configuration-heading span:not(
    .product-configuration-number
) {
    display: block;
    margin-bottom: 4px;
    color: #788397;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-configuration-heading h3 {
    margin: 0;
    color: #162d59;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.product-configuration-no-image {
    min-height: 120px;
    padding: 25px;
    border: 1px dashed #ccd4e0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #7a8597;
    background: #f8fafc;
}

.product-media-empty-section {
    padding: 80px 0;
    background: #f6f8fb;
}

.product-media-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 55px 30px;
    border: 1px solid #e0e6ee;
    border-radius: 20px;
    text-align: center;
    background: #ffffff;
}

.product-media-empty-icon,
.product-not-found-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #16336b;
    background: #eaf0ff;
    font-size: 26px;
}

.product-media-empty h2 {
    margin: 0 0 12px;
    color: #16336b;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
}

.product-media-empty p {
    max-width: 490px;
    margin: 0 auto;
    color: #6d7889;
    line-height: 1.75;
}

.product-not-found {
    min-height: 72vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: #f6f8fb;
}

.product-not-found-content {
    text-align: center;
}

.product-not-found-code {
    display: block;
    margin-bottom: 6px;
    color: #1f3c88;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.product-not-found h1 {
    margin: 0 0 14px;
    color: #16336b;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 5vw, 56px);
}

.product-not-found p {
    max-width: 530px;
    margin: 0 auto 28px;
    color: #6d7889;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .product-configuration-group {
        padding: 20px;
    }

    .product-configuration-heading {
        align-items: flex-start;
    }

    .product-configuration-heading h3 {
        font-size: 19px;
    }

    .details-hero-meta {
        margin-top: 17px;
    }
}