/*
Theme Name: Wizzie Child Theme
Theme URI: http://wordpress-style.net
Description: Child Theme For Divi
Author: Web Wizards
Author URI: http://wordpress-style.net
Template: Divi
Version: 2.0
*/
/* Start your custom CSS bellow this comment
============================================ */
@font-face {
  font-family: "NectoMono";
  src: url("fonts/NectoMono-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PhillySansPS";
  src: url("fonts/phillysansps.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/*General*/
#page-container {
  background: black;
}
#page-container > div {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "PhillySansPS", sans-serif;
}
body {
  font-family: "NectoMono", sans-serif;
}
ul li::marker {
  color: #ff751f;
}
/*Homepage*/
.woocommerce .accessories-products ul.products li.product, .woocommerce-page .accessories-products ul.products li.product {
  margin-top: 120px !important;
}
.woocommerce .accessories-products ul.products li.product a .et_shop_image img, .woocommerce-page .accessories-products ul.products li.product a .et_shop_image img {
  height: 400px;
  object-fit: contain;
  width: 100%;
  margin: -140px auto 10px !important;
  overflow: visible;
}
.woocommerce .accessories-products ul.products li.product .woocommerce-loop-product__title, .woocommerce-page .accessories-products ul.products li.product .woocommerce-loop-product__title {
  min-height: 120px;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce ul.products li.product .product-specs {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
}
.woocommerce ul.products li.product .product-specs .spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.woocommerce ul.products li.product .product-specs img {
  width: unset !important;
  margin-bottom: 0 !important;
}
#homeScooters .ww-product-desc {
  margin-top: 6px;
  color: white;
  max-width: 90%;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
}
/*woocommerce*/
ul.et_pb_tabs_controls {
  background-color: #14151a;
}
ul.et_pb_tabs_controls:after {
  border-top: 1px solid #ff751f;
}
.et_pb_tabs_controls li {
  border-right: 1px solid #ff751f;
  padding: 15px;
}
/*Shop Page*/
.wcpf-filter > .wcpf-filter-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wcpf-field-drop-down-list select.wcpf-input {
  background: none;
  color: white;
  border-color: #EE8031;
  padding: 10px;
  border-radius: 7px;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  /* Space for arrow */
  padding-right: 35px;
  /* Custom chevron in #EE8031 */
  background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5' stroke='%23EE8031' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  position: relative;
}
.wcpf-field-drop-down-list select.wcpf-input:focus {
  outline: none;
  border-color: #ffae42;
}
.wcpf-field-drop-down-list select.wcpf-input option {
  color: black;
}
input.wcpf-input {
  background: none;
  color: white;
  border-color: #EE8031;
  padding: 10px;
  border-radius: 7px !important;
}
.wcpf-field-price-slider .wcpf-price-slider .ui-widget-content {
  display: none;
}
.wcpf-field-price-slider .wcpf-price-slider {
  padding-top: 0;
  margin-top: 2px;
}
.wcpf-field-button button.wcpf-button-action-reset {
  background: none;
  color: white;
  border-color: #EE8031;
  padding: 10px;
  border-radius: 7px;
}
.wcpf-field-button {
  padding-top: 5px;
}
.my-custom-sorting select {
  background: none;
  color: white;
  border-color: #EE8031;
  padding: 10px;
  border-radius: 7px;
}
.my-custom-sorting select option {
  color: black;
}
.woocommerce-result-count {
  display: none;
}
/******* Remove Divi's default overlay and add our custom overlay to shop archive products **********/
.et_shop_image .et_overlay {
  display: none !important;
}
ul.products li.product {
  position: relative;
  /* overflow: hidden;  <-- removed so the image can bleed out again */
  z-index: 0;
}
/* Background overlay */
ul.products li.product::after {
  content: "";
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  /* start transparent */
  transition: background 0.25s ease-in-out;
  pointer-events: none;
  /* overlay doesn't block clicks */
  z-index: 2;
  /* above content */
  margin: 20px;
  border-radius: 20px;
}
/* Hover tint */
ul.products li.product:hover::after {
  background: #ff751fc7;
  /* bump opacity so you can actually see it */
}
ul.products li.product:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease-in-out;
}
/* TEXT overlay (separate layer) */
ul.products li.product::before {
  content: "VIEW PRODUCT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  /* hidden until hover */
  transition: opacity 0.25s ease-in-out;
  pointer-events: none;
  /* text never blocks clicks */
  z-index: 3;
  /* above background overlay */
}
/* Show text on hover */
ul.products li.product:hover::before {
  opacity: 1;
}
/*Single Product*/
#wpgs-gallery img.wcgs-slider-image-tag {
  background-color: black;
  border-radius: 20px !important;
  margin-bottom: 5px;
}
#wpgs-gallery .wcgs-thumb {
  background-color: black;
  border-radius: 10px !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  color: white;
}
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
  margin-right: 0 !important;
  margin-bottom: 20px !important;
}
.woocommerce div.product form.cart div.quantity:has(input[type="hidden"]), .woocommerce-page div.product form.cart div.quantity:has(input[type="hidden"]) {
  display: none !important;
}
.single-product .quantity {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.single-product .quantity::before {
  content: "QTY";
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
  color: white;
}
/* Hide default arrows across all browsers */
.single-product .quantity input.qty::-webkit-inner-spin-button, .single-product .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.single-product .quantity input.qty {
  -moz-appearance: textfield !important;
}
/* Quantity wrapper */
.single-product .quantity {
  position: relative;
  display: inline-flex;
  align-items: center;
}
/* Input styling */
.single-product .quantity input.qty {
  width: 120px;
  /* bigger so buttons fit inside */
  text-align: center;
  font-size: 18px;
  padding: 10px 26px;
  /* space for inside buttons */
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
}
/* Inside buttons */
.single-product .qty-btn-inside {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: transparent;
  /* same background as input */
  user-select: none;
}
/* Position left and right */
.single-product .qty-minus {
  left: 47px;
}
.single-product .qty-plus {
  right: 3px;
}
/* QTY Label */
.single-product .quantity::before {
  content: "QTY";
  font-size: 14px;
  font-weight: 600;
  margin-right: 12px;
  color: white;
}
.woocommerce div.product form.cart .button {
  width: 100%;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px;
  color: white;
}
.et_pb_wc_tabs {
  border: none;
}
.et_pb_all_tabs {
  border: 1px solid #FF751F;
}
.et_pb_tabs_controls li {
  border: 1px solid #ff751f !important;
}
ul.et_pb_tabs_controls:after {
  border-top: none !important;
}
img.tab-image {
  border-radius: 20px;
}
/*Contact Page*/
.gform_wrapper input.text, .gform_wrapper input.title, .gform_wrapper input[type=email], .gform_wrapper input[type=password], .gform_wrapper input[type=tel], .gform_wrapper input[type=text], .gform_wrapper select, .gform_wrapper textarea {
  background-color: #000000;
  border: 1px solid #ff751f;
  padding: 15px !important;
  color: white;
  border-radius: 10px;
}
.gform_wrapper input.text::placeholder, .gform_wrapper input.title::placeholder, .gform_wrapper input[type=email]::placeholder, .gform_wrapper input[type=password]::placeholder, .gform_wrapper input[type=tel]::placeholder, .gform_wrapper input[type=text]::placeholder, .gform_wrapper select::placeholder, .gform_wrapper textarea::placeholder {
  color: white;
}
.gform_wrapper input.text:focus, .gform_wrapper input.title:focus, .gform_wrapper input[type=email]:focus, .gform_wrapper input[type=password]:focus, .gform_wrapper input[type=tel]:focus, .gform_wrapper input[type=text]:focus, .gform_wrapper select:focus, .gform_wrapper textarea:focus {
  color: white;
  border-color: #ff751f;
}
.gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  background-color: #ff751f;
  color: white;
  text-transform: uppercase;
  padding: 18px 30px;
  width: 100%;
  max-width: 270px;
  border: none;
}
/*Media Queries*/
@media (min-width: 981px) {
  .tab-description-wrapper {
    display: flex;
    gap: 2%;
  }
  .tab-description-wrapper > * {
    width: 49%;
  }
}
@media (max-width: 1430px) {
  .woocommerce-page ul.products li.product:nth-child(n) {
    width: 28.333% !important;
    clear: none;
    float: left !important;
  }
  .et_pb_shop ul.products.columns-1 li.product, .et_pb_shop ul.products.columns-2 li.product, .et_pb_shop ul.products.columns-3 li.product, .et_pb_shop ul.products.columns-4 li.product, .et_pb_shop ul.products.columns-5 li.product, .et_pb_shop ul.products.columns-6 li.product {
    width: 48% !important;
    margin-right: 4% !important;
  }
  .et_pb_shop ul.products.columns-1 li:nth-child(2n+2), .et_pb_shop ul.products.columns-2 li:nth-child(2n+2), .et_pb_shop ul.products.columns-3 li:nth-child(2n+2), .et_pb_shop ul.products.columns-4 li:nth-child(2n+2), .et_pb_shop ul.products.columns-5 li:nth-child(2n+2), .et_pb_shop ul.products.columns-6 li:nth-child(2n+2) {
    margin-right: 0 !important;
  }
  .et_pb_shop ul.products.columns-1 li:nth-child(3n+1), .et_pb_shop ul.products.columns-2 li:nth-child(3n+1), .et_pb_shop ul.products.columns-3 li:nth-child(3n+1), .et_pb_shop ul.products.columns-4 li:nth-child(3n+1), .et_pb_shop ul.products.columns-5 li:nth-child(3n+1), .et_pb_shop ul.products.columns-6 li:nth-child(3n+1) {
    clear: none;
  }
}
@media (max-width: 980px) {
  #header .et_pb_menu--style-left_aligned.et_pb_text_align_justified .et_pb_menu__wrap {
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .et-db #et-boc .et-l .et_pb_shop ul.products li.product, .et_pb_shop ul.products li.product, ul.products li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-1 li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-2 li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-3 li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-4 li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-5 li.product, .et-db #et-boc .et-l .et_pb_shop ul.products.columns-6 li.product {
    width: 100% !important;
    margin-right: 0 !important;
    clear: both !important;
  }
}
