.product-detail { padding-top: 28px; }
.product-detail .breadcrumb { display: none; }
.detail-image { height: 570px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #f0f6f2; }
.detail-image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-purchase-form { margin-top: 22px; }
.detail-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; border-bottom: 0; padding-bottom: 0; }
.detail-price del { order: 1; color: #92999f; font-size: 14px; }
.detail-price strong { order: 2; color: #d94b45; font-size: 25px; font-weight: 800; }
.detail-price span { order: 3; background: #fbe5e2; color: #b94b44; font-size: 11px; padding: 4px 7px; }
.quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.quantity-row label { color: var(--ink); font-size: 13px; font-weight: 700; }
.quantity-control { display: flex; width: 132px; height: 40px; border: 1px solid #d4dadd; background: #fff; }
.quantity-control button { width: 38px; border: 0; background: #f5f7f7; color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; }
.quantity-control button:hover { background: #e8eeee; }
.quantity-control input { width: 56px; min-width: 0; border: 0; border-right: 1px solid #d4dadd; border-left: 1px solid #d4dadd; outline: 0; color: var(--ink); text-align: center; font: 600 14px inherit; }
.quantity-control input::-webkit-outer-spin-button, .quantity-control input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.product-action-buttons { display: grid; gap: 10px; }
.product-action-button { width: 100%; min-height: 49px; border: 0; border-radius: 4px; color: #fff; font: 800 13px inherit; letter-spacing: .06em; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.product-action-button:hover { transform: translateY(-1px); }
.add-to-cart-button { background: #222; }
.add-to-cart-button:hover { background: #111; }
.buy-now-button { background: #2f8b57; }
.buy-now-button:hover { background: #237445; }
.product-viewing-indicator { display: flex; align-items: center; gap: 7px; margin: 18px 0 19px; color: #6d7478; font-size: 12px; }
.viewing-eye { display: inline-flex; width: 18px; height: 18px; color: #454d51; }
.viewing-eye svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.product-trust-badges { display: grid; grid-template-columns: 1fr; gap: 11px; margin: 0 0 28px; }
.product-trust-badge { min-height: 64px; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; padding: 12px 18px; border: 1px solid transparent; border-radius: 14px; color: #173047; text-align: left; box-shadow: 0 8px 18px rgba(24, 47, 58, .12), inset 0 1px 0 rgba(255, 255, 255, .75); transition: transform .2s ease, box-shadow .2s ease; }
.product-trust-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(24, 47, 58, .17), inset 0 1px 0 rgba(255, 255, 255, .8); }
.product-trust-badge:nth-child(1) { background: #e9f7ef; border-color: #b9e5ca; }
.product-trust-badge:nth-child(2) { background: #eaf3fb; border-color: #bdd9f0; }
.product-trust-badge:nth-child(3) { background: #fff5df; border-color: #f0d59a; }
.product-trust-badge:nth-child(4) { background: #f8eaf2; border-color: #e8c2d4; }
.product-trust-badge strong { max-width: none; font-size: 12px; line-height: 1.25; letter-spacing: .02em; }
.trust-badge-icon { display: inline-flex; flex: 0 0 38px; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; }
.product-trust-badge:nth-child(1) .trust-badge-icon { background: #2f9b63; }
.product-trust-badge:nth-child(2) .trust-badge-icon { background: #397fb7; }
.product-trust-badge:nth-child(3) .trust-badge-icon { background: #d79524; }
.product-trust-badge:nth-child(4) .trust-badge-icon { background: #bd5c87; }
.trust-badge-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.detail-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; border-top: 1px solid #dfe7e3; margin-top: 25px; padding-top: 20px; }
.detail-notes > div { min-height: 78px; display: flex; flex-direction: column; justify-content: center; padding: 14px 16px; border: 1px solid transparent; border-radius: 12px; box-shadow: 0 7px 16px rgba(24, 47, 58, .1), inset 0 1px 0 rgba(255, 255, 255, .8); }
.detail-notes > div:first-child { background: #eef8f1; border-color: #c9e8d2; }
.detail-notes > div:last-child { background: #eef5fb; border-color: #c9deef; }
.detail-notes strong, .detail-notes span { display: block; font-size: 12px; }
.detail-notes strong { color: #173047; font-weight: 800; }
.detail-notes span { color: #66757a; margin-top: 4px; }
.detail-description { margin-top: 24px; }
@media (max-width: 800px) {
    .product-detail { padding-top: 25px; }
    .detail-image { height: 400px; }
    .detail-price strong { font-size: 22px; }
    .product-trust-badges { grid-template-columns: 1fr; gap: 10px; }
    .product-trust-badge { min-height: 60px; padding: 11px 15px; }
    .product-trust-badge strong { font-size: 11px; }
    .detail-notes { grid-template-columns: 1fr; gap: 10px; }
}
