/* 區塊樣式 */
.product-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-section {
        flex-direction: row;
    }
}

.product-image-container {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.product-details {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-title {
    font-weight: 500;
    color: #1f2937;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

.product-price {
    font-size: var(--p-size);
    color: #1e40af;
    margin: 4px 0;
}

.product-features,
.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.features-list {
    list-style-type: disc;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 0.5rem;
}