/* Product Info Section Styles */
.product.info.detailed {
    margin-top: 40px;
    padding: 20px 0;
}

.product-info-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.product-info-section:last-child {
    margin-bottom: 0;
}

.product-info-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1979c3;
}

.product-info-title h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-content {
    line-height: 1.7;
    color: #555;
}

.product-info-content p {
    margin: 0 0 15px 0;
}

.product-info-content p:last-child {
    margin-bottom: 0;
}

/* More Information Table Styles */
.product-info-content .additional-attributes-wrapper {
    overflow-x: auto;
}

.product-info-content .data.table.additional-attributes {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.product-info-content .data.table.additional-attributes th,
.product-info-content .data.table.additional-attributes td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.product-info-content .data.table.additional-attributes tr:last-child th,
.product-info-content .data.table.additional-attributes tr:last-child td {
    border-bottom: none;
}

.product-info-content .data.table.additional-attributes th {
    width: 30%;
    background: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.product-info-content .data.table.additional-attributes td {
    color: #555;
}

.product-info-content .data.table.additional-attributes tr:hover {
    background: #fafafa;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .product-info-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .product-info-title h2 {
        font-size: 18px;
    }

    .product-info-content .data.table.additional-attributes th,
    .product-info-content .data.table.additional-attributes td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }

    .product-info-content .data.table.additional-attributes th {
        background: #e8e8e8;
        border-bottom: none;
        padding-bottom: 5px;
    }

    .product-info-content .data.table.additional-attributes td {
        border-top: none;
        padding-top: 5px;
    }
}
