/* Hide Product Tabs Navigation */
.woocommerce-tabs ul.tabs {
    display: none !important;
}

/* Style the Description Panel */
/* Using high specificity to override existing !important rules from theme */
body #content .woocommerce-tabs .panel,
body .woocommerce-tabs .panel {
    background-color: #122031 !important;
    /* Rich Dark Blue (Add to Cart color) */
    color: #f1f1f1 !important;
    /* Light text for contrast */
    padding: 30px !important;
    border-radius: 6px !important;
    /* Increased roundness */
    margin-top: 20px !important;
    border: none !important;
    /* Remove grey border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Style headings inside the panel to be visible on dark background */
.woocommerce-tabs .panel h2,
.woocommerce-tabs .panel h3,
.woocommerce-tabs .panel h4 {
    color: #eda83f;
    /* Orange accent color */
    margin-top: 0;
}

.woocommerce-tabs .panel p {
    color: #e0e0e0;
}

/* Ensure the panel takes full width if it was previously floated next to tabs */
.woocommerce-content-box {
    width: 100% !important;
    float: none !important;
}