.package-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.package-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 4px;
    background: #374543;
}

.package-table-wrapper {
    width: 100%;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-table thead {
    background: #374543;
}

.package-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: bold;
    color: var(--dark-color);
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
}

.package-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-table tbody tr {
    transition: background-color 0.3s ease;
}

.package-table tbody tr:hover {
    background-color: #f8f9fa;
}

.package-table tbody tr.is-hovered {
    background-color: #f8f9fa;
}

.package-notes {
    text-align: left;
}

.package-note {
    margin-bottom: 0.5rem;
    color: #555555;
    font-size: 0.85rem;
    line-height: 1.5;
}

.package-note:last-child {
    margin-bottom: 0;
}

/* Design Banner Styles */
.design-banner {
    width: 100%;
}

.design-banner-text {
    text-align: center;
    padding: 5rem 0 5rem;
    background: #f5f5f5;
}

.design-banner-title {
    font-size: 44px;
    font-weight: 500;
    color: #995964;
    margin: 0;
    font-family: "Noto Sans Japanese", sans-serif;
    line-height: 1.3;
}

.design-banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 2rem;
   
}

.design-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    animation: pageLoadZoom 1.2s ease;
}
@keyframes pageLoadZoom {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* PC端固定尺寸 */
@media (min-width: 992px) {
    .furniture-categories .furniture-image-wrapper {
        width: 705px;
        height: 392px;
        max-width: 705px;
        flex-shrink: 0;
    }
    
    .furniture-categories .col-lg-6.aos-animate-text {
        width: 705px;
        height: 392px;
        max-width: 705px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* 右侧文本内容（图片在右的情况）的右边距与左侧一致 */
    .furniture-categories .col-lg-6.order-2.order-lg-1 .content-text {
        padding: 0 5rem 0 0;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .design-banner-text {
        padding: 3rem 1.5rem 2rem;
    }
    
    .design-banner-title {
        font-size: 32px;
    }
    
    .design-banner-image {
        height: 300px;
        margin-bottom: 1.5rem;
    }

    .furniture-categories {
        padding: 3rem 0 !important;
    }

    /* .furniture-categories .container {
        padding: 0 1.5rem;
    } */

    .furniture-section {
        margin-bottom: 3rem !important;
    }

    .furniture-section .row {
        margin: 0;
    }

    .furniture-section .col-lg-6 {
        padding: 0 !important;
        margin-bottom: 1.5rem;
        /* margin-top: 1.5rem; */
    }

    .furniture-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        aspect-ratio: unset !important; 
    }

    .furniture-image-wrapper img {
        width: 100%;
        height: 213px;
    }

    .aos-animate-text {
        padding: 1.5rem !important;
    }

    .furniture-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .content-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .design-banner-text {
        padding: 2.6rem 1rem 2.5rem;
    }
    
    .design-banner-title {
        font-size: 38.7px;
        line-height: 1.4;
    }
    
    .design-banner-image {
        height: 300px;
        margin-bottom: 1rem;
    }

    .furniture-categories {
        padding: 2rem 0 !important;
    }
/* 
    .furniture-categories .container {
        padding: 0 1rem;
    } */

    .furniture-section {
        margin-bottom: 0rem !important;
    }

    /* .furniture-section .col-lg-6 {
        margin-bottom: 1rem;
    } */

    /* .furniture-image-wrapper {
        aspect-ratio: 1 / 0.75;
    } */

    .aos-animate-text {
        padding: 1rem !important;
    }

    .furniture-title {
        font-size: 27.2px;
        margin-bottom: 0.75rem;
         padding-bottom: 0rem; 
    }

    .content-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

