/*
Theme Name: Storefront Child
Theme URI: https://yourwebsite.com/
Description: A child theme of Storefront for WooCommerce.
Author: Your Name
Author URI: https://yourwebsite.com/
Template: storefront
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../storefront/style.css");

.quantity {
    display: inline-flex;
    align-items: center;
}

.quantity .plus,
.quantity .minus {
    background: #eee;
    border: 1px solid #ccc;
    padding: 0 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    height: 40px;
    width: 40px;
}

.quantity input.qty {
    text-align: center;
    height: 40px;
    width: 60px;
    border: 1px solid #ccc;
    margin: 0 5px;
}

/*
Theme Name: Storefront Child with Slider
Template: storefront
*/

.home-banner-slider {
    width: 100%;
    max-width: 1000px;  /* reduced max-width */
    margin: 30px auto;  /* add spacing */
    overflow: hidden;
    border-radius: 16px;  /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle shadow */
    position: relative;
}

.home-banner-slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;  /* match the container's border-radius */
}


@media (max-width: 480px) {
    .slick-dots li button:before {
        font-size: 10px;
    }
}


.custom-footer {
	background-color: #000; /* Black background */
	color: #fff; /* White text */
	padding: 40px 20px;
	font-size: 14px;
	text-align: center;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-column {
	flex: 1 1 220px;
	max-width: 280px;
}

.footer-column h4 {
	color: #fff;
	margin-bottom: 15px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 8px;
}

.footer-column ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #1e90ff; /* Hover effect (Dodger Blue) */
}

.footer-logo img {
	max-width: 150px;
	margin-bottom: 10px;
}

.site-info {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #aaa;
	font-size: 13px;
	margin-top: 20px;
}






