 .product-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.product-meta li {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.product-meta .category {
    color: #007bff; /* Blue */
}
.product-meta .sub-category {
    color: #28a745; /* Green */
}
.product-meta .brand {
    color: #17a2b8; /* Teal */
}
.product-meta .price {
    color: #e83e8c; /* Pink */
    font-weight: bold;
}

.product-details-wrapper {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto;
    color: #333;
}
.product-details-wrapper h2 {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 6px;
    margin-bottom: 16px;
}
.affiliate-buy-options ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.affiliate-buy-options li {
    background: #f1f8ff;
    border: 1px solid #cce0ff;
    border-radius: 6px;
    padding: 10px;
    width: 220px;
    transition: box-shadow 0.3s ease;
}
.affiliate-buy-options li:hover {
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}
.affiliate-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.affiliate-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.affiliate-name {
    font-weight: 600;
    font-size: 16px;
    color: #004085;
}
.affiliate-price {
    font-weight: 700;
    color: #28a745;
    font-size: 15px;
}

.short-description p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.product-specifications {
    margin-top: 30px;
}
.spec-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
    font-size: 15px;
}
.spec-table th,
.spec-table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
}
.spec-table th {
    background-color: #007BFF;
    color: #fff;
    text-align: left;
}
.spec-table tr:nth-child(even) {
    background-color: #f9f9f9;
}