/*
 Theme Name:   Product Menu - Child
 Template:     kadence
*/

.store-leaf-improved {
    max-width: 1200px;
    margin: auto;
}


.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    z-index: 999;
    position: sticky;
    top: 20px;
}

.category-nav a {
    background: #014b3f;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}


.category-group {
    margin-left: calc(var(--depth) * 10px);
    margin-bottom: 50px;
}


.category-header {
    margin-bottom: 15px;
}

.category-header h2,
.category-header h3,
.category-header h4 {
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
}


.view-category {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
}


.leaf-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

.leaf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
}

.product-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-add-to-cart {
    margin-top: 15px;
}

.single_add_to_cart_button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.single_add_to_cart_button:hover {
    background: #333;
}

.variations select {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
}