.product-page {
    --product-ink: #172033;
    --product-muted: #657086;
    --product-line: #dce4ef;
    --product-soft: #f5f8fc;
    --product-surface: #ffffff;
    --product-blue: #1675d1;
    --product-blue-dark: #0b4f94;
    --product-blue-soft: #e9f4ff;
    --product-green: #157347;
    --product-green-soft: #e8f7ef;
    color: var(--product-ink);
}

.product-page .cont {
    float: none;
    width: auto;
    height: auto !important;
}

.product-page .contcentrl.product-main {
    display: block;
    float: none;
    width: auto;
    max-width: 1180px;
    margin: 18px auto 0;
    padding: 0 18px 42px;
    color: var(--product-ink);
    font-family: Arial, sans-serif;
    text-align: left;
}

.product-page .product-main,
.product-page .product-main * {
    box-sizing: border-box;
}

.product-page .product-main a,
.product-page .product-main a:visited {
    color: #176591;
}

.product-page .product-main a:hover {
    color: var(--product-blue-dark);
}

.product-page .todo_popup .todo_gallery_image {
    transform-origin: 50% 50%;
    animation: product-gallery-photo-in 0.38s cubic-bezier(0.2, 0.78, 0.25, 1) both;
    backface-visibility: hidden;
}

.product-page .todo_popup .todo_gallery_title {
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 1px 38px 0 4px;
    overflow: hidden;
    color: #3f4d61;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-page .todo_popup .todo_gallery_image {
    cursor: zoom-out;
    user-select: none;
}

.product-page .todo_popup .todo_gallery_nav {
    position: absolute;
    z-index: 3;
    top: 23px;
    right: 0;
    bottom: 23px;
    left: 0;
    color: #fff;
    pointer-events: none;
}

.product-page .todo_popup .todo_gallery_counter {
    position: absolute;
    bottom: 8px;
    left: 50%;
    padding: 5px 10px;
    color: #fff;
    font: 700 11px/1 Arial, sans-serif;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(15, 31, 48, 0.48);
    box-shadow: 0 4px 14px rgba(15, 31, 48, 0.18);
    opacity: 0.78;
    transform: translateX(-50%);
    white-space: nowrap;
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 50%;
    width: 46px;
    height: 64px;
    margin: 0;
    padding: 0;
    color: #fff;
    border: 0;
    outline: none;
    background: rgba(15, 31, 48, 0.5);
    box-shadow: 0 6px 18px rgba(15, 31, 48, 0.18);
    cursor: pointer;
    opacity: 0.16;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, background 0.2s ease,
        transform 0.2s ease;
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left {
    left: 0;
    border-radius: 0 13px 13px 0;
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right {
    right: 0;
    border-radius: 13px 0 0 13px;
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left::before,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    content: "";
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left::before {
    transform: translate(-35%, -50%) rotate(135deg);
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right::before {
    transform: translate(-65%, -50%) rotate(-45deg);
}

.product-page .todo_popup:hover .todo_gallery_nav .todo_gallery_button_left,
.product-page .todo_popup:hover .todo_gallery_nav .todo_gallery_button_right,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left:focus-visible,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right:focus-visible {
    opacity: 0.72;
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left:hover,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right:hover,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left:focus-visible,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right:focus-visible {
    background: rgba(8, 49, 82, 0.76);
    box-shadow: 0 8px 22px rgba(15, 31, 48, 0.26);
    opacity: 0.96;
    transform: translateY(-50%) scale(1.03);
}

.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left:focus-visible,
.product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right:focus-visible {
    box-shadow: 0 0 0 3px rgba(79, 169, 235, 0.42),
        0 8px 22px rgba(15, 31, 48, 0.26);
}

@keyframes product-gallery-photo-in {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (hover: none), (pointer: coarse) {
    .product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left,
    .product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right {
        width: 48px;
        opacity: 0.68;
    }
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0 0 15px;
    color: #8490a0;
    font-size: 12px;
    line-height: 1.4;
}

.product-breadcrumbs a,
.product-breadcrumbs a:visited {
    color: #607087;
}

.product-breadcrumbs a:hover {
    color: var(--product-blue);
}

.product-title-block {
    max-width: 980px;
    margin: 0 0 20px;
}

.product-eyebrow,
.product-section-heading > span {
    display: block;
    margin: 0 0 6px;
    color: var(--product-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-title-block h1 {
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(27px, 3.2vw, 41px);
    font-weight: 800;
    line-height: 1.16;
    text-wrap: balance;
}

.product-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    overflow: hidden;
    margin: 0 0 22px;
    border: 1px solid var(--product-line);
    border-radius: 20px;
    background: var(--product-surface);
    box-shadow: 0 14px 36px rgba(31, 54, 82, 0.09);
}

.product-gallery {
    min-width: 0;
    padding: clamp(18px, 3vw, 30px);
    border-right: 1px solid var(--product-line);
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.78) 38%, rgba(234, 247, 253, 0.88) 100%),
        #eef8fc;
}

.product-main-image,
.product-main-image:visited {
    position: relative;
    display: grid;
    min-height: 430px;
    padding: 26px;
    place-items: center;
    overflow: hidden;
    color: var(--product-muted);
    border: 1px solid #dbeaf2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    cursor: zoom-in;
}

.product-main-image > img {
    display: block;
    width: min(100%, 440px);
    max-height: 430px;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.product-main-image:hover > img {
    transform: scale(1.025);
}

.product-zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 13px;
    padding: 7px 10px;
    color: #53677a;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #d7e7ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 12px rgba(31, 54, 82, 0.08);
}

.product-thumbnails {
    display: flex;
    gap: 9px;
    margin: 14px 0 0;
    padding: 2px;
    overflow-x: auto;
    scrollbar-color: #b8c6d7 transparent;
    scrollbar-width: thin;
}

.product-thumbnails a,
.product-thumbnails a:visited {
    display: grid;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    padding: 5px;
    place-items: center;
    overflow: hidden;
    border: 1px solid #d6e4ec;
    border-radius: 11px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.product-thumbnails a:hover {
    border-color: #78afe0;
    box-shadow: 0 5px 14px rgba(31, 91, 137, 0.12);
    transform: translateY(-1px);
}

.product-thumbnails img {
    display: block;
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-summary {
    display: flex;
    min-width: 0;
    padding: clamp(24px, 4vw, 38px);
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(155deg, #fff 0%, #fff 55%, #f4faff 100%);
}

.product-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 22px;
}

.product-stock {
    display: inline-flex;
    min-height: 30px;
    padding: 6px 11px;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.product-stock::before {
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    content: "";
    background: currentColor;
}

.product-stock-available {
    color: var(--product-green);
    border: 1px solid #bfe5d0;
    background: var(--product-green-soft);
}

.product-stock-unavailable {
    color: #a43d3d;
    border: 1px solid #edcaca;
    background: #fff1f1;
}

.product-article {
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 700;
}

.product-price {
    margin: 0 0 24px;
    padding: 19px 20px;
    border: 1px solid #d8eaf5;
    border-radius: 14px;
    background: #f3faff;
}

.product-price > span {
    display: block;
    margin: 0 0 5px;
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-price strong {
    color: #123d5b;
    font-size: clamp(31px, 4vw, 40px);
    line-height: 1;
    white-space: nowrap;
}

.product-price small {
    font-size: 15px;
    font-weight: 700;
}

.product-buy-form {
    margin: 0 0 24px;
}

.product-buy-form > label,
.product-notify label,
.product-question label,
.product-review-form label {
    display: block;
    margin: 0 0 7px;
    color: #344960;
    font-size: 12px;
    font-weight: 750;
}

.product-purchase-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
}

.product-purchase-row input,
.product-notify input,
.product-question input,
.product-question textarea,
.product-review-form textarea {
    width: 100%;
    min-width: 0;
    color: #25394d;
    font: 15px Arial, sans-serif;
    border: 1px solid #bfd2dd;
    border-radius: 10px;
    background: #fff;
    outline: none;
}

.product-purchase-row input {
    height: 52px;
    padding: 0 10px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.product-buy-button,
.product-notify button,
.product-question button,
.product-review-form button {
    display: inline-flex;
    min-height: 48px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font: 800 15px Arial, sans-serif;
    border: 1px solid var(--product-blue);
    border-radius: 11px;
    background: var(--product-blue);
    box-shadow: 0 8px 18px rgba(22, 117, 209, 0.2);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.product-buy-button {
    min-height: 52px;
}

.product-buy-button:hover,
.product-notify button:hover,
.product-question button:hover,
.product-review-form button:hover {
    border-color: var(--product-blue-dark);
    background: var(--product-blue-dark);
    transform: translateY(-1px);
}

.product-quick-info {
    display: grid;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--product-line);
}

.product-quick-info > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8eef4;
}

.product-quick-info dt {
    color: var(--product-muted);
    font-size: 12px;
}

.product-quick-info dd {
    min-width: 0;
    margin: 0;
    color: #273a4f;
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.product-share,
.product-share:visited {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin: 18px 0 0;
    padding: 9px 11px;
    color: #306650;
    font-size: 12px;
    font-weight: 750;
    border: 1px solid #cde5d9;
    border-radius: 10px;
    background: #f2fbf6;
}

.product-share:hover {
    color: #174f38;
    background: #e7f7ee;
}

.product-share img {
    display: block;
}

.product-notify h2 {
    margin: 0 0 8px;
    color: var(--product-ink);
    font-size: 23px;
}

.product-notify > p {
    margin: 0 0 18px;
    color: var(--product-muted);
    font-size: 14px;
    line-height: 1.5;
}

.product-notify form {
    display: grid;
    gap: 8px;
}

.product-notify input,
.product-question input {
    height: 46px;
    padding: 0 11px;
}

.product-notify button {
    margin-top: 5px;
}

.product-notify button:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}

.product-notify .is-invalid {
    border-color: #c94646;
    box-shadow: 0 0 0 3px rgba(201, 70, 70, 0.12);
}

.product-form-notice {
    min-height: 18px;
    margin: 10px 0 0;
    color: #b42f2f;
    font-size: 12px;
    font-weight: 700;
}

.product-form-notice.is-success {
    color: var(--product-green);
}

body.product-notify-modal-open {
    overflow: hidden;
}

.product-notify-modal {
    position: fixed;
    inset: 0;
    width: min(500px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    margin: auto;
    padding: 0;
    overflow: auto;
    color: var(--product-ink);
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(11, 37, 67, 0.32);
}

.product-notify-modal:not([open]) {
    display: none;
}

.product-notify-modal[open] {
    animation: product-notify-modal-in 0.22s ease-out both;
}

.product-notify-modal::backdrop {
    background: rgba(15, 31, 50, 0.64);
    backdrop-filter: blur(3px);
}

.product-notify-modal-content {
    position: relative;
    padding: 34px 34px 30px;
    text-align: center;
}

.product-notify-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    color: #66778b;
    font: 25px/1 Arial, sans-serif;
    border: 0;
    border-radius: 50%;
    background: #f0f4f8;
    cursor: pointer;
}

.product-notify-modal-close:hover {
    color: #24384e;
    background: #e3ebf3;
}

.product-notify-modal-check {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 17px;
    place-items: center;
    color: #fff;
    font: 800 30px/1 Arial, sans-serif;
    border-radius: 50%;
    background: linear-gradient(145deg, #25a867, #157347);
    box-shadow: 0 12px 24px rgba(21, 115, 71, 0.22);
}

.product-notify-modal-eyebrow {
    margin: 0 0 6px;
    color: var(--product-green);
    font: 800 11px/1.3 Arial, sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-notify-modal h2 {
    margin: 0 0 12px;
    color: var(--product-ink);
    font: 800 28px/1.2 Arial, sans-serif;
}

.product-notify-modal-content > p:last-of-type {
    margin: 0;
    color: var(--product-muted);
    font: 14px/1.6 Arial, sans-serif;
}

.product-notify-modal-action {
    display: inline-flex;
    min-height: 46px;
    margin: 24px 0 0;
    padding: 10px 22px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font: 800 14px/1.2 Arial, sans-serif;
    border: 1px solid var(--product-blue);
    border-radius: 11px;
    background: var(--product-blue);
    box-shadow: 0 8px 18px rgba(22, 117, 209, 0.2);
    cursor: pointer;
}

.product-notify-modal-action:hover {
    border-color: var(--product-blue-dark);
    background: var(--product-blue-dark);
}

@keyframes product-notify-modal-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

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

.product-card {
    min-width: 0;
    margin: 0 0 22px;
    padding: clamp(22px, 3.4vw, 34px);
    border: 1px solid var(--product-line);
    border-radius: 18px;
    background: var(--product-surface);
    box-shadow: 0 10px 30px rgba(31, 54, 82, 0.075);
}

.product-section-heading {
    margin: 0 0 22px;
}

.product-section-heading h2 {
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(22px, 2.6vw, 29px);
    line-height: 1.2;
}

.product-description-copy {
    min-width: 0;
    color: #2d4054;
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.product-description-copy img,
.product-description-copy video,
.product-description-copy iframe {
    max-width: 100%;
    height: auto;
}

.product-description-copy table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.product-spec-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0 0;
}

.product-spec-list > div {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e1eaf1;
    border-radius: 12px;
    background: var(--product-soft);
}

.product-spec-list dt {
    margin: 0 0 5px;
    color: var(--product-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-spec-list dd {
    margin: 0;
    color: #263b50;
    font-size: 14px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.product-manufacturer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0 0;
    padding: 17px 18px;
    border: 1px solid #dce9f0;
    border-radius: 13px;
    background: #f8fbfd;
}

.product-manufacturer span {
    display: block;
    margin: 0 0 4px;
    color: var(--product-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.product-manufacturer strong {
    color: #263a4e;
    font-size: 17px;
}

.product-manufacturer a {
    display: grid;
    max-width: 150px;
    min-height: 56px;
    padding: 6px 10px;
    place-items: center;
    border: 1px solid #e1eaf0;
    border-radius: 10px;
    background: #fff;
}

.product-manufacturer img {
    display: block;
    max-width: 130px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-related-content {
    color: transparent;
    font-size: 0;
}

.product-related .eche {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 12px;
    color: var(--product-ink);
    font-size: 12px;
}

.product-related .eche > div {
    float: none;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 150px;
    margin: 0;
    padding: 14px;
    border: 1px solid #e0eaf1;
    border-radius: 12px;
    background: #fbfdff;
}

.product-related .eche a {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #2c475d;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
}

.product-related .eche img {
    display: block;
    max-width: 86px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-review-list {
    display: grid;
    gap: 12px;
}

.product-review {
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid #e0e9f0;
    border-radius: 12px;
    background: #f9fbfd;
}

.product-review strong {
    display: block;
    margin: 0 0 7px;
    color: #24415a;
    font-size: 14px;
}

.product-review p,
.product-empty-note,
.product-review-login,
.product-question > p {
    margin: 0;
    color: #52677a;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-review-form {
    display: grid;
    max-width: 680px;
    gap: 8px;
    margin: 20px 0 0;
}

.product-review-form textarea,
.product-question textarea {
    min-height: 112px;
    padding: 11px;
    resize: vertical;
}

.product-review-form button,
.product-question button {
    justify-self: start;
    margin-top: 3px;
}

.product-review-login {
    margin-top: 18px;
}

.product-success {
    margin: 5px 0 0;
    color: var(--product-green);
    font-size: 13px;
    font-weight: 750;
}

.product-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    gap: 22px;
}

.product-help-grid .product-card {
    margin-bottom: 0;
}

.product-question > p {
    margin: -10px 0 18px;
}

.product-question form {
    display: grid;
    gap: 8px;
}

.product-question label span {
    color: var(--product-muted);
    font-weight: 500;
}

.product-support-card > div:last-child {
    color: #435a6d;
    font-size: 13px;
    line-height: 1.65;
}

.product-support-card h5 {
    display: none;
}

.product-support-card a {
    font-weight: 700;
}

.product-support-card img {
    max-width: 20px;
    max-height: 20px;
    vertical-align: middle;
}

.product-page .clr {
    height: 0;
}

.product-page .footer {
    margin: 0 auto;
}

.product-page .product-main input:focus,
.product-page .product-main textarea:focus,
.product-page .product-main button:focus-visible,
.product-page .product-main a:focus-visible {
    outline: 3px solid rgba(22, 117, 209, 0.18);
    outline-offset: 2px;
    border-color: #5b9ed8;
}

@media (max-width: 900px) {
    .product-overview {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-gallery {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
    }

    .product-main-image {
        min-height: 370px;
    }

    .product-summary {
        padding: 28px;
    }

    .product-help-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 700px) {
    .product-page .contcentrl.product-main {
        margin-top: 12px;
        padding: 0 10px 30px;
    }

    .product-title-block {
        margin-bottom: 15px;
    }

    .product-title-block h1 {
        font-size: clamp(25px, 7vw, 32px);
    }

    .product-overview,
    .product-card {
        border-radius: 15px;
    }

    .product-gallery {
        padding: 14px;
    }

    .product-main-image {
        min-height: 310px;
        padding: 18px;
        border-radius: 13px;
    }

    .product-main-image > img {
        width: min(100%, 340px);
        max-height: 320px;
    }

    .product-zoom-hint {
        right: 9px;
        bottom: 9px;
        font-size: 10px;
    }

    .product-summary {
        padding: 22px 18px;
    }

    .product-card {
        padding: 22px 18px;
    }

    .product-price {
        padding: 16px;
    }

    .product-price strong {
        font-size: 32px;
    }

    .product-spec-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-manufacturer {
        align-items: flex-start;
    }

    .product-related .eche {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-review-form button,
    .product-question button {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 430px) {
    .product-breadcrumbs {
        gap: 5px;
        font-size: 11px;
    }

    .product-main-image {
        min-height: 270px;
    }

    .product-main-image > img {
        max-height: 275px;
    }

    .product-zoom-hint {
        display: none;
    }

    .product-purchase-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-purchase-row input,
    .product-buy-button {
        width: 100%;
    }

    .product-quick-info > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    .product-manufacturer {
        flex-direction: column;
    }

    .product-related .eche {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-notify-modal {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 16px;
    }

    .product-notify-modal-content {
        padding: 30px 20px 24px;
    }

    .product-notify-modal-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-page .todo_popup .todo_gallery_image {
        animation: none;
    }

    .product-page .todo_popup .todo_gallery_nav .todo_gallery_button_left,
    .product-page .todo_popup .todo_gallery_nav .todo_gallery_button_right {
        transition: none;
    }

    .product-notify-modal[open] {
        animation: none;
    }

    .product-page .product-main *,
    .product-page .product-main *::before,
    .product-page .product-main *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
