.product-detail-page {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem;
    padding-bottom: 100px;
}

.image-gallery {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Swiper 스타일 */
.product-image-swiper {
    width: 100%;
    position: relative;
}

.product-image-swiper .swiper-slide {
    width: 100%;
}

.swiper-image-item {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    z-index: 100;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.image-counter .swiper-pagination-current {
    font-weight: 700;
    color: #fff;
}

.image-counter .swiper-pagination-total {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* 단일 이미지 스타일 */
.single-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    margin-bottom: 40px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.like-section {
    display: flex;
    align-items: center;
}

.like-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    color: #666;
}

.product-category {
    font-size: 12px;
    color: #999;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-subtitle {
    font-size: 14px;
    color: #666;
}

/* 뱃지 스타일 */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0.3rem 0;
    line-height: 1rem;
}

.badge-chip {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
}

.badge-ingredient {
    background-color: #1971c2 !important;
    color: #fff !important;
}

.badge-feature {
    background-color: #6c757d !important;
    color: #fff !important;
}

.badge-benefit {
    color: #fff !important;
}

/* 목록 페이지 뱃지 */
.product-info-wrapper .product-badges {
    margin-bottom: 6px;
}

.product-info-wrapper .badge-chip {
    padding: 2px 8px;
    font-size: 11px;
}

/* 옵션 선택 모달 (4번째 이미지 스타일) */
.option-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: flex-end;
    justify-content: center;
}

.option-modal {
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.option-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.option-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.option-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.option-modal-body {
    padding: 20px;
}

.option-select-row {
    margin-bottom: 16px;
}

.option-modal-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}

.option-selected-list {
    margin-bottom: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.selected-item-row {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.selected-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.selected-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-item-controls .qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.selected-item-controls .qty-control button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
}

.selected-item-controls .qty-control input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.selected-item-price {
    font-weight: 700;
    color: #000;
}

.selected-item-remove {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.option-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
}

.option-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-modal-actions .btn-add-cart,
.option-modal-actions .btn-buy-now {
    height: 52px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-modal-actions .btn-add-cart {
    border: 1px solid #1971c2;
    background: #fff;
    color: #1971c2;
}

.option-modal-actions .btn-add-cart:hover {
    background: #f0f7ff;
}

.option-modal-actions .btn-buy-now {
    border: none;
    background: #1971c2;
    color: #fff;
}

.option-modal-actions .btn-buy-now:hover {
    background: #1565c0;
}

.product-gift {
    margin-bottom: 12px;
}

.gift-label {
    display: inline-block;
    padding: 4px 8px;
    background: #fff3e0;
    color: #f57c00;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}


.price-label {
    font-size: 13px;
    color: #999;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #f00;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount-rate {
    font-size: 20px;
    color: #f00;
    font-weight: 700;
}

.coupon-section {
    margin-bottom: 16px;
}

.coupon-btn {
    width: 100%;
    padding: 12px 16px;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.coupon-btn:hover {
    background: #1565c0;
}

.point-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
}

.point-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.point-label {
    color: #666;
}

.point-value {
    color: #000;
    font-weight: 600;
}

.shipping-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.option-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.option-label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    display: block;
}

.option-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.option-select:focus {
    outline: none;
    border-color: #000;
}

.quantity-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    border-radius: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.quantity-btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
}

.quantity-btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: none;
}

.quantity-btn:hover {
    background: #f5f5f5;
    border-color: #000;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-left: none;
    border-right: none;
    border-radius: 0;
    font-size: 14px;
    appearance: textfield;
    -moz-appearance: textfield;
    padding: 0;
}

.quantity-input:focus {
    outline: none;
    border-color: #e5e5e5;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.total-section {
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.total-row.main-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}

.total-label {
    font-size: 13px;
    color: #666;
}

.total-row.main-total .total-label {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.total-price {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.total-row.main-total .total-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.order-button-section {
    margin-top: 30px;
}

.order-btn {
    width: 100%;
    padding: 16px 24px;
    background: #1971c2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.order-btn:hover {
    background: #1565c0;
}

.order-btn:active {
    background: #1971c2;
    transform: scale(0.98);
}

/* 상품 상세 하단 고정 버튼 (장바구니 + 구매하기) */
.product-bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 16px;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    box-sizing: border-box;
}

.product-bottom-btn {
    flex: 1;
    height: 52px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.product-bottom-btn.btn-cart {
    background: #fff;
    color: #1971c2;
    border: 1px solid #1971c2;
}

.product-bottom-btn.btn-cart:hover {
    background: #f0f7ff;
}

.product-bottom-btn.btn-buy {
    background: #1971c2;
    color: #fff;
}

.product-bottom-btn.btn-buy:hover {
    background: #1565c0;
}

/* 고정 주문하기 버튼 */
.order-button-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 16px;
    max-width: 480px;
    margin: 0 auto;
}

.order-fixed-content {
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.order-fixed-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-fixed-label {
    font-size: 12px;
    color: #999;
}

.order-fixed-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.order-fixed-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-fixed-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.order-fixed-qty-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.quantity-control-fixed {
    display: flex;
    align-items: center;
    gap: 0;
}

.quantity-btn-fixed {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    border-radius: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.quantity-btn-fixed:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
}

.quantity-btn-fixed:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: none;
}

.quantity-btn-fixed:hover {
    background: #f5f5f5;
    border-color: #000;
}

.quantity-input-fixed {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-left: none;
    border-right: none;
    border-radius: 0;
    font-size: 14px;
    appearance: textfield;
    -moz-appearance: textfield;
    padding: 0;
}

.quantity-input-fixed:focus {
    outline: none;
    border-color: #e5e5e5;
}

.quantity-input-fixed::-webkit-outer-spin-button,
.quantity-input-fixed::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.order-btn-fixed {
    flex-shrink: 0;
    width: auto;
    min-width: 120px;
    padding: 14px 24px;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .order-button-fixed {
        padding: 10px 12px;
    }

    .order-fixed-price {
        font-size: 16px;
    }

    .order-btn-fixed {
        min-width: 100px;
        padding: 12px 20px;
        font-size: 15px;
    }
}

.product-detail-tabs {
    border-top: 2px solid #000;
    position: relative;
}

.tab-list {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0.3rem;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 0;
}

.tab-item {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s;
    flex: 0 0 33.333%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.tab-item:hover {
    color: #000;
}

.tab-item.active {
    color: #000;
    border-bottom-color: #000;
}

.content-section {
    padding-top: 40px;
    padding-bottom: 40px;
    scroll-margin-top: 80px;
    min-height: 500px;
    /* PC에서 최소 높이 보장 (고시정보 영역 확보) */
}

.notice-content-wrapper {
    min-height: 400px;
    /* 고시정보 테이블 영역 최소 높이 */
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}

@media (max-width: 768px) {
    .content-section {
        padding-top: 30px;
        padding-bottom: 30px;
        min-height: 250px;
        /* 모바일에서 최소 높이 조정 */
    }

    .notice-content-wrapper {
        min-height: 200px;
        /* 모바일에서 고시정보 영역 높이 */
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .tab-list {
        padding-top: 15px;
    }

    .tab-item {
        padding: 12px 0;
        font-size: 14px;
    }

    .notice-table {
        font-size: 13px;
    }

    .notice-table th,
    .notice-table td {
        padding: 10px 12px;
    }
}

.detail-content-wrapper {
    position: relative;
}

.detail-content {
    line-height: 1.8;
    color: #333;
    max-height: 1200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.detail-content.expanded {
    max-height: none;
}

.detail-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.detail-content.expanded~.detail-content-overlay,
.detail-content-wrapper.expanded .detail-content-overlay {
    opacity: 0;
}

.detail-more-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.detail-more-btn {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.detail-more-btn:hover {
    background: #f9f9f9;
    border-color: #000;
}

.detail-more-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.detail-more-btn.expanded .detail-more-icon {
    transform: rotate(180deg);
}

.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    left: calc(50% + 240px - 44px - 16px);
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: bottom 0.3s ease;
}

/* 고정 주문 영역이 표시될 때 위로가기 버튼 위치 조정 */
body:has(.product-bottom-fixed) .scroll-top-btn {
    bottom: 90px;
}

/* 아이콘 stroke */
.scroll-top-icon {
    width: 22px;
    height: 22px;
    color: #111;
    display: block;
}

.scroll-top-icon path {
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

@media (max-width: 1240px) {
    .scroll-top-btn {
        left: auto;
        right: 16px;
    }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 12px;
        bottom: 100px;
        width: 42px;
        height: 42px;
    }

    /* 고정 주문 영역이 표시될 때 위로가기 버튼 위치 조정 (모바일) */
    body:has(.product-bottom-fixed) .scroll-top-btn {
        bottom: 95px;
    }

    .order-fixed-bottom {
        flex-wrap: wrap;
        gap: 10px;
    }

    .order-fixed-quantity {
        flex: 1;
        min-width: 120px;
    }

    .order-btn-fixed {
        flex: 1;
        min-width: auto;
    }
}

.detail-report {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.detail-report-link {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.detail-report-link:hover {
    color: #666;
}

.detail-content .product-description {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-content img {
    max-width: 100%;
    height: auto;
}

.notice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.notice-table th,
.notice-table td {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
    font-size: 0.8rem;
}

.notice-table th {
    background: #f9f9f9;
    font-weight: 600;
    width: 10.5rem;
}

.info-section {
    margin-bottom: 40px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.info-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.info-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .main-image {
        max-width: 100%;
    }

    .thumbnail-list {
        max-width: 100%;
    }
}

/* 주문 완료 페이지 스타일 */
.order-complete-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.order-complete-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.order-complete-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.order-complete-icon.success {
    background: #4caf50;
}

.order-complete-icon.error {
    background: #ff9800;
}

.order-complete-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.order-complete-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.order-info-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.order-info-row:last-child {
    border-bottom: none;
}

.order-info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.order-info-value {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.order-info-value.success {
    color: #4caf50;
}

.order-info-value.error {
    color: #f44336;
}

.order-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.order-btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.order-btn-primary {
    background: #000;
    color: #fff;
}

.order-btn-primary:hover {
    background: #333;
}

.order-btn-secondary {
    background: #f5f5f5;
    color: #000;
    border: 1px solid #e5e5e5;
}

.order-btn-secondary:hover {
    background: #e5e5e5;
}

@media (max-width: 768px) {
    .order-complete-page {
        padding: 20px 16px;
    }

    .order-complete-card {
        padding: 24px 20px;
    }

    .order-complete-title {
        font-size: 24px;
    }

    .order-actions {
        flex-direction: column;
    }

    .order-btn {
        width: 100%;
    }
}

/* 상품 목록 페이지 스타일 */
.product-list-page {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem;
    min-height: calc(100vh - 550px);
}

.product-list-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #000;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.product-list-container {
    margin-top: 20px;
}

.empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.product-item:last-child {
    border-bottom: none;
}

.product-link {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.product-link:hover {
    opacity: 0.8;
}

.product-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    justify-content: center;
}

.product-brand {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-wrapper {
    margin: 0 !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
}

.product-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-discount-rate {
    font-size: 16px;
    color: #f00;
    font-weight: 700;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.product-shipping-badge {
    display: inline-block;
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .product-list-page {
        padding: 0.75rem;
    }

    .page-title {
        font-size: 20px;
    }

    .product-image-wrapper {
        width: 100px;
        height: 100px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 17px;
    }
}