/*
 Theme Name:   Blocksy Child
 Template:     blocksy
 Text Domain:  blocksy-child
*/

body,
.starry-bg {
    background-image: url('img/starry_square_blue.jpg') !important;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
}

#header {
    border-bottom: 1px solid !important;
}

#footer {
    border-top: 1px solid !important;
}

/* Single Product Gallery */
.woocommerce-product-gallery {
    border: 1px solid;
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Shop Loop Images */
.woocommerce ul.products li.product img {
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
    display: block;
    /* Removes potential inline spacing issues */
}

/* Responsive: Reduce shadow size on smaller screens */
@media (max-width: 768px) {

    .woocommerce-product-gallery,
    .woocommerce ul.products li.product img {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}