.shop_attributes tr, .shop_attributes tr td { 
					background-color: #FFFFFF !important;
					color: #000000 !important;
				} 
				.shop_attributes tr.alt, .shop_attributes tr.alt td { 
					background-color: #EAEAEA !important;
					color: #000000 !important;
				}
				/* Shop Attributes Table - Clean Professional Styling */
.shop_attributes {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 20px 0;
    border: none;
    box-shadow: none;
}

/* Group Header Rows - STRONG Section Titles */
.shop_attributes .attribute_group_row {
    background: linear-gradient(to bottom, #e8eaf0 0%, #dfe2e9 100%);
    border-top: 2px solid #d1d5db;
    border-bottom: 2px solid #d1d5db;
}

.shop_attributes .attribute_group_row:first-child {
    border-top: none;
    border-radius: 8px 8px 0 0;
}

.shop_attributes .attribute_group_row:first-child .attribute_group_name {
    border-radius: 8px 8px 0 0;
}

.shop_attributes .attribute_group_name {
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
    padding: 14px 24px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    background-color: transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Data Rows - Clean White Background */
.shop_attributes .attribute_row {
    background-color: #ffffff;
    border: none;
}

/* Last row gets rounded corners at bottom */
.shop_attributes .attribute_row:last-child {
    border-radius: 0 0 8px 8px;
}

.shop_attributes .attribute_row:last-child td {
    border-radius: 0 0 8px 8px;
}

.shop_attributes .attribute_row td {
    padding: 0;
    border: none;
    background-color: #ffffff;
}

/* Inner table for name-value pairs */
.shop_attributes .attribute_name_values {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

/* Last row in last section gets rounded corners */
.shop_attributes .attribute_row:last-child .attribute_name_values tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.shop_attributes .attribute_row:last-child .attribute_name_values tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

/* Force ALL rows to be white - NO BORDERS between rows */
.shop_attributes .attribute_name_values tbody tr {
    border: none !important;
    border-bottom: none !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease;
}

.shop_attributes .attribute_name_values tbody tr:last-child {
    border-bottom: none !important;
}

/* Force .alt class rows to also be white - OVERRIDE zebra stripes */
.shop_attributes .attribute_name_values tbody tr.alt {
    background-color: #ffffff !important;
    border: none !important;
}

/* Beautiful Hover Effects - ONLY on hover */
.shop_attributes .attribute_name_values tbody tr:hover {
    background-color: #f0f6ff !important;
    transform: scale(1.001);
}

.shop_attributes .attribute_name_values tbody tr.alt:hover {
    background-color: #f0f6ff !important;
}

/* Attribute Name (left column) */
.shop_attributes .attribute_name {
    color: #24292e;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 24px;
    text-align: left;
    width: 42%;
    background-color: transparent;
    border: none !important;
    vertical-align: middle;
    transition: color 0.2s ease;
}

.shop_attributes .attribute_name_values tbody tr:hover .attribute_name {
    color: #0366d6;
}

/* Attribute Value (right column) */
.shop_attributes .attribute_value {
    color: #586069;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 24px;
    text-align: left;
    border: none !important;
    vertical-align: middle;
    background-color: transparent;
}

.shop_attributes .attribute_value p {
    margin: 0;
    color: #586069;
    line-height: 1.5;
}

/* Add STRONG visual separation between sections */
.shop_attributes .attribute_row + .attribute_group_row {
    border-top: 3px solid #d1d5db;
}

/* Optional: Add a subtle left border accent on hover */
.shop_attributes .attribute_name_values tbody tr:hover td:first-child {
    border-left: 3px solid #0366d6 !important;
}

.shop_attributes .attribute_name_values tbody tr td:first-child {
    border-left: 3px solid transparent !important;
    transition: border-left 0.2s ease;
}

/* Remove all other borders from th and td */
.shop_attributes th,
.shop_attributes td {
    border: none !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .shop_attributes {
        margin: 15px 0;
    }
    
    .shop_attributes .attribute_group_name {
        font-size: 12px;
        padding: 12px 16px;
        letter-spacing: 1.3px;
    }
    
    .shop_attributes .attribute_name {
        width: 45%;
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .shop_attributes .attribute_value {
        padding: 14px 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .shop_attributes .attribute_group_name {
        font-size: 11px;
        padding: 10px 12px;
        letter-spacing: 1px;
    }
    
    .shop_attributes .attribute_name {
        width: 50%;
        padding: 12px;
        font-size: 12px;
    }
    
    .shop_attributes .attribute_value {
        padding: 12px;
        font-size: 12px;
    }
}