/*!
Theme Name: Kadence
Theme URI: https://www.kadencewp.com/kadence-theme/
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Version: 1.4.5
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence
Requires at least: 6.3
Tested up to: 6.9.1
Tags: translation-ready, accessibility-ready, two-columns, right-sidebar, left-sidebar, footer-widgets, blog, custom-logo, custom-background, custom-menu, rtl-language-support, editor-style, threaded-comments, custom-colors, featured-images, wide-blocks, full-width-template, theme-options, e-commerce
Requires PHP: 7.4

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share
what you've learned with others.
*/


.store-leaf-improved {
    max-width: 1200px;
    margin: auto;
}

html {
  scroll-behavior: smooth;
}

.slidemenu ul {
list-style: none;
margin:0;
padding: 0;
display:flex;
overflow-x: auto;
}

.slidemenu {
    position: sticky;
    top: 0;
    background-color: #f7fafc;
    display: flex;
    white-space: nowrap;
    pointer-events: all;
    overflow-y: hidden;
    overflow-x: hidden;
    /* margin: auto; */
    flex-wrap: nowrap;
    justify-content: space-evenly;
    z-index: 999;
}

.slidemenu li {
    float: left;
     flex: none;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
}

.slidemenu a {
  text-decoration: none !important;
	transition: all 50ms ease-in-out;
}

.slidemenu a:hover,
.slidemenu a:focus {
  color: #666;
}

.slidemenu .active {
  background: #9ffd32;
  color: #014b3f;
  font-weight: 500;
}

* {
  box-sizing: border-box;
}


.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;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    background-color: #c9ead99c;
    box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in;
}

.product-image img {
    width: 100%;
    height: 30vh;
    object-fit: contain;
}

.product-add-to-cart {
    margin-top: 6%;
}

.single_add_to_cart_button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 5%;
}

.single_add_to_cart_button:hover {
    background: #333;
}

.variations select {
    width: 100%;
    margin-bottom: 5%;
    padding: 6px;
}

section.related.products ul.products {
    display:block;
}

#notificationModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

#modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}


#modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

#modal-header-content {
        display: flex;
    justify-content: center;
}

/* The Close Button */
#modal-close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#modal-close:hover,
#modal-close:focus {
 color: #000;
  text-decoration: none;
  cursor: pointer;
}

.contents {
    line-height: 0.8rem;
    margin-top: 0px;
    padding: 4%;
}

.contents p::after {
      content: "\A - - -";
white-space: pre;
    }
    
.product-description-button::before {
    content: "\f14c";
}

.product-description-button {
    font-size: 2rem;
    display: inline !important;
}

a:hover {
        color: #01d965;
	text-underline-offset: .25em;
	text-decoration:underline;
}

a {
	color: #01d965;
}

@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}