.product-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.exchange-list-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.report-list-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 243, 0.96) 100%);
    border: 1px solid #f1dfcf;
    box-shadow:
            8px 10px 24px rgba(209, 167, 124, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.product-card.reserved-product-card {
    background: linear-gradient(180deg, #ffd0a1 0%, #ffad6b 100%);
    border: 1px solid #e9823a;
    box-shadow:
            8px 10px 24px rgba(220, 104, 28, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.product-card.completed-product-card {
    background: linear-gradient(180deg, #e3e7ea 0%, #c1c8cf 100%);
    border: 1px solid #a8b1ba;
    box-shadow:
            8px 10px 22px rgba(88, 96, 106, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.product-card.reported-product-card {
    background: linear-gradient(180deg, #ffd6d6 0%, #ff9f9f 100%);
    border: 1px solid #e05a5a;
    box-shadow:
            8px 10px 24px rgba(196, 55, 55, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.product-image-wrap {
    position: relative;
}

.product-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.2px;
    box-shadow:
            3px 4px 10px rgba(128, 76, 28, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-status-badge.reserved {
    background: linear-gradient(180deg, #d85f1f 0%, #b94813 100%);
    color: #ffffff;
    border: 1px solid #a63f10;
}

.product-status-badge.completed {
    background: linear-gradient(180deg, #5f666e 0%, #343a40 100%);
    color: #ffffff;
    border: 1px solid #2b3035;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.product-status-badge.reported {
    background: linear-gradient(180deg, #e24b4b 0%, #b91c1c 100%);
    color: #ffffff;
    border: 1px solid #991b1b;
    text-shadow: 0 1px 2px rgba(70, 0, 0, 0.35);
}

.product-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    color: #714a2f;
}

.product-card .button-row {
    margin-top: 18px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #7f6656;
    font-size: 15px;
    line-height: 1.6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 4px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff1e0 0%, #ffe1bf 100%);
    color: #c16e25;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #f0c99d;
    box-shadow:
            3px 4px 10px rgba(228, 164, 94, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trade-card {
    overflow: hidden;
}

.trade-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.trade-card-title {
    color: #714a2f;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.3px;
    word-break: break-word;
}

.trade-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #fff4ea;
    border: 1px solid #f0dfd0;
}

.trade-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trade-status-row {
    margin-top: 10px;
}

.trade-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.trade-info-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff6ee 100%);
    border: 1px solid #f0dfd0;
    color: #7f6656;
    font-size: 14px;
    line-height: 1.6;
}

.trade-info-line strong {
    color: #8b603f;
    font-size: 13px;
    font-weight: 900;
}

.trade-info-line span {
    color: #7f6656;
    word-break: break-word;
}

.report-card {
    padding: 18px;
}

.report-card-title {
    margin-top: 14px;
}

.report-writer-text {
    margin-top: 8px;
    color: #7f6656;
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
}

.report-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 2px rgba(80, 45, 20, 0.22);
    box-shadow:
            4px 6px 14px rgba(90, 54, 24, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 4px rgba(70, 40, 20, 0.12);
}

.report-status-received {
    background: linear-gradient(180deg, #f5b84f 0%, #d88918 100%);
    border: 1px solid #bd7411;
}

.report-status-processing {
    background: linear-gradient(180deg, #5fa8ff 0%, #2f74d0 100%);
    border: 1px solid #285fb0;
}

.report-status-completed {
    background: linear-gradient(180deg, #45c989 0%, #219b61 100%);
    border: 1px solid #168653;
}

.report-status-rejected {
    background: linear-gradient(180deg, #bfc4c9 0%, #7f8790 100%);
    border: 1px solid #6f7780;
}

.exchange-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: 4px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(80, 45, 20, 0.22);
    box-shadow:
            4px 6px 14px rgba(90, 54, 24, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 4px rgba(70, 40, 20, 0.12);
}

.exchange-status-badge.waiting {
    background: linear-gradient(180deg, #f5b84f 0%, #d88918 100%);
    border: 1px solid #bd7411;
}

.exchange-status-badge.accepted {
    background: linear-gradient(180deg, #45c989 0%, #219b61 100%);
    border: 1px solid #168653;
}

.exchange-status-badge.rejected {
    background: linear-gradient(180deg, #bfc4c9 0%, #7f8790 100%);
    border: 1px solid #6f7780;
}

.exchange-status-badge.completed {
    background: linear-gradient(180deg, #5fa8ff 0%, #2f74d0 100%);
    border: 1px solid #285fb0;
}

.exchange-status-badge.canceled {
    background: linear-gradient(180deg, #bfc4c9 0%, #7f8790 100%);
    border: 1px solid #6f7780;
}

.exchange-status-badge.default {
    background: linear-gradient(180deg, #f3a64c 0%, #d57a22 100%);
    border: 1px solid #bd681c;
}

.detail-page-card {
    padding: 30px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff7f0 100%);
    border: 1px solid #f3dfce;
    box-shadow:
            10px 14px 30px rgba(202, 166, 133, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f0dfd0;
}

.detail-hero-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4e8 0%, #ffe7cf 100%);
    border: 1px solid #f2cfaa;
    color: #b86d2b;
    font-size: 13px;
    font-weight: 900;
}

.detail-hero-title {
    margin: 0;
    color: #70482c;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.6px;
}

.detail-hero-desc {
    margin: 10px 0 0;
    color: #876955;
    line-height: 1.7;
    font-size: 15px;
}

.detail-status-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(80, 45, 20, 0.22);
    box-shadow:
            4px 6px 14px rgba(90, 54, 24, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 4px rgba(70, 40, 20, 0.12);
}

.detail-status-badge.sale {
    background: linear-gradient(180deg, #45c989 0%, #219b61 100%);
    border: 1px solid #168653;
}

.detail-status-badge.reserved {
    background: linear-gradient(180deg, #d85f1f 0%, #b94813 100%);
    border: 1px solid #a63f10;
}

.detail-status-badge.completed {
    background: linear-gradient(180deg, #bfc4c9 0%, #7f8790 100%);
    border: 1px solid #6f7780;
}

.detail-status-badge.default {
    background: linear-gradient(180deg, #f3a64c 0%, #d57a22 100%);
    border: 1px solid #bd681c;
}

.detail-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.detail-media-panel,
.detail-summary-card,
.detail-action-card,
.detail-desc-panel {
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    border: 1px solid #f0dfd0;
    box-shadow:
            6px 8px 18px rgba(202, 166, 133, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-media-panel {
    padding: 22px;
}

.detail-side-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-summary-card,
.detail-action-card,
.detail-desc-panel {
    padding: 24px;
}

.detail-summary-card h2,
.detail-action-card h2,
.detail-desc-panel h2 {
    margin: 0;
    color: #70482c;
    font-size: 23px;
    font-weight: 900;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.detail-info-item {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff3e9 100%);
    border: 1px solid #f0dfd0;
}

.detail-info-item span {
    display: block;
    margin-bottom: 6px;
    color: #9a7a63;
    font-size: 13px;
    font-weight: 800;
}

.detail-info-item strong {
    display: block;
    color: #70482c;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    word-break: break-word;
}

.detail-action-title-row {
    margin-bottom: 16px;
}

.detail-action-title-row p {
    margin: 7px 0 0;
    color: #876955;
    line-height: 1.6;
    font-size: 14px;
}

.detail-notice-box {
    margin-bottom: 16px;
    padding: 15px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff4e8 0%, #ffe6cc 100%);
    border: 1px solid #f0c99d;
    color: #7b5030;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.detail-notice-box.warning {
    background: linear-gradient(180deg, #ffe5d2 0%, #ffc995 100%);
    border: 1px solid #e9823a;
    color: #7a3d17;
}

.detail-notice-box.soft {
    background: linear-gradient(180deg, #fff8f2 0%, #ffeddc 100%);
    border: 1px solid #f0dbc8;
    color: #7f6656;
}

.exchange-apply-guide {
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff4e8 0%, #ffe4c8 100%);
    border: 1px solid #f0bf8c;
    box-shadow:
            4px 6px 14px rgba(202, 126, 58, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.exchange-apply-guide-title {
    margin-bottom: 14px;
    color: #7a3d17;
    font-size: 16px;
    font-weight: 900;
}

.exchange-apply-step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exchange-apply-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(240, 191, 140, 0.65);
}

.exchange-apply-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d85f1f 0%, #b94813 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    box-shadow:
            3px 4px 10px rgba(128, 76, 28, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.exchange-apply-step strong {
    display: block;
    color: #70482c;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.exchange-apply-step p {
    margin: 4px 0 0;
    color: #876955;
    font-size: 13px;
    line-height: 1.5;
}

.detail-report-box {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0dfd0;
}

.detail-side-bottom {
    display: flex;
    justify-content: flex-end;
}

.detail-desc-panel {
    margin-top: 24px;
}

.detail-section-title-row {
    margin-bottom: 16px;
}

.detail-section-title-row p {
    margin: 7px 0 0;
    color: #876955;
    font-size: 14px;
    line-height: 1.6;
}

.detail-simple-message {
    max-width: 620px;
    margin: 60px auto;
    padding: 36px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, #fffdfb 0%, #fff7f0 100%);
    border: 1px solid #f0dfd0;
    box-shadow:
            8px 10px 24px rgba(202, 166, 133, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-simple-message h2 {
    margin: 0 0 10px;
    color: #70482c;
    font-size: 26px;
}

.detail-simple-message p {
    margin: 0 0 20px;
    color: #876955;
    line-height: 1.7;
}

.exchange-card {
    padding: 20px;
    min-height: 100%;
}

.exchange-card-top {
    margin-bottom: 16px;
}

.exchange-card-number {
    font-size: 22px;
}

.exchange-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.exchange-product-box {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff4ea 100%);
    border: 1px solid #f0dfd0;
    box-shadow:
            4px 6px 14px rgba(202, 166, 133, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.exchange-product-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #fff5ec;
    border: 1px solid #f0dfd0;
    margin-bottom: 12px;
}

.exchange-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exchange-product-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4e6 0%, #ffe6c9 100%);
    color: #b86d2b;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #f1cfaa;
}

.exchange-product-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #70482c;
    line-height: 1.45;
    word-break: break-word;
}

.exchange-product-id {
    margin-top: 8px;
    color: #8a6a54;
    font-size: 14px;
    font-weight: 700;
}

.exchange-info-list {
    margin-top: 2px;
}

.exchange-info-line {
    font-size: 14px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.info-panel {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff5ec 100%);
    border: 1px solid #f4e3d5;
    box-shadow:
            6px 8px 18px rgba(202, 166, 133, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.info-panel h2,
.info-panel h3 {
    margin-top: 0;
    color: #70482c;
}

.info-line {
    margin: 0 0 12px;
    color: #7f6656;
    line-height: 1.7;
}

.info-desc {
    margin: 0;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    border: 1px solid #f0e0d2;
    color: #7f6656;
    line-height: 1.8;
    white-space: pre-wrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.exchange-form {
    margin-top: 20px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff9f3 0%, #fff1e5 100%);
    border: 1px solid #f1dcc8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.exchange-form h3 {
    margin: 0 0 14px;
    color: #8c5a2e;
}

.product-search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-search-input {
    flex: 1;
    min-width: 260px;
}

.detail-image-slider {
    margin-bottom: 0;
}

.detail-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: #fff4ea;
    border: 1px solid #f0dfd0;
}

.detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    user-select: none;
}

.detail-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #70482c;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
    transition: background 0.18s ease, transform 0.18s ease;
}

.detail-image-nav:hover {
    background: rgba(255, 255, 255, 0.9);
}

.detail-image-nav-left {
    left: 14px;
}

.detail-image-nav-right {
    right: 14px;
}

.detail-image-bottom {
    margin-top: 14px;
}

.detail-image-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff7ef 0%, #ffeddc 100%);
    color: #8b603f;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #f0dbc8;
    box-shadow:
            3px 4px 10px rgba(202, 166, 133, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.detail-thumb-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.detail-thumb-button {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: #fff5ec;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow:
            3px 4px 10px rgba(202, 166, 133, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.detail-thumb-button:hover {
    transform: translateY(-1px);
}

.detail-thumb-button.active {
    border-color: #f4a152;
    box-shadow:
            4px 6px 14px rgba(232, 164, 98, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.detail-thumb-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(34, 26, 20, 0.72);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.image-modal.show {
    display: flex;
}

.image-modal-img {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    background: #ffffff;
}

.image-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #6f4323;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1500px) {
    .product-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .report-list-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .exchange-list-container {
        grid-template-columns: 1fr;
    }

    .report-list-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-main-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .exchange-product-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        flex-direction: column;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-page-card {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .product-container,
    .report-list-container,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .product-search-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-search-input {
        min-width: 100%;
    }

    .detail-hero-title {
        font-size: 28px;
    }

    .detail-media-panel,
    .detail-summary-card,
    .detail-action-card,
    .detail-desc-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .detail-image-nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .detail-image-nav-left {
        left: 10px;
    }

    .detail-image-nav-right {
        right: 10px;
    }

    .image-modal {
        padding: 16px;
    }

    .image-modal-close {
        top: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 26px;
    }
}