/*!
Theme Name: Blocksy Child
Theme URI: https://berleshop.test
Author: Your Name
Description: Child theme for Blocksy with custom logo and styling
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
Domain Path: /languages
Template: blocksy
*/

/* Import parent theme styles */
@import url('../blocksy/style.css');

/* Custom CSS for child theme */
:root {
    /* Add custom CSS variables here */
}

/* Main H1 styling */
h1 {
    font-size: 50px;
}

/* Product title styling */
.product_title.entry-title {
    font-size: 30px;
}

/* Apply same shadow to shop product cards as search cards */
.woocommerce ul.products li.product {
    box-shadow: 0 20px 80px rgba(193, 199, 212, 0.25);
    transition: box-shadow 0.3s ease;
    padding: 12px;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 20px 80px rgba(193, 199, 212, 0.35);
}

/* Logo customization */
.site-logo img, .site-logo svg {
    width: auto;
    height: auto;
    max-height: 120px; /* Enforce max height to prevent overlap */
}

.site-logo {
    display: flex;
    justify-content: flex-end; /* Align logo to the right as requested */
}

