/* Product Specifications Frontend Styling */
.bitprice-additional-information-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bitprice-specifications-content {
    margin: 20px 0;
}

.bitprice-specifications-content h1,
.bitprice-specifications-content h2,
.bitprice-specifications-content h3,
.bitprice-specifications-content h4,
.bitprice-specifications-content h5,
.bitprice-specifications-content h6 {
    color: var(--e-global-color-secondary, #222222);
    margin-bottom: 15px;
    font-weight: 600;
}

.bitprice-specifications-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.bitprice-specifications-content h4 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--e-global-color-text, #666666);
    font-weight: 700;
}

/* Tables in specifications */
.bitprice-specifications-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.bitprice-specifications-content table th,
.bitprice-specifications-content table td {
    padding: 12px 15px;
    text-align: left;
}

.bitprice-specifications-content table th:first-child,
.bitprice-specifications-content table td:first-child {
    width: 35%;
}

.bitprice-specifications-content table th {
    background-color: var(--e-global-color-dc38166, #F8F8F8);
    font-weight: 600;
    color: var(--e-global-color-secondary, #222222);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bitprice-specifications-content table td {
    color: var(--e-global-color-text, #444444);
    font-size: 15px;
    line-height: 1.5;
}

.bitprice-specifications-content table tr:last-child td {
    border-bottom: none;
}

.bitprice-specifications-content table tr:nth-child(odd) {
    background-color: var(--e-global-color-dc38166, #F8F8F8);
}

/* WooCommerce Product Attributes Table Styling */
.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table th,
.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table td {
    padding: 12px 15px;
    text-align: left;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table th:first-child,
.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table td:first-child,
.single-product .bitprice-tab-section table.woocommerce-product-attributes th:first-child, 
.single-product .bitprice-tab-section table.woocommerce-product-attributes td:first-child {
    width: 35%;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table th {
    background-color: var(--e-global-color-dc38166, #F8F8F8);
    font-weight: 600;
    color: var(--e-global-color-secondary, #222222);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table td {
    color: var(--e-global-color-text, #444444);
    font-size: 14px;
    line-height: 1.5;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table tr:last-child td {
    border-bottom: none;
}

.bitprice-tab-section .woocommerce-product-attributes.shop_attributes table tr:nth-child(odd) {
    background-color: var(--e-global-color-dc38166, #F8F8F8);
}

/* Lists in specifications */
.bitprice-specifications-content ul,
.bitprice-specifications-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.bitprice-specifications-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--e-global-color-text, #444444);
}

/* Paragraphs in specifications */
.bitprice-specifications-content p {
    margin: 15px 0;
    line-height: 1.6;
    color: var(--e-global-color-text, #444444);
}

/* Images in specifications */
.bitprice-specifications-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
}

/* Blockquotes in specifications */
.bitprice-specifications-content blockquote {
    border-left: 4px solid var(--e-global-color-accent, #DC9814);
    margin: 20px 0;
    padding: 15px 20px;
    background-color: var(--e-global-color-dc38166, #F8F8F8);
    font-style: italic;
}

/* Code blocks in specifications */
.bitprice-specifications-content code {
    background-color: var(--e-global-color-35b495d, #EEEEEE);
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.bitprice-specifications-content pre {
    background-color: var(--e-global-color-35b495d, #EEEEEE);
    padding: 15px;
    overflow-x: auto;
    margin: 20px 0;
}

/* Integration with existing WooCommerce styles */
.woocommerce-product-attributes + .bitprice-specifications-content {
    margin-top: 30px;
    padding-top: 25px;
}

/* Responsive design */
@media (max-width: 768px) {
    .bitprice-specifications-content table {
        font-size: 13px;
    }
    
    .bitprice-specifications-content table th,
    .bitprice-specifications-content table td {
        padding: 8px 10px;
    }
    
    .bitprice-specifications-content h3 {
        font-size: 20px;
    }
    
    .bitprice-specifications-content h4 {
        font-size: 16px;
    }
}