/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.2.1753380834
Updated: 2025-07-24 18:13:54

*/

/* --- Final CSS for Boxed & Inline Radio Variations --- */

/* This creates the box around each attribute group (e.g., Frame, Dimensions) */
.variations tr {
    display: block; /* Allows us to treat the table row like a clean container */
    padding: 20px;
    border: 1px solid #e0e0e0; /* A light border for the box */
    border-radius: 5px;
    margin-bottom: 15px; /* Space between the boxes */
}

/* Style the attribute label (e.g., "Frame", "Dimensions") */
.variations th.label {
    display: block; /* Make the label take its own line */
    padding: 0;
    font-weight: bold;
    margin-bottom: 15px; /* Space between the label and the buttons */
}

/* Remove default table cell padding */
.variations td.value {
    padding: 0;
}

/* Hide the original dropdown that we're keeping for functionality */
.variations .hidden-variation-dropdown {
    display: none;
}

/* This is the container for our radio buttons */
.variation-radios {
    display: flex; /* This makes the buttons go inline (side-by-side) */
    flex-wrap: wrap;
    gap: 10px; /* This is the space between the buttons */
}

/* Hide the actual radio button's circle */
.variation-radios input[type="radio"] {
    display: none;
}

/* Style the label to look like a modern button */
.variation-radios label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
    color: #333;
    transition: all 0.2s ease-in-out;
}

/* Style for the button on hover */
.variation-radios label:hover {
    border-color: #0073aa;
    background-color: #f0f8ff;
}

/* Style for the button when it is selected */
.variation-radios input[type="radio"]:checked + label {
    border-color: #0073aa;
    background-color: #0073aa;
    color: #ffffff;
    font-weight: bold;
}