/* Product Info Styles */
.product-info__section {
    padding: 15px 0;
}

.product-info__item {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.product-info__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-info__label {
    font-weight: bold;
    width: 200px;
    flex-shrink: 0;
}

.product-info__value {
    flex: 1;
}

/* Specs Table */
.product-details__specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.product-details__specs-table + .product-details__specs-table {
    margin-top: -8px;
}

.product-details__spec-label {
    width: 33.333%;
    padding: 6px 8px 6px 0;
    color: #666;
    font-weight: 500;
    vertical-align: top;
    border-bottom: 1px solid #f0f0f0;
}

.product-details__spec-value {
    padding: 6px 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.product-details__spec-list {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.product-details__spec-list li {
    padding: 1px 0;
}

.product-details__specs-table tr:last-child .product-details__spec-label,
.product-details__specs-table tr:last-child .product-details__spec-value {
    border-bottom: none;
}

/* Care Symbols */
.care-symbols {
    display: flex;
    gap: 10px;
}

.care-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
}

/* Certification Icons */
.certification-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certification-icon {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Download Links */
.download-link {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.download-link:hover {
    background-color: #e0e0e0;
}

.download-icon {
    margin-right: 10px;
    font-size: 20px;
}
