/* 롯데온 스타일 제품상세 페이지 CSS - 완전 재구성 */

/* 기본 스타일 리셋 */
.product-detail-section * {
    box-sizing: border-box;
}

/* 메인 컨테이너 */
.product-detail-section {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 20px 0 60px 0;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 제품 헤더 섹션 */
.product-header-section {
    background: #ffffff;
    padding: 20px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.product-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.product-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.product-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
}

.badge.best {
    background-color: #dc2626;
    color: white;
    border-color: #dc2626;
}

.badge.hot {
    background-color: #fef3c7;
    color: #d97706;
    border-color: #fbbf24;
}

.product-detail-tags {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

/* 제품 메인 섹션 */
.product-main-section {
    margin-bottom: 60px;
    padding: 20px 0;
}

/* 제품 이미지 영역 */
.product-image-area {
    padding-right: 10px;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    aspect-ratio: 1;
    cursor: pointer;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: none;
    z-index: 1;
}

.main-image-container:hover .image-zoom-overlay {
    opacity: 1;
}

/* 썸네일 컨테이너 */
.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    justify-content: center;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: #e74c3c;
}

.thumbnail-item:hover {
    border-color: #c0392b;
    transform: translateY(-2px);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 이미지 뷰어 팝업 */
.image-viewer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-viewer-popup.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
    z-index: 1;
}

.image-viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}

.image-viewer-container > * {
    pointer-events: auto;
}

.image-viewer-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-main-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.image-viewer-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.image-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.image-viewer-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.image-viewer-prev {
    left: 20px;
}

.image-viewer-next {
    right: 20px;
}

.image-viewer-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .image-viewer-container {
        padding: 40px 20px;
    }

    .image-viewer-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .image-viewer-prev {
        left: 10px;
    }

    .image-viewer-next {
        right: 10px;
    }

    .image-viewer-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }

    .image-viewer-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* 제품안내 및 렌탈안내 섹션 */
.product-info-section,
.rental-info-section {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rental-info-section {
    border-bottom: none;
    margin-bottom: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 4px 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.info-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    min-width: 120px;
    flex-shrink: 0;
    margin-right: 15px;
}

.info-value {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.info-value-with-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.other-options-section {
    margin-top: 8px;
}

.other-options-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.option-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.option-thumbnail-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.option-thumbnail-item:hover .option-thumbnail-image {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.option-thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-thumbnail-title {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.option-thumbnail-item:hover .option-thumbnail-title {
    color: #e74c3c;
}

/* 다른 옵션 바로가기 독립 섹션 */
.other-options-section-standalone {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.other-options-tab-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.other-options-tab-btn {
    padding: 6px 16px;
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    color: #6b7280;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.other-options-tab-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background-color: #fff5f5;
}

.other-options-tab-btn.active {
    border-color: #e74c3c;
    background-color: #e74c3c;
    color: #ffffff;
}

.other-options-tab-content {
    margin-top: 12px;
}

/* 관련 상품 인라인 섹션 */
.related-products-inline-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.related-products-inline-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.related-products-inline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-product-inline-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-product-inline-card:hover {
    border-color: #e74c3c;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-product-inline-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.related-product-inline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-inline-card:hover .related-product-inline-image img {
    transform: scale(1.05);
}

.related-product-inline-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.related-product-inline-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-inline-price {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
}

.related-product-inline-price span {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .related-products-inline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .related-products-inline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-product-inline-image {
        height: 120px;
    }

    .related-product-inline-info {
        padding: 10px;
    }

    .related-product-inline-name {
        font-size: 13px;
    }

    .related-product-inline-price {
        font-size: 14px;
    }

    .option-thumbnail-image {
        width: 50px;
        height: 50px;
    }

    .option-thumbnail-title {
        font-size: 10px;
    }

    .other-options-label {
        font-size: 11px;
    }
}

/* 렌탈 기준가 섹션 */
.rental-price-section {
    margin-bottom: 30px;
}

.rental-price-box {
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rental-price-left {
    display: flex;
    align-items: center;
}

.rental-price-label {
    font-size: 17px;
    font-weight: 700;
    color: #374151;
}

/* 마케팅 문구 - 태그 형식, 라벨보다 작은 글씨 */
.product-detail-marketing-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
    padding: 6px 10px;
    border-radius: 6px;
    max-width: 100%;
}

.rental-price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.rental-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rental-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
    letter-spacing: -2px;
}

.rental-price-unit {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.rental-price-daily {
    font-size: 12px;
    color: #6b7280;
    text-align: right;
}

.rental-price-details {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

.rental-price-details p {
    margin: 0 0 8px 0;
}

.rental-price-details p:last-child {
    margin-bottom: 0;
}

.rental-price-details u {
    text-decoration: underline;
    font-weight: 500;
}

/* 견적상담 섹션 */
.quotation-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.quotation-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.quotation-description {
    margin-bottom: 15px;
}

.quotation-description p {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 8px 0;
}

.quotation-description p:last-child {
    margin-bottom: 0;
}

.quotation-description-additional {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.quotation-description-additional p {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 8px 0;
}

.quotation-description-additional p:last-child {
    margin-bottom: 0;
}

.quotation-toggle-btn {
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.quotation-toggle-btn:hover {
    background-color: #f8f9fa;
    border-color: #e74c3c;
    color: #e74c3c;
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.quotation-toggle-btn:hover .toggle-icon {
    color: #e74c3c;
}

.quotation-collapsible-content {
    display: none;
    animation: slideDown 0.3s ease;
}

.quotation-collapsible-content.expanded {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

/* 옵션 선택 */
.option-selection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 수량 선택 래퍼 - 가로 배치 */
.quantity-select-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-select-wrapper .select-label {
    min-width: 60px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.quantity-select-wrapper .quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
}

.quantity-select-wrapper .quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quantity-select-wrapper .quantity-btn:hover {
    background-color: #e9ecef;
}

.quantity-select-wrapper .quantity-btn:active {
    background-color: #dee2e6;
}

.quantity-select-wrapper .quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: transparent;
    padding: 0;
}

.quantity-select-wrapper .quantity-input:focus {
    outline: none;
}

/* 커스텀 셀렉트박스 */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
}

.custom-select:hover {
    border-color: #9ca3af;
}

.custom-select.active {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.select-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-right: 12px;
    flex-shrink: 0;
}

.select-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
}

.select-arrow {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

.custom-select.active .select-arrow {
    transform: rotate(180deg);
}

.option-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    border: none;
    background: transparent;
    font-size: 14px;
}

/* 선택된 상품 리스트 */
.productview_selected-products {
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.productview_product-list {
    display: flex;
    flex-direction: column;
}

.productview_product-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #f3f4f6;
    background-color: #ffffff;
    gap: 12px;
    min-height: 48px;
}

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

.productview_product-info {
    flex: 1;
    min-width: 0;
}

.productview_product-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* 렌탈 기간 선택 (선택된 상품 리스트용) */
.productview_period-select-wrapper {
    margin-right: 12px;
    min-width: 120px;
}

.productview_period-select-wrapper .custom-select-wrapper {
    min-width: 120px;
}

.productview_period-select-wrapper .custom-select {
    padding: 6px 10px;
    min-height: 32px;
    font-size: 12px;
}

.productview_period-select-wrapper .select-label {
    font-size: 11px;
    margin-right: 6px;
}

.productview_period-select-wrapper .select-value {
    font-size: 12px;
}

.productview_period-select-wrapper .select-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.productview_period-select-wrapper .option-select {
    font-size: 12px;
}

.productview_period-select-wrapper #selectedCustomPeriodInput_ {
    margin-top: 4px;
}

/* 수량/가격/삭제 영역 (모바일에서 2행으로 줄바꿈) */
.productview_product-row2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.productview_product-row2 .option-quantity-text {
    font-size: 12px;
    color: #6b7280;
    margin-right: 4px;
}

/* 렌탈 기간 뱃지 */
.productview_rental-badges {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.productview_rental-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background-color: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #fecaca;
}

/* 수량 조절 */
.productview_product-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
}

.productview_quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.productview_quantity-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.productview_quantity-btn:active {
    background-color: #f3f4f6;
}

.productview_quantity-value {
    min-width: 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.productview_product-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 12px;
    min-width: 70px;
    text-align: right;
}

.productview_remove-btn {
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.productview_remove-btn:hover {
    background-color: #f3f4f6;
    color: #dc2626;
}

/* 총 금액 섹션 */
.productview_total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.productview_total-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.productview_total-amount {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* 액션 버튼들 */
.productview_quotation-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.productview_action-btn {
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    white-space: nowrap;
}

.productview_action-btn .btn-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: middle;
}

.productview_action-btn i {
    font-size: 16px;
    display: inline-block;
    margin-right: 6px;
    min-width: 16px;
    line-height: 1;
}

/* 메인 버튼 - 강조 (가장 넓게) */
.productview_main-btn {
    flex: 2;
    min-width: 180px;
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #ffffff;
    font-weight: 600;
}

.productview_main-btn .btn-icon {
    color: #ffffff;
    fill: #ffffff;
}

.productview_main-btn:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* 기타 버튼 - 심플한 라인 스타일 (좁게) */
.productview_consult-btn {
    flex: 1;
    min-width: 120px;
    color: #374151;
}

.productview_consult-btn .btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #fae210;
}

.productview_consult-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.productview_consult-btn:hover .btn-icon {
    opacity: 0.9;
}

/* 전화문의 버튼 - 특별 레이아웃 */
.productview_call-btn {
    flex: 1;
    min-width: 120px;
    color: #374151;
    flex-direction: column;
    gap: 4px;
}

.productview_call-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.call-label {
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

.call-number {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

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

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

/* 가격 섹션 */
.price-section {
    margin-bottom: 20px;
}

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

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

.discount-rate {
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.sale-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 4px;
}

.price-unit {
    font-size: 18px;
    font-weight: 500;
    color: #666;
}

.price-note {
    font-size: 14px;
    color: #666;
}

/* 할인 정보 */
.discount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 12px 16px;
    background-color: #fff5f5;
    border-radius: 6px;
    border: 1px solid #fed7d7;
}

.discount-badge {
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.discount-text {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 500;
}

/* 제품 옵션 */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 5px;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.option-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.option-btn.active {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* 수량 선택 */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.quantity-input:focus {
    outline: none;
}

/* 총 가격 */
.total-price-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.total-price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.total-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

/* 액션 버튼들 */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-primary {
    flex: 1;
    padding: 16px 24px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    background-color: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-secondary:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
}

/* 배송 정보 */
.delivery-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    color: #e74c3c;
    width: 16px;
}

/* 프로모션 배너들 */
.promotion-banners {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.promo-banner {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-2px);
}

.promo-banner img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.promo-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 12px 12px;
    font-size: 12px;
    font-weight: 600;
}

/* 탭 네비게이션 */
.product-tabs-section {
    margin-bottom: 60px;
}

.productview_tab-navigation {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.productview_tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.productview_tab-btn:hover {
    color: #e74c3c;
}

.productview_tab-btn.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

/* 탭 콘텐츠 */
.productview_tab-content {
    min-height: 400px;
}

.productview_tab-panel {
    display: none;
}

.productview_tab-panel.active {
    display: block;
}

/* 상품 상세 정보 */
.productview_product-details {
    text-align: center !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.productview_product-details img {
    max-width: 100%;
    height: auto;
    display: block !important;
    margin: 0 auto !important;
    width: auto;
}

.product-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.detail-value {
    color: #333;
    text-align: right;
    flex: 1;
}

.product-description h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.product-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-description ul {
    color: #666;
    line-height: 1.6;
    padding-left: 20px;
}

/* 리뷰 섹션 */
.review-summary {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stars {
    font-size: 24px;
    color: #ffc107;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.rating-count {
    font-size: 16px;
    color: #666;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: white;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-content {
    color: #666;
    line-height: 1.6;
}

/* Q&A 섹션 */
.qa-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.qa-form h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.qa-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 15px;
}

.qa-input:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-qa-submit {
    padding: 10px 20px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qa-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.qa-q {
    background-color: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.qa-text {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.qa-date {
    font-size: 14px;
    color: #666;
}

.qa-answer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background-color: white;
}

.qa-a {
    background-color: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* 배송 정보 */
.shipping-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px 0;
}

.shipping-info h4:first-child {
    margin-top: 0;
}

.shipping-info ul {
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

/* 관련 상품 섹션 */
.related-products-section,
.bundle-products-section {
    margin-bottom: 60px;
}

.related-products-section h3,
.bundle-products-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* remarket 제품 카드 그리드 */
.remarket-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.remarket-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.remarket-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.remarket-product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.remarket-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.remarket-product-card:hover .remarket-product-image img {
    transform: scale(1.05);
}

.remarket-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.remarket-product-badge.remarket-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: remarketPulse 2s infinite;
}

.remarket-product-badge.remarket-best {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.remarket-product-badge.remarket-popular {
    background: linear-gradient(135deg, #10b981, #059669);
}

.remarket-product-badge.remarket-new {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.remarket-product-badge.remarket-recommended {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.remarket-product-badge.remarket-special {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.remarket-product-badge.remarket-essential {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

@keyframes remarketPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.remarket-product-info {
    padding: 24px;
}

.remarket-product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.remarket-product-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.remarket-product-rental {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.rental-period {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.monthly-rental {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 4px;
}

.monthly-rental .period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.daily-rental {
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
}

/* 기존 스타일 유지 (bundled products) */
.related-products-grid,
.bundle-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-product-card,
.bundle-product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-product-card:hover,
.bundle-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-product-card img,
.bundle-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sale-price {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
}

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

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .product-detail-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .product-image-area {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .product-info-area {
        padding-left: 0;
    }
    
    .product-info-section,
    .rental-info-section {
        margin-bottom: 20px;
        padding: 12px 0;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 4px 0;
    }
    
    .info-label {
        min-width: auto;
        font-size: 13px;
        margin-right: 0;
    }
    
    .info-value {
        text-align: left;
        font-size: 13px;
    }
    
    .rental-price-box {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .rental-price-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .rental-price-amount {
        font-size: 28px;
    }
    
    .rental-price-daily {
        text-align: left;
    }
    
    .rental-price-details {
        font-size: 12px;
    }
    
    .quotation-section {
        margin-top: 25px;
        padding: 20px;
    }
    
    .quotation-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .quotation-description p {
        font-size: 12px;
    }
    
    .option-selection {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .custom-select {
        padding: 6px 10px;
        min-height: 36px;
    }
    
    .select-label {
        font-size: 13px;
        margin-right: 10px;
    }
    
    .select-value {
        font-size: 13px;
    }
    
    .select-arrow {
        font-size: 11px;
    }
    
    .productview_selected-products {
        margin-bottom: 15px;
    }
    
    .productview_product-item {
        flex-wrap: wrap;
        padding: 6px 12px;
        gap: 8px;
        min-height: 40px;
    }
    
    .productview_product-row2 {
        flex-basis: 100%;
        width: 100%;
        margin-top: 4px;
        padding-top: 8px;
        border-top: 1px solid #f3f4f6;
        gap: 8px;
    }
    
    .productview_product-row2 .option-quantity-text {
        margin-right: 0;
    }
    
    .productview_product-name {
        font-size: 12px;
    }
    
    .productview_rental-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .productview_product-price {
        font-size: 12px;
        min-width: 60px;
    }
    
    .productview_quantity-btn {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .productview_quantity-value {
        font-size: 11px;
    }
    
    .productview_remove-btn {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
    
    .productview_total-section {
        padding: 10px 12px;
    }
    
    .productview_total-amount {
        font-size: 14px;
    }
    
    .productview_action-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .productview_action-btn i {
        font-size: 14px;
    }
    
    .productview_main-btn {
        min-width: 150px;
    }
    
    .productview_consult-btn,
    .productview_call-btn {
        min-width: 100px;
    }
    
    .call-label {
        font-size: 10px;
    }
    
    .call-number {
        font-size: 14px;
    }
    
    .productview_quotation-actions {
        gap: 8px;
        margin-top: 12px;
    }
    
    .quotation-btn {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .thumbnail-container {
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        align-self: center;
    }
    
    .promotion-banners {
        flex-direction: column;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid,
    .bundle-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 10px 0 40px 0;
    }
    
    .product-header-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .product-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .product-main-title {
        font-size: 28px;
    }
    
    .product-badges {
        gap: 6px;
    }
    
    .badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .product-detail-tags {
        gap: 4px;
    }
    
    .product-detail-tag {
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .product-main-section {
        margin-bottom: 40px;
        padding: 10px 0;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .sale-price {
        font-size: 28px;
    }
    
    .option-buttons {
        justify-content: center;
    }
    
    .quantity-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .productview_tab-navigation {
        flex-wrap: wrap;
    }
    
    .productview_tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .related-products-grid,
    .bundle-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .remarket-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .remarket-product-card {
        border-radius: 12px;
    }
    
    .remarket-product-info {
        padding: 16px;
    }
    
    .remarket-product-name {
        font-size: 16px;
    }
    
    .remarket-product-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .remarket-product-rental {
        padding: 10px;
    }
    
    .monthly-rental {
        font-size: 16px;
    }
    
    .related-product-card img,
    .bundle-product-card img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .product-header-section {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .product-subtitle {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .product-main-title {
        font-size: 24px;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .product-detail-tag {
        padding: 2px 5px;
        font-size: 9px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-info-section,
    .rental-info-section {
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .info-item {
        padding: 3px 0;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-value {
        font-size: 12px;
    }
    
    .rental-price-box {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rental-price-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .rental-price-amount {
        font-size: 24px;
    }
    
    .rental-price-daily {
        text-align: left;
    }
    
    .rental-price-details {
        font-size: 11px;
    }
    
    .quotation-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .quotation-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .quotation-description p {
        font-size: 11px;
    }
    
    .option-selection {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .custom-select {
        padding: 6px 8px;
        min-height: 32px;
    }
    
    .select-label {
        font-size: 12px;
        margin-right: 8px;
    }
    
    .select-value {
        font-size: 12px;
    }
    
    .select-arrow {
        font-size: 10px;
    }
    
    .productview_selected-products {
        margin-bottom: 12px;
    }
    
    .productview_product-item {
        flex-wrap: wrap;
        padding: 6px 10px;
        gap: 6px;
        min-height: 36px;
    }
    
    .productview_product-row2 {
        flex-basis: 100%;
        width: 100%;
        margin-top: 2px;
        padding-top: 6px;
        border-top: 1px solid #f3f4f6;
        gap: 6px;
    }
    
    .productview_product-row2 .option-quantity-text {
        margin-right: 0;
    }
    
    .productview_product-info {
        flex: 1;
        min-width: 100px;
    }
    
    .productview_product-name {
        font-size: 11px;
    }
    
    .productview_rental-badge {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .productview_product-quantity {
        margin-right: 6px;
        gap: 4px;
    }
    
    .productview_quantity-btn {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .productview_quantity-value {
        font-size: 10px;
        min-width: 12px;
    }
    
    .productview_product-price {
        font-size: 11px;
        min-width: 50px;
        margin-right: 6px;
    }
    
    .productview_remove-btn {
        width: 16px;
        height: 16px;
        font-size: 12px;
    }
    
    .productview_total-section {
        padding: 8px 10px;
    }
    
    .productview_total-label {
        font-size: 12px;
    }
    
    .productview_total-amount {
        font-size: 13px;
    }
    
    .productview_quotation-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    
    .productview_action-btn {
        padding: 12px;
        font-size: 12px;
        min-width: auto;
    }
    
    .productview_action-btn i {
        font-size: 13px;
    }
    
    .productview_main-btn,
    .productview_consult-btn,
    .productview_call-btn {
        min-width: auto;
    }
    
    .call-label {
        font-size: 9px;
    }
    
    .call-number {
        font-size: 13px;
    }
    
    .sale-price {
        font-size: 24px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .option-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-secondary {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .productview_tab-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .related-products-grid,
    .bundle-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .remarket-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .remarket-product-image {
        height: 180px;
    }
    
    .remarket-product-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .remarket-product-info {
        padding: 14px;
    }
    
    .remarket-product-name {
        font-size: 15px;
    }
    
    .remarket-product-description {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .remarket-product-rental {
        padding: 8px;
    }
    
    .rental-period {
        font-size: 11px;
    }
    
    .monthly-rental {
        font-size: 15px;
    }
    
    .monthly-rental .period {
        font-size: 13px;
    }
    
    .daily-rental {
        font-size: 10px;
    }
}

/* 온라인 견적시스템 & 부가서비스 바로가기 섹션 */
.quick-access-section {
    display: flex;
    gap: 20px;
    margin: 80px 0;
    padding: 0 20px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.qa-quotation-card,
.qa-services-card,
.qa-rental-card {
    text-decoration: none;
    display: block;
    border-radius: 12px;
    padding: 36px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    min-width: 0;
    flex-shrink: 1;
    color: inherit;
    background: #ffffff;
}

/* 그리드 비율 4:4:4 (동일) */
.qa-quotation-card,
.qa-services-card,
.qa-rental-card {
    flex: 1 1 0;
    min-width: 250px;
    border: 1px solid #e5e7eb;
}

/* 호버 효과 공통 */
.qa-quotation-card:hover,
.qa-services-card:hover,
.qa-rental-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 88, 163, 0.15);
    border-color: #0058a3;
}

/* 좌측 강조 라인 */
.qa-quotation-card::before,
.qa-services-card::before,
.qa-rental-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0058a3;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.qa-quotation-card:hover::before,
.qa-services-card:hover::before,
.qa-rental-card:hover::before {
    opacity: 1;
}

.qa-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    min-width: 0;
}

.qa-go-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    background: #0058a3;
    color: white;
    border: none;
}

.qa-quotation-card:hover .qa-go-button,
.qa-services-card:hover .qa-go-button,
.qa-rental-card:hover .qa-go-button {
    background: #003d7a;
    transform: translateX(3px);
}


.qa-go-button svg {
    transition: transform 0.3s ease;
}

.qa-go-button:hover svg {
    transform: translateX(2px);
}

.qa-card-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #f8fafc;
    border-radius: 10px;
    color: #64748b;
}

.qa-card-icon svg {
    width: 26px;
    height: 26px;
}

.qa-quotation-card:hover .qa-card-icon,
.qa-services-card:hover .qa-card-icon,
.qa-rental-card:hover .qa-card-icon {
    background: #f0f7ff;
    color: #0058a3;
    transform: scale(1.03);
}

.qa-card-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.qa-card-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.5;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    color: #1e293b;
}

.qa-quotation-card:hover .qa-card-text h4,
.qa-services-card:hover .qa-card-text h4,
.qa-rental-card:hover .qa-card-text h4 {
    color: #0058a3;
}

.qa-card-text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #64748b;
}

.qa-quotation-card:hover .qa-card-text p,
.qa-services-card:hover .qa-card-text p,
.qa-rental-card:hover .qa-card-text p {
    color: #475569;
}

/* 반응형 디자인 - quick-access-section */
@media (max-width: 1200px) {
    .quick-access-section {
        margin: 60px 0;
        padding: 0 15px;
        gap: 20px;
    }
    
    .qa-quotation-card,
    .qa-services-card,
    .qa-rental-card {
        padding: 32px 24px;
        min-width: 220px;
    }
    
    .qa-card-content {
        gap: 20px;
    }
    
    .qa-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .qa-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .qa-card-text h4 {
        font-size: 18px;
    }
    
    .qa-card-text p {
        font-size: 14px;
    }
    
    .qa-go-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .quick-access-section {
        flex-direction: column;
        gap: 20px;
        margin: 50px 0;
        padding: 0 15px;
    }
    
    .qa-quotation-card,
    .qa-services-card,
    .qa-rental-card {
        flex: none;
        width: 100%;
        min-width: 0;
        padding: 32px 28px;
    }
    
    .qa-card-content {
        gap: 20px;
    }
    
    .qa-card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .qa-card-text h4 {
        font-size: 18px;
    }
    
    .qa-card-text p {
        font-size: 14px;
    }
    
    .qa-go-button {
        padding: 12px 22px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .quick-access-section {
        margin: 40px 0;
        padding: 0 12px;
        gap: 16px;
    }
    
    .qa-quotation-card,
    .qa-services-card,
    .qa-rental-card {
        width: 100%;
        min-width: 0;
        padding: 28px 20px;
    }
    
    .qa-card-content {
        gap: 16px;
    }
    
    .qa-card-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    
    .qa-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .qa-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .qa-card-text {
        width: 100%;
    }
    
    .qa-card-text h4 {
        font-size: 16px;
    }
    
    .qa-card-text p {
        font-size: 13px;
    }
    
    .qa-go-button {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .quick-access-section {
        margin: 25px 0;
        padding: 0 8px;
    }
    
    .qa-quotation-card,
    .qa-services-card,
    .qa-rental-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .qa-card-content {
        gap: 12px;
    }
    
    .qa-card-icon {
        width: 36px;
        height: 36px;
    }
    
    .qa-card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .qa-card-text h4 {
        font-size: 13px;
    }
    
    .qa-card-text p {
        font-size: 10px;
    }
    
    .qa-go-button {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .qa-go-button svg {
        width: 14px;
        height: 14px;
    }
}

/* 인테리어 갤러리 섹션 */
.interior-gallery-section {
    margin: 60px 0;
    padding: 40px 0;
}

.interior-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.interior-gallery-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.more-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid #0058a3;
    color: #0058a3;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-button:hover {
    background: #0058a3;
    color: white;
    transform: translateX(4px);
}

.more-button svg {
    transition: transform 0.3s ease;
}

.more-button:hover svg {
    transform: translateX(2px);
}

.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.interior-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interior-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interior-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interior-gallery-item:hover img {
    transform: scale(1.1);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .interior-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .interior-gallery-item img {
        height: 140px;
    }
}

@media (max-width: 992px) {
    .interior-gallery-section {
        margin: 50px 0;
        padding: 30px 0;
    }
    
    .interior-gallery-header h3 {
        font-size: 22px;
    }
    
    .interior-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .interior-gallery-item img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .interior-gallery-section {
        margin: 40px 0;
        padding: 20px 0;
    }
    
    .interior-gallery-header h3 {
        font-size: 20px;
    }
    
    .more-button {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .more-button svg {
        width: 14px;
        height: 14px;
    }
    
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .interior-gallery-item img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .interior-gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .interior-gallery-header h3 {
        font-size: 18px;
    }
    
    .more-button {
        padding: 7px 12px;
        font-size: 12px;
        border-radius: 18px;
    }
    
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .interior-gallery-item {
        border-radius: 8px;
    }
    
    .interior-gallery-item img {
        height: 90px;
    }
}

/* 렌탈 프로세스 섹션 */
.rental-process-section {
    margin: 60px 0;
    padding: 50px 0;
    background: #ffffff;
}

.rental-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.rental-process-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

.rental-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
}

.rental-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 0;
    padding: 0 8px;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0058a3;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 88, 163, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rental-process-step:hover .process-step-number {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 88, 163, 0.3);
}

.process-step-content {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rental-process-step:hover .process-step-content {
    background: #f0f7ff;
    border-color: #0058a3;
    box-shadow: 0 2px 8px rgba(0, 88, 163, 0.1);
}

.process-step-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
    word-break: keep-all;
    letter-spacing: -0.2px;
    text-align: center;
}

.process-step-connector {
    flex: 0 0 20px;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    margin: 0 4px;
    align-self: flex-start;
    margin-top: 28px;
}

.process-step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #cbd5e1;
}

/* 반응형 디자인 - 렌탈 프로세스 */
@media (max-width: 1400px) {
    .rental-process-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .rental-process-step {
        padding: 0 6px;
    }
    
    .process-step-number {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .process-step-content {
        padding: 10px 8px;
        min-height: 56px;
    }
    
    .process-step-title {
        font-size: 14px;
    }
    
    .process-step-connector {
        flex: 0 0 16px;
    }
}

@media (max-width: 1200px) {
    .rental-process-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .rental-process-step {
        padding: 0 4px;
    }
    
    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 19px;
        margin-bottom: 16px;
    }
    
    .process-step-content {
        padding: 10px 6px;
        min-height: 52px;
    }
    
    .process-step-title {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .process-step-connector {
        flex: 0 0 12px;
        margin-top: 24px;
    }
}

@media (max-width: 992px) {
    .rental-process-section {
        margin: 50px 0;
        padding: 40px 0;
    }
    
    .rental-process-container {
        padding: 0 15px;
    }
    
    .rental-process-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .rental-process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 0;
    }
    
    .rental-process-step {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        padding: 0 10px;
        margin: 0 10px;
    }
    
    .process-step-connector {
        display: none;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .process-step-content {
        padding: 10px 8px;
        min-height: 50px;
    }
    
    .process-step-title {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .rental-process-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .rental-process-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .rental-process-steps {
        gap: 24px 0;
    }
    
    .rental-process-step {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .process-step-number {
        width: 46px;
        height: 46px;
        font-size: 17px;
        margin-bottom: 14px;
    }
    
    .process-step-content {
        padding: 10px 6px;
        min-height: 48px;
    }
    
    .process-step-title {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .rental-process-section {
        margin: 30px 0;
        padding: 25px 0;
    }
    
    .rental-process-container {
        padding: 0 12px;
    }
    
    .rental-process-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .rental-process-steps {
        gap: 20px 0;
    }
    
    .rental-process-step {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
        margin: 0 8px;
        padding: 0 4px;
    }
    
    .process-step-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .process-step-content {
        padding: 8px 4px;
        min-height: 44px;
    }
    
    .process-step-title {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* 공통 정보 섹션 (배송비, 교환/반품, 유의사항, A/S 안내) */
.common-info-section {
    margin: 40px 0;
}

.info-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.info-box-header {
    background: #fef9c3;
    padding: 16px 24px;
    border-bottom: 2px solid #f59e0b;
}

.info-box-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.info-box-content {
    padding: 24px;
}

/* 제품상세 관리(에디터)에서 출력된 table 너비 강제 100% */
.info-box-content table {
    width: 100% !important;
}

/* 배송비 테이블 */
.delivery-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.delivery-table th,
.delivery-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.delivery-table thead {
    background: #f9fafb;
}

.delivery-table th {
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
}

.delivery-table td {
    font-size: 14px;
    color: #4b5563;
}

.delivery-table tbody tr:hover {
    background: #f9fafb;
}

/* 배송비 안내사항 */
.delivery-notes {
    margin-bottom: 24px;
}

.delivery-notes ol {
    padding-left: 24px;
    margin: 0;
}

.delivery-notes li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* 배송 제약사항 */
.delivery-restrictions {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

.delivery-restrictions p {
    font-size: 14px;
    color: #92400e;
    margin: 0 0 12px 0;
}

.delivery-restrictions ul {
    padding-left: 24px;
    margin: 0 0 12px 0;
}

.delivery-restrictions li {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    margin-bottom: 6px;
}

.disclaimer {
    background: #fee2e2;
    padding: 12px;
    border-radius: 6px;
    color: #991b1b;
    font-size: 13px;
    margin-top: 12px !important;
}

/* 정보 리스트 (교환/반품, 유의사항) */
.info-list {
    padding-left: 24px;
    margin: 0;
}

.info-list li {
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 12px;
}

.intro-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* A/S 문의 */
.as-contact {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.as-contact strong {
    font-size: 20px;
    color: #1e40af;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .info-box-header {
        padding: 14px 20px;
    }
    
    .info-box-header h4 {
        font-size: 16px;
    }
    
    .info-box-content {
        padding: 20px;
    }
    
    .delivery-table {
        font-size: 13px;
    }
    
    .delivery-table th,
    .delivery-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    .common-info-section {
        margin: 30px 0;
    }
    
    .info-box-header {
        padding: 12px 16px;
    }
    
    .info-box-header h4 {
        font-size: 15px;
    }
    
    .info-box-content {
        padding: 16px;
    }
    
    .delivery-table {
        font-size: 12px;
    }
    
    .delivery-table th,
    .delivery-table td {
        padding: 8px 6px;
    }
    
    .delivery-notes li,
    .info-list li,
    .intro-text {
        font-size: 13px;
    }
    
    .as-contact strong {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .delivery-table {
        font-size: 11px;
    }
    
    .delivery-table th,
    .delivery-table td {
        padding: 6px 4px;
    }
    
    .delivery-notes li,
    .info-list li,
    .intro-text {
        font-size: 12px;
    }
    
    .delivery-restrictions {
        padding: 16px;
    }
    
    .as-contact {
        padding: 16px;
    }
    
    .as-contact strong {
        font-size: 16px;
    }
}

/* 렌탈 서비스 이용 가이드 섹션 */
.rental-guide-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.rental-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #10b981, #3b82f6, #8b5cf6);
}

.rental-guide-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

.rental-guide-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #f59e0b);
    border-radius: 2px;
}

.rental-guide-cards {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rental-guide-card {
    flex: 1;
    min-width: 200px;
    height: 120px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rental-guide-card:hover {
    border-color: #dc2626;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.rental-guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.rental-guide-card:hover::before {
    left: 100%;
}

.guide-icon {
    margin-bottom: 12px;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.rental-guide-card:hover .guide-icon {
    color: #dc2626;
    transform: scale(1.1);
}

.guide-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.4;
    z-index: 2;
    position: relative;
    transition: color 0.3s ease;
}

.rental-guide-card:hover .guide-text {
    color: #dc2626;
}

/* 반응형 디자인 */
@media (max-width: 1400px) {
    .rental-guide-section {
        padding: 50px 30px;
    }
    
    .rental-guide-cards {
        gap: 20px;
    }
    
    .rental-guide-card {
        min-width: 180px;
        height: 110px;
    }
}

@media (max-width: 1200px) {
    .rental-guide-section {
        margin: 60px 0;
        padding: 40px 25px;
    }
    
    .rental-guide-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .rental-guide-cards {
        gap: 16px;
    }
    
    .rental-guide-card {
        min-width: 160px;
        height: 100px;
    }
    
    .guide-text {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .rental-guide-section {
        margin: 50px 0;
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .rental-guide-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .rental-guide-cards {
        gap: 12px;
    }
    
    .rental-guide-card {
        min-width: 140px;
        height: 90px;
    }
    
    .guide-icon {
        margin-bottom: 8px;
    }
    
    .guide-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .guide-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .rental-guide-section {
        margin: 40px 0;
        padding: 30px 15px;
    }
    
    .rental-guide-cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .rental-guide-card {
        min-width: auto;
        height: 80px;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .guide-icon {
        margin-bottom: 0;
        margin-right: 16px;
    }
    
    .guide-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .guide-text {
        font-size: 14px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .rental-guide-section {
        margin: 30px 0;
        padding: 25px 12px;
    }
    
    .rental-guide-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .rental-guide-card {
        height: 70px;
        padding: 0 16px;
    }
    
    .guide-icon {
        margin-right: 12px;
    }
    
    .guide-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .guide-text {
        font-size: 13px;
    }
}

/* 애니메이션 효과 */
.product-detail-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.related-product-card,
.bundle-product-card {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 호버 효과 */
.related-product-card:hover,
.bundle-product-card:hover {
    transform: translateY(-4px) scale(1.02);
}

/* 포커스 스타일 */
.option-btn:focus,
.quantity-btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.productview_tab-btn:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    .product-detail-section,
    .related-product-card,
    .bundle-product-card {
        animation: none;
        transition: none;
    }
}

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
    .option-btn.active {
        background-color: #000;
        color: #fff;
        border-color: #000;
    }
    
    .btn-primary {
        background-color: #000;
        color: #fff;
    }
    
    .sale-price {
        color: #000;
    }
}