/*
Theme Name: Sea Child Theme
Theme URI: https://sea.axiomthemes.com/
Description: Sea is a Premium WordPress theme that has built-in support for popular Page Builders, slider with swipe gestures, and is SEO- and Retina-ready. The unique system of inheritance and override options allows setting up individual parameters for different sections of your site and supported plugins.
Author: AxiomThemes
Author URI: https://axiomthemes.com/
Version: 1.4.0
Tested up to: 6.9
Requires at least: 5.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, e-commerce, portfolio, grid-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
Text Domain: sea
Template: sea
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */
/* Cible le select natif (au cas où JS/Select2 ne s'applique pas) */

/* Cible le select natif (au cas où JS/Select2 ne s'applique pas) */
#pa_option {
  width: 70% !important;
}

/* Cible toutes les variations par data-attribute, plus robuste */
select[data-attribute_name^="attribute_"] {
  width: 70% !important;
}

/* Cible le conteneur Select2 généré juste après le select */
.variations select + .select2-container,
.variations select.select2-hidden-accessible + .select2-container {
  width: 70% !important;
}

/* S'assure que la cellule parente prend toute la largeur dispo */
.variations td.value {
  width: 70%;
  display: block;
}
add_action('wp_enqueue_scripts', function() {
    if (is_page(3299)) { // l'ID visible dans ton inspecteur : post-3299
        wp_enqueue_style('seasoul-faq',
            get_stylesheet_directory_uri() . '/seasoul-faq.css',
            [], '1.0'
        );
    }
});