/*
Theme Name: bogo-workshop-theme
Theme URI: https://bogoworkshop.com/
Author: bogoworkshop
Author URI: https://bogoworkshop.com/
Description: Modern WooCommerce & Elementor compatible theme with full WordPress standards and easy customization.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bogo-workshop-theme
Tags: custom-background, custom-logo, e-commerce, woocommerce, elementor, blog, translation-ready
*/

body, h1, h2, h3, h4, h5, h6, p, span, div, a, li, input, textarea, button {
  font-family: 'ABeeZee' sans-serif !important;
  line-height: 1.5;
}

button, .button, .elementor-button {
  background-color: #007cba;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

button:hover, .button:hover, .elementor-button:hover {
  background-color: #005f8d;
}

.woocommerce .woocommerce-Price-amount {
  color: #e53935 !important;
  font-weight: 600;
}


/* === Enhanced WooCommerce & Responsive Styles === */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    border: 1px solid #eee;
    padding: 16px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    transform: scale(1.01);
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    margin: 10px 0 5px;
}

.woocommerce ul.products li.product .price {
    color: #e53935;
    font-weight: bold;
    font-size: 16px;
}

.woocommerce ul.products li.product .button {
    margin-top: 10px;
    background-color: #007cba;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Mobile enhancements */
button, .button, .elementor-button {
    padding: 14px 20px;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container, .site, .elementor-section {
    padding-left: 16px;
    padding-right: 16px;
}

footer, .elementor-location-footer {
    padding: 20px 16px;
    text-align: center;
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 375px) {
  body {
    font-size: 15px;
  }
  .elementor-button {
    font-size: 15px;
    padding: 12px 18px;
  }
}

@media only screen and (min-width: 376px) and (max-width: 430px) {
  body {
    font-size: 16px;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 700px) and (max-width: 820px) {
  .woocommerce ul.products {
    grid-template-columns: 2fr 2fr;
    gap: 24px;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1100px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .elementor-button {
    font-size: 17px;
  }
}

/* Boxed layout */
body.boxed-layout .site,
body.boxed-layout .elementor-location-header,
body.boxed-layout .elementor-location-footer {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    padding: 0 20px;
}
/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Subtotal Product Page*/
/* --- Bogo Subtotal Block Styling --- */
#compare_desktop {
  width: 100%;
  max-width: 100%; /* changed from 600px */
  box-sizing: border-box;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  background-color: #fafafa;
  padding: 20px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}


/* Common row styles */
#compare_desktop .subtotal_bogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  margin: 6px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #000;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  font-family: inherit;
  transition: all 0.2s ease-in-out;
  min-width: 300px;
  box-sizing: border-box;
}

/* Label styling */
#compare_desktop .subtotal_bogo span:first-child,
#compare_desktop .subtotal_bogo .total-label {
  min-width: 160px !important;
  width: 160px !important;
  display: inline-block;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

/* Amount styling */
#compare_desktop .subtotal_bogo span:last-child,
#compare_desktop .subtotal_bogo .total-amount {
  flex-grow: 1;
  font-weight: 500;
  color: #222;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
}

/* Total row special styling */
#compare_desktop .subtotal_bogo.tot {
  background: #dcdcdc;
  border-left-color: #c59800;
  font-weight: 600;
  font-size: 17px;
  color: #111;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-end;  /* Align content to right */
}

/* Float total amount right */
#compare_desktop .subtotal_bogo.tot .total-amount {
  float: right;
  margin-left: 10px;
}
@media (max-width: 480px) {
  #compare_desktop .subtotal_bogo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #compare_desktop .subtotal_bogo span:first-child,
  #compare_desktop .subtotal_bogo .total-label {
    width: auto !important;
    min-width: unset !important;
    text-align: left;
    white-space: normal;
  }

  #compare_desktop .subtotal_bogo span:last-child,
  #compare_desktop .subtotal_bogo .total-amount {
    text-align: right;
    float: none !important;
    margin-top: 0;
    white-space: nowrap;
  }

  #compare_desktop .subtotal_bogo.tot {
    justify-content: space-between;
  }
}
/* Base menu item styling */
/* Set "Shop" menu item text to black (default state only) */
.elementor-nav-menu .menu-item-44432 > a.elementor-item {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

.elementor-nav-menu a.elementor-item {
  display: block;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

/* Home menu item */
.elementor-nav-menu .menu-item-home > .elementor-item {
  background: #fce570 !important;
  color: #1f1d2b !important;
  font-weight: 700;
}

.elementor-nav-menu .menu-item-home > .elementor-item:hover,
.elementor-nav-menu .menu-item-home > .elementor-item:focus,
.elementor-nav-menu .menu-item-home > .elementor-item:active {
  background: #f6d833 !important;
  color: #141320 !important;
}

/* All items after Home */
.elementor-nav-menu .menu-item-home ~ li > .elementor-item {
  background: #f7f4dc !important;
  color: #3b3a55 !important;
}

.elementor-nav-menu .menu-item-home ~ li > .elementor-item:hover,
.elementor-nav-menu .menu-item-home ~ li > .elementor-item:focus,
.elementor-nav-menu .menu-item-home ~ li > .elementor-item:active {
  background: #ece7c7 !important;
  color: #2a293f !important;
}

/* First-level submenu items */
.elementor-nav-menu .sub-menu > li > a.elementor-sub-item {
  background: #fdfbf3 !important;
  color: #2e2c49 !important;
  padding-left: 20px;
}

.elementor-nav-menu .sub-menu > li > a.elementor-sub-item:hover,
.elementor-nav-menu .sub-menu > li > a.elementor-sub-item:focus,
.elementor-nav-menu .sub-menu > li > a.elementor-sub-item:active {
  background: #eee9d4 !important;
  color: #1f1d2b !important;
}

/* Second-level submenu items */
.elementor-nav-menu .sub-menu .sub-menu > li > a.elementor-sub-item {
  background: #e9f1f4 !important;
  color: #2b3a4b !important;
  padding-left: 30px;
}

.elementor-nav-menu .sub-menu .sub-menu > li > a.elementor-sub-item:hover,
.elementor-nav-menu .sub-menu .sub-menu > li > a.elementor-sub-item:focus,
.elementor-nav-menu .sub-menu .sub-menu > li > a.elementor-sub-item:active {
  background: #d8e5ea !important;
  color: #1e2a38 !important;
}

/* Third-level submenu items */
.elementor-nav-menu .sub-menu .sub-menu .sub-menu > li > a.elementor-sub-item {
  background: #e3e7ea !important;
  color: #1f2933 !important;
  padding-left: 40px;
}

/* Third-level hover/focus/active */
.elementor-nav-menu .sub-menu .sub-menu .sub-menu > li > a.elementor-sub-item:hover,
.elementor-nav-menu .sub-menu .sub-menu .sub-menu > li > a.elementor-sub-item:focus,
.elementor-nav-menu .sub-menu .sub-menu .sub-menu > li > a.elementor-sub-item:active {
  background: #ccd5db !important;
  color: #0e1820 !important;
}

/* Items with submenu (top-level parent) */
.elementor-nav-menu .menu-item-has-children > a.elementor-item {
  background: #dfe1e8 !important;
  color: #2c2f44 !important;
}

.elementor-nav-menu .menu-item-has-children > a.elementor-item:hover {
  background: #cfd1d8 !important;
  color: #1f2133 !important;
}

/* ▼ Arrow spacing */
.elementor-nav-menu .sub-arrow {
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
}
