/* ===================================================================================

* Theme Name: Listygo Child
* Theme URI:    https://radiustheme.com/demo/wordpress/listygo
* Description: Listygo is one of the latest and unique responsive Listing Directory WordPress Theme
* Version: 1.0
* Author: RadiusTheme
* Author URI: https://www.radiustheme.com/
* Template: listygo
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, two-columns, right-sidebar, custom-background, custom-header, editor-style, featured-images, post-formats, sticky-post, threaded-comments, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */
 
/* style-extra.css */
* {
    white-space: normal;
    margin: 0;
    padding: 0;
}
/* Modern WooCommerce Shop Styles */
.custom-shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shop-page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    font-weight: 600;
}

.shop-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-grid ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

ul.products li.product {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

ul.products li.product:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

ul.products li.product h2 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-top: 15px;
}

ul.products li.product .price {
    color: #d61a3c;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

ul.products li.product .button {
    margin-top: 15px;
    background-color: #1e73be;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

ul.products li.product .button:hover {
    background-color: #155d96;
}
