/* ===== HEADER ===== */
.title {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #CFA387;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 28px;
    color: #7c6557;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 26px;
    font-weight: 600;
    margin-top: 38px;
    margin-bottom: 12px;
    color: #C99C56;
}

/* ===== INFO BOX ===== */
.info-box {
    background: #F0E7DD;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    line-height: 1.7;
}

.info-row {
    display: flex;
    margin-bottom: 6px;
}

.info-label {
    font-weight: 600;
    min-width: 105px;
}

/* ===== PRICE SECTION ===== */
.price-section {
    background: #F7EFE5;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.price-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: #CFA387;
    text-align: center;
    margin-bottom: 14px;
}

.price-row {
    margin-bottom: 15px;
}

.price-top {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.price-name {
    font-size: 17px;
    color: #5A4A3C;
    white-space: nowrap;
    margin-right: 10px;
}

.price-line {
    flex: 1;
    border-bottom: 1px solid #CBB8A4;
    opacity: 0.6;
}

.price-money {
    white-space: nowrap;
    margin-left: 10px;
    font-weight: 500;
}

/* Dòng dài hơn 1 hàng */
.price-row.long .price-name {
    white-space: normal;
    line-height: 1.35;
}

.price-row.long .price-top {
    flex-wrap: wrap;
}

.price-row.long .price-line {
    margin-top: 6px;
}

/* ===== FADE IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

button {
    padding: 10px 16px;
    font-size: 14px;
    background: #CFA387;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}