.other-details-hero {
    min-height: 585px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.other-details-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.3) 100%
        );
}

.other-details-hero-content {
    position: relative;
    z-index: 2;
    padding: 85px 0 90px;
}

.other-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;
}

.other-details-breadcrumb a {
    transition: color 0.2s ease;
}

.other-details-breadcrumb a:hover {
    color: var(--white);
}

.other-details-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
}

.other-details-breadcrumb span {
    color: var(--accent);
}

.other-details-hero h1 {
    max-width: 800px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.other-details-hero-content > p {
    max-width: 700px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 17px;
    line-height: 1.75;
}

.other-details-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.other-details-overview {
    padding: 105px 0;
    background: var(--white);
}

.other-details-overview-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    align-items: center;
    gap: 80px;
}

.other-details-main-image {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe5ec;
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.13);
}

.other-details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-details-image-note {
    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);
}

.other-details-image-note i {
    color: var(--accent);
}

.other-details-overview-content h2 {
    margin-bottom: 24px;
}

.other-details-overview-content p {
    color: var(--muted);
}

.other-details-overview-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    margin-top: 32px;
}

.other-details-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.other-details-back-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.other-details-back-link:hover i {
    transform: translateX(-4px);
}

.other-details-gallery {
    padding: 100px 0;
    background: var(--light);
}

.other-details-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.other-details-gallery-heading h2 {
    margin-bottom: 0;
}

.other-details-gallery-heading > p {
    max-width: 390px;
    margin: 0 0 4px;
    color: var(--muted);
    text-align: right;
}

.other-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.other-gallery-item,
.other-gallery-item.other-gallery-featured {
    width: 100%;
    height: 280px;
    min-width: 0;
    position: relative;
    display: block;
    grid-column: auto;
    grid-row: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 13px;
    background: #dfe5ec;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.07);
}

.other-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.other-gallery-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(22, 51, 107, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.other-gallery-view {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.other-gallery-item:hover img {
    transform: scale(1.05);
}

.other-gallery-item:hover .other-gallery-overlay,
.other-gallery-item:focus-visible .other-gallery-overlay {
    opacity: 1;
}

.other-gallery-item:hover .other-gallery-view,
.other-gallery-item:focus-visible .other-gallery-view {
    opacity: 1;
    transform: translateY(0);
}

.other-gallery-item:focus-visible {
    outline: 3px solid rgba(245, 130, 32, 0.35);
    outline-offset: 3px;
}

.other-details-features {
    padding: 100px 0;
    background: var(--white);
}

.other-details-section-heading {
    max-width: 730px;
    margin: 0 auto 48px;
    text-align: center;
}

.other-details-section-heading p {
    color: var(--muted);
}

.other-details-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.other-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;
}

.other-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);
}

.other-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;
}

.other-details-feature-card h3 {
    margin-bottom: 11px;
    color: var(--primary);
    font-size: 16px;
}

.other-details-feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.other-details-specifications {
    padding: 105px 0;
    background: var(--light);
}

.other-details-specifications-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);
    align-items: center;
    gap: 80px;
}

.other-specification-content > p {
    max-width: 620px;
    color: var(--muted);
}

.other-specification-table {
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}

.other-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);
}

.other-specification-row:last-child {
    border-bottom: 0;
}

.other-specification-label,
.other-specification-value {
    padding: 15px 18px;
}

.other-specification-label {
    height: 100%;
    display: flex;
    align-items: center;
    background: #eef1f5;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.other-specification-value {
    color: var(--muted);
    font-size: 13px;
}

.other-project-card {
    padding: 42px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.16);
}

.other-project-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;
}

.other-project-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.other-project-card h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 25px;
}

.other-project-card p {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

html.viewer-open,
body.viewer-open {
    overflow: hidden;
}

.other-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.other-image-viewer.open {
    display: flex;
}

.other-viewer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(3, 10, 24, 0.94);
    cursor: zoom-out;
    backdrop-filter: blur(7px);
}

.other-viewer-content {
    width: min(1030px, calc(100% - 150px));
    height: min(820px, calc(100vh - 56px));
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.other-viewer-content > img {
    width: 100%;
    min-height: 0;
    flex: 1;
    display: block;
    object-fit: contain;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.other-viewer-footer {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
}

.other-viewer-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.other-viewer-counter {
    position: static;
    flex: 0 0 auto;
    padding: 0;
    transform: none;
    background: transparent;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.other-viewer-close,
.other-viewer-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;
}

.other-viewer-close:hover,
.other-viewer-navigation:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.other-viewer-close:focus-visible,
.other-viewer-navigation:focus-visible {
    outline: 3px solid rgba(245, 130, 32, 0.35);
    outline-offset: 3px;
}

.other-viewer-close {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 28px;
    right: max(28px, calc(50% - 590px));
    z-index: 5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 19px;
}

.other-viewer-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%);
}

.other-viewer-navigation:hover {
    transform: translateY(-50%) scale(1.05);
}

.other-viewer-navigation[hidden] {
    display: none;
}

.other-viewer-previous {
    left: max(28px, calc(50% - 590px));
}

.other-viewer-next {
    right: max(28px, calc(50% - 590px));
}

@media (max-width: 820px) {

    .other-image-viewer {
        padding: 18px;
    }

    .other-viewer-content {
        width: calc(100% - 110px);
        height: calc(100vh - 36px);
    }

    .other-viewer-navigation {
        width: 45px;
        height: 45px;
    }

    .other-viewer-previous {
        left: 18px;
    }

    .other-viewer-next {
        right: 18px;
    }

    .other-viewer-close {
        top: 18px;
        right: 18px;
    }

}

@media (max-width: 620px) {

    .other-image-viewer {
        padding: 10px;
    }

    .other-viewer-content {
        width: 100%;
        height: calc(100vh - 20px);
        padding: 54px 0 70px;
    }

    .other-viewer-content > img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    .other-viewer-close {
        width: 42px;
        height: 42px;
        top: 12px;
        right: 12px;
    }

    .other-viewer-navigation {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .other-viewer-navigation:hover {
        transform: scale(1.04);
    }

    .other-viewer-previous {
        left: 12px;
    }

    .other-viewer-next {
        right: 12px;
    }

    .other-viewer-footer {
        min-height: 58px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 10px 55px 0;
        text-align: center;
    }

    .other-viewer-footer p,
    .other-viewer-counter {
        width: 100%;
    }

}

.other-viewer-close,
.other-viewer-navigation {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    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;
}

.other-viewer-close:hover,
.other-viewer-navigation:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.other-viewer-close:focus-visible,
.other-viewer-navigation:focus-visible {
    outline: 3px solid rgba(245, 130, 32, 0.35);
    outline-offset: 3px;
}

.other-viewer-close {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 28px;
    right: max(28px, calc(50% - 590px));
    z-index: 5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 19px;
}

.other-viewer-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%);
}

.other-viewer-navigation:hover {
    transform: translateY(-50%) scale(1.05);
}

.other-viewer-previous {
    left: max(28px, calc(50% - 590px));
}

.other-viewer-next {
    right: max(28px, calc(50% - 590px));
}

.other-viewer-counter {
    position: absolute;
    right: max(103px, calc(50% - 515px));
    bottom: 28px;
    left: auto;
    padding: 0;
    transform: none;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 820px) {

    .other-image-viewer {
        padding: 18px;
    }

    .other-image-viewer img {
        width: calc(100% - 110px);
        height: calc(100vh - 94px);
        max-height: calc(100vh - 94px);
    }

    .other-viewer-navigation {
        width: 45px;
        height: 45px;
    }

    .other-viewer-previous {
        left: 18px;
    }

    .other-viewer-next {
        right: 18px;
    }

    .other-viewer-close {
        top: 18px;
        right: 18px;
    }

    .other-viewer-counter {
        right: 73px;
        bottom: 18px;
    }

}

@media (max-width: 620px) {

    .other-image-viewer {
        padding: 10px;
    }

    .other-image-viewer img {
        width: 100%;
        height: calc(100vh - 144px);
        max-width: 100%;
        max-height: calc(100vh - 144px);
        margin-bottom: 50px;
        border-radius: 8px;
    }

    .other-viewer-close {
        width: 42px;
        height: 42px;
        top: 12px;
        right: 12px;
    }

    .other-viewer-navigation {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .other-viewer-navigation:hover {
        transform: scale(1.04);
    }

    .other-viewer-previous {
        left: 12px;
    }

    .other-viewer-next {
        right: 12px;
    }

    .other-viewer-counter {
        right: 50%;
        bottom: 25px;
        transform: translateX(50%);
    }

}

.other-details-cta {
    padding: 90px 0;
    background: var(--accent);
    text-align: center;
}

.other-details-cta-content {
    max-width: 780px;
}

.other-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;
}

.other-details-cta h2 {
    color: var(--white);
}

.other-details-cta p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1050px) {

    .other-details-overview-grid {
        gap: 45px;
    }

    .other-details-main-image {
        height: 520px;
    }

    .other-details-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .other-details-specifications-grid {
        gap: 45px;
    }

}

@media (max-width: 820px) {

    .other-details-hero {
        min-height: 520px;
    }

    .other-details-overlay {
        background: rgba(10, 29, 67, 0.88);
    }

    .other-details-overview,
    .other-details-gallery,
    .other-details-features,
    .other-details-specifications {
        padding: 75px 0;
    }

    .other-details-overview-grid,
    .other-details-specifications-grid {
        grid-template-columns: 1fr;
    }

    .other-details-main-image {
        height: 500px;
    }

    .other-details-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .other-details-gallery-heading > p {
        text-align: left;
    }

    .other-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 220px 220px;
    }

    .other-gallery-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

}

@media (max-width: 620px) {

    .other-details-hero {
        min-height: 560px;
    }

    .other-details-hero-content {
        padding: 60px 0 65px;
    }

    .other-details-hero-content > p {
        font-size: 15px;
    }

    .other-details-actions {
        flex-direction: column;
    }

    .other-details-actions .btn {
        width: 100%;
    }

    .other-details-main-image {
        height: 390px;
    }

    .other-details-overview-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .other-details-feature-grid {
        grid-template-columns: 1fr;
    }

    .other-specification-row {
        grid-template-columns: 1fr;
    }

    .other-specification-label {
        border-bottom: 1px solid var(--border);
    }

    .other-project-card {
        padding: 30px 24px;
    }

    .other-image-viewer {
        padding: 70px 18px 50px;
    }

    .other-viewer-navigation {
        width: 41px;
        height: 41px;
        top: auto;
        bottom: 15px;
        transform: none;
    }

    .other-viewer-previous {
        left: 18px;
    }

    .other-viewer-next {
        right: 18px;
    }

    .other-viewer-counter {
        bottom: 20px;
    }

    .other-details-cta {
        padding: 72px 0;
    }

}


@media (max-width: 1100px) {

    .other-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .other-gallery-item,
    .other-gallery-item.other-gallery-featured {
        height: 280px;
    }

}

@media (max-width: 820px) {

    .other-details-gallery {
        padding: 75px 0;
    }

    .other-details-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .other-details-gallery-heading > p {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

}

@media (max-width: 620px) {

    .other-gallery-grid {
        grid-template-columns: 1fr;
    }

    .other-gallery-item,
    .other-gallery-item.other-gallery-featured {
        height: 245px;
    }

    .other-gallery-overlay {
        background: rgba(22, 51, 107, 0.3);
    }

    .other-gallery-view {
        width: 44px;
        height: 44px;
        opacity: 1;
        transform: none;
    }

}

.other-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 36px;
}

.other-details-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.11);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
}

.other-details-actions {
    margin-top: 0;
}

.other-details-main-image {
    position: relative;
}

.other-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;
}

.other-details-overview-lead {
    color: #263851;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

.other-details-full-description {
    margin-top: 18px;
    color: #667085;
    font-size: 15px;
    line-height: 1.9;
}

.other-configurations-section {
    padding: 95px 0;
    background: #f6f8fb;
}

.other-details-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.other-details-section-heading > p {
    color: #6d7889;
}

.other-configuration-groups {
    display: grid;
    gap: 42px;
}

.other-configuration-group {
    padding: 28px;
    border: 1px solid #e1e6ee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 42px rgba(26, 43, 73, 0.07);
}

.other-configuration-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.other-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;
}

.other-configuration-heading div > span {
    display: block;
    margin-bottom: 4px;
    color: #788397;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.other-configuration-heading h3 {
    margin: 0;
    color: #162d59;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.other-configurations-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.other-configuration-item {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #dce3eb;
    cursor: pointer;
}

.other-configuration-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.other-configuration-item:hover img {
    transform: scale(1.05);
}

.other-configuration-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(9, 24, 54, 0.9) 0%,
            rgba(9, 24, 54, 0.1) 62%
        );
}

.other-configuration-info {
    position: absolute;
    left: 16px;
    right: 50px;
    bottom: 14px;
    z-index: 2;
    text-align: left;
}

.other-configuration-label {
    display: block;
    margin-bottom: 3px;
    color: #f58220;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.other-configuration-name {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.other-configuration-empty {
    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;
}

.other-media-empty-section {
    padding: 80px 0;
    background: #f6f8fb;
}

.other-media-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 55px 30px;
    border: 1px solid #e0e6ee;
    border-radius: 20px;
    text-align: center;
    background: #ffffff;
}

.other-media-empty-icon,
.other-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;
}

.other-media-empty h2 {
    margin: 0 0 12px;
    color: #16336b;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
}

.other-media-empty p {
    max-width: 490px;
    margin: 0 auto;
    color: #6d7889;
    line-height: 1.75;
}

.other-product-not-found {
    min-height: 72vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background: #f6f8fb;
}

.other-product-not-found-content {
    text-align: center;
}

.other-product-not-found-code {
    display: block;
    margin-bottom: 6px;
    color: #1f3c88;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.other-product-not-found h1 {
    margin: 0 0 14px;
    color: #16336b;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 5vw, 56px);
}

.other-product-not-found p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: #6d7889;
    line-height: 1.8;
}

@media (max-width: 1050px) {
    .other-configurations-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .other-configurations-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .other-configuration-group {
        padding: 20px;
    }

    .other-configuration-heading {
        align-items: flex-start;
    }

    .other-configuration-heading h3 {
        font-size: 19px;
    }

    .other-configurations-grid {
        grid-template-columns: 1fr;
    }

    .other-details-meta {
        margin-top: 17px;
        margin-bottom: 30px;
    }
}