/*
 Theme Name:   Pizzan Child
 Theme URI: https://themeholy.com/wordpress/pizzan/
 Description:  This is a child theme for Pizzan WordPress Theme
Author URI: https://themeforest.net/user/themeholy
 Author URI:   #
 Template:     pizzan
 Version:      1.0
 Tags:         two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats,  sticky-post, threaded-comments, translation-ready
 Text Domain:  pizzan-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

.slot-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.slot-btn {
  padding: 10px 16px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.slot-btn:hover {
  background-color: #e0e0e0;
}

.slot-btn.active {
  background-color: #007c48;
  color: white;
  border-color: #007c48;
}










.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #4CAF50;
  font-size: 12px;
  text-decoration: none;
  position: relative;
}

.nav-item i {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #1d1d1d;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Show only on Mobile */
@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}




