/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/storefront/
Description: Child theme for Storefront
Author: Your Name
Author URI: https://example.com
Template: storefront
Version: 1.0
*/

/* Add custom CSS below */


/* Catalog Page */

.balfour-catalog-wrapper {
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.catalog-header {
text-align:center;
margin-bottom:40px;
}

.catalog-title {
font-size:22px;
margin-bottom:20px;
}

.catalog-search {
max-width:500px;
margin:auto;
}

.catalog-search-input {
width:100%;
padding:12px 16px;
border:1px solid #ddd;
border-radius:6px;
font-size:16px;
}


/* Add to Cart Button */

.catalog-products .button {
background:#2ea3c4;
color:#fff;
border-radius:6px;
padding:10px 20px;
}

/* Announcement Bar */

.announcement-bar{
background:#2ea3c4;
color:#fff;
text-align:center;
padding:8px;
font-size:14px;
}

/* Header */

.balfour-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 30px;
border-bottom:1px solid #eee;
background:#fff;
}

.header-left{
width:80px;
}

.menu-icon{
font-size:22px;
cursor:pointer;
}

.header-center{
flex:1;
text-align:center;
}

.balfour-logo{
height:40px;
}

.header-right{
display:flex;
align-items:center;
gap:20px;
}

.cart-icon{
font-size:22px;
text-decoration:none;
}

.help-icon{
width:28px;
height:28px;
border-radius:50%;
background:#eee;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
cursor:pointer;
}

.catalog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.catalog-card{
background:#fff;
border:1px solid #e6e6e6;
border-radius:8px;
padding:20px;
text-align:center;
transition:0.25s;
}

.catalog-card:hover{
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.catalog-image img{
width:100%;
height:200px;
object-fit:contain;
}

.catalog-title{
font-size:16px;
margin-top:15px;
color:#222;
}

.catalog-price{
font-size:15px;
margin-top:6px;
color:#444;
}

.catalog-cart .button{
margin-top:12px;
background:#3aa0c8;
border-radius:6px;
padding:10px 18px;
font-size:14px;
color:#fff;
}

.catalog-cart .button:hover{
background:#2b87ac;
}

