﻿.product-detail-wrapper {
    max-height: 85vh;
    overflow-y: auto;
}

.section-title h2,
.section-title h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.simple-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 18px;
}

.simple-info-table th {
    width: 200px;
    padding: 10px 12px;
    background: #FAF7F3;
    border: 1px solid #ddd;
    border-left: 8px solid #D3C6B7;
    font-weight: 600;
}

.simple-info-table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    color: #333;
}

.highlight-text {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #4B4033;
    margin-top: 50px;
}

/* 모바일에서 여백 조정 */
@media (max-width: 576px) {
    .section-title {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .product-intro {
        flex-direction: column; /* 모바일: 위/아래 배치 */
    }

    .product-detail-wrapper {
        max-height: 100vh;
    }

    .simple-info-table {
        font-size: 16px;
    }

    .simple-info-table th,
    .simple-info-table td {
        display: block;
        width: 100%;
    }

    .simple-info-table th {
        border-bottom: none;
    }

    .highlight-text {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #4B4033;
        margin-top: 50px;
    }
}
