.item-page {
    min-height: 70vh;
    padding: 30px 0 80px;
    background: #f4f8fd;
}

.item-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 12px;
    padding-bottom: 25px;
    color: #607086;
    font-size: 14px;
}

.item-breadcrumb a {
    color: #0b67bd;
    font-weight: 800;
    text-decoration: none;
}

.item-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
    gap: 44px;
    align-items: start;
}

.item-image-panel,
.item-information {
    background: #ffffff;
    border: 1px solid #dbe7f5;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(6, 59, 120, .12);
}

.item-image-panel {
    position: relative;
    display: grid;
    min-height: 520px;
    padding: 32px;
    place-items: center;
}

.item-image-panel img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

.item-offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    padding: 9px 14px;
    color: #17304f;
    background: #ffc928;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.item-information {
    padding: 34px;
}

.item-code {
    color: #0b67bd;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.item-information h1 {
    margin: 15px 0 25px;
    color: #063b78;
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.25;
}

.item-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 25px;
}

.item-details div {
    padding: 14px;
    background: #eef5fd;
    border-radius: 12px;
}

.item-details dt,
.item-prices small {
    display: block;
    margin-bottom: 5px;
    color: #607086;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.item-details dd {
    margin: 0;
    color: #152238;
    font-weight: 900;
}

.item-prices {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 25px;
}

.item-old-price {
    color: #d83b3b;
    font-size: 21px;
    font-weight: 800;
    text-decoration: line-through;
}

.item-price {
    color: #063b78;
    font-size: 34px;
    font-weight: 900;
}

.item-add-button {
    width: 100%;
    padding: 15px 20px;
    color: #17304f;
    background: #ffc928;
    border: 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.item-reassurance {
    margin-top: 24px;
    padding: 18px;
    color: #40536b;
    background: #f6f9fe;
    border-radius: 13px;
}

.item-reassurance p {
    margin: 6px 0;
}

.item-back {
    display: inline-block;
    margin-top: 22px;
    color: #0b67bd;
    font-weight: 900;
    text-decoration: none;
}

html[dir="rtl"] .item-offer-badge {
    right: auto;
    left: 20px;
}

@media (max-width: 850px) {
    .item-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .item-image-panel {
        min-height: 360px;
    }
}

@media (max-width: 520px) {
    .item-page {
        padding-top: 15px;
    }

    .item-image-panel,
    .item-information {
        padding: 20px;
        border-radius: 16px;
    }

    .item-details {
        grid-template-columns: 1fr;
    }
}
