/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra Child Theme
Author: Your Name
Author URI: https://yourwebsite.com/
Template: astra
Version: 1.0
*/

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

/* Your custom CSS here */
.category-page {
    width: 100%;
}
.category-banner {
   position: relative;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Side images */
.banner-side {
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-side.left { left: 0; }
.banner-side.right { right: 0; }

/* Center title */
.banner-content {
    z-index: 2;
}

.banner-content h1 {
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: bold;
}

/* Description */
.category-description {
    max-width: 1140px;
    margin: 40px auto;
    text-align: center;
    line-height: 1.8;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    max-width: 1140px;
    margin: 0 auto;
}

.product-item {
    text-align: center;
}


.product-item p {
    margin-top: 10px;
}