/*crazyfly overide css*/

/* Global hard override for text fonts (BO profile CSS often sets font-family directly). */
:root {
    --plio-text-font-family: 'Outfit', sans-serif;
}

html {
  font-size: 16px;
}

body {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--plio-text-font-family);
}

body,
button,
input,
select,
textarea,
label,
p,
span,
a,
li,
dt,
dd,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--plio-text-font-family) !important;
}

/* Keep technical monospace fonts unchanged */
code,
pre,
kbd,
samp {
    font-family: monospace !important;
}

.leo-megamenu .navbar-nav>li>a {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
}

.leo-megamenu .navbar-nav>li>a:hover {
  text-decoration: underline;
  color: #000;
}

.off-canvas-nav-megamenu .navbar-nav>li>a {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: none;
}

.box-shipping .ApRawHtml h4 {
  font-size: inherit;
}

/*top menu language selector*/
/* Adjust the country selector padding inside the dropdown */
.language-selector-wrapper .dropdown-menu {
    min-width: 220px; /* Ensure a comfortable width */
    padding: 10px; /* Apply consistent spacing */
}

.language-selector-wrapper .dropdown-header {
    padding: 8px 15px; /* Match language selector header spacing */
    font-weight: bold;
}

.language-selector-wrapper #country-selector {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
}

/* Remove excessive padding from form */
#country-selector-form {
    padding: 5px 10px; /* Apply a slight padding */
    margin: 0;
}

/* Ensure checkmark ONLY appears on the selected language */
.language-selector-wrapper .language-item.current a {
    position: relative;
    padding-right: 20px; /* Space for checkmark */
}

/* Remove checkmark from all other dropdown items (titles, country selector) */
.language-selector-wrapper .dropdown-header,
.language-selector-wrapper .no-checkmark,
.language-selector-wrapper form,
.language-selector-wrapper select,
.language-selector-wrapper .dropdown-divider {
    background-image: none !important;
    list-style: none !important;
}

/* Remove any forced ::before or ::after content (which could be checkmarks) */
.language-selector-wrapper .dropdown-header::before,
.language-selector-wrapper .dropdown-header::after,
.language-selector-wrapper .no-checkmark::before,
.language-selector-wrapper .no-checkmark::after,
.language-selector-wrapper form::before,
.language-selector-wrapper form::after {
    content: none !important;
    display: none !important;
}

/* Ensure country selector doesn't inherit unwanted styles */
.language-selector-wrapper #country-selector {
    background-image: none !important;
    list-style: none !important;
    border: 1px solid #ccc; /* Standard border */
    padding: 5px;
    cursor: pointer;
}

/* Remove checkmark from country dropdown */
.language-selector-wrapper #country-selector option {
    background-image: none !important;
    padding-left: 10px; /* Ensure proper spacing */
}


/*product-title*/
.thumbnail-container .h3.product-title {
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: bold;
}

/*product list disable hover*/
.thumbnail-container a.product-thumbnail .product-additional img {
    background: #fff;
    display: none;
}

/*product list price*/
#blockcart-modal .modal-body .divide-right p.product-price, .thumbnail-container .product-price-and-shipping .price, .leo-megamenu .dropdown-menu div.menu-title{
	font-weight: bold;
	font-size: 1.0rem;
}

/*product list discount*/
.thumbnail-container .product-price-and-shipping .discount-percentage, .thumbnail-container .product-price-and-shipping .discount-product {
	font-size: 0.9rem;
	background-color: #5bc0de;
}

/*product list out of stock*/
.product-flags li.product-flag {
	box-shadow: none;
}

/* product price*/
.product-prices .current-price {
	font-weight: bold;
	font-size: 1.6rem;
}

/* product regular price */ 
.product-discount .regular-price {
	font-size: 1.2rem;
}

/* product discount*/
.has-discount .discount, .sr-only {
	font-size: 0.9rem;
	background-color: #5bc0de;
}

/* product name */
.product-detail-name {
	font-size: 2.2rem;
}

.more-info-product .title-info-product {
    font-size: 1rem;
    font-weight: 700;
}

.products-section-title, .block-category.card h1, #search_filters>.h6, .sidebar .block .title_block {
    font-size: 1rem;
    font-weight: 700;
}

#search_filters_suppliers, #search_filters_brands {
	display: none;
}

.block-promo.promo-highlighted {
    text-align: center;
    /*font-weight: 600;*/
}

.card-block.promo-discounts .cart-summary-line {
    background-color: #ade1e6;
    padding: 10px; /* Ensures spacing around the content */
    display: flex;
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Centers items horizontally */
    text-align: center; /* Ensures text is centered */
}

.cart-grid-right .promo-discounts .cart-summary-line .label {
    color: #333333;
    font-weight: 600;
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    background-color: white;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 6px; /* Makes the white box rounded */
    display: inline-block;
    transition: background-color 0.3s ease-in-out; /* Smooth transition */
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code:hover {
    background-color: #68cad3; /* Light gray on hover */
}

.cart-summary-line .value, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, label, .label, b, strong {
    font-weight: 600;
}

.promo-code form {
    display: flex;
    align-items: center; /* Aligns input and button in the center */
}

.promo-input {
    height: 40px; /* Adjust based on actual input height */
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px; /* Rounded only on the left */
}

.block-promo .promo-input + button {
    margin-top: 0;
    text-transform: capitalize;
    vertical-align: top;
    height: 40px;
    padding: 5px 15px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* ets_geolocation */
a.link_to_signin {
    font-size: 14px;
    margin-bottom: 5px;
    background: #000;
    display: inline-block;
    width: 100%;
    border-radius: 3px;
    color: #fff;
    padding: 12px;
    outline: none!important;
    text-decoration: none!important;
}

a.link_to_signin:hover,
.ets_geo_popup_group_button a.yes_ok:hover,
.ets_geo_btn_submit_apply:hover {
    background: #666;
    border-color:  #666;
}

.ets_geo_btn_submit_apply {
    cursor: pointer;
    border: 1px solid #000;
    padding: 11px 20px;
    display: block;
    margin-top: 20px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    background: #000;
    position: relative;
}

.ets_geo_popup_group_button a.yes_ok{
    background-color: #000;
    color: #ffffff;
}

.ets_click_show {
    display: flex;
    align-items: center; /* Ensures both elements are vertically centered */
    gap: 5px; /* Adds spacing between icon and text */
}

.ets_click_show .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensures it aligns with the text */
}
/* ets_geolocation */

/*.form-group .form-control-label.required {
  position: relative;
}

.form-group .form-control-label.required::after {
  content: "*";
  color: red;
  position: absolute;
  margin-left: 5px;
  top: 0;
}

.form-control-comment .required-asterisk {
  display: none;
}*/

.box-top .h-logo {
  padding-top: 20px;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .box-top .h-logo {
    max-width: 250px !important;
    height: auto !important;
    margin: 0 auto !important; /* Ensures centering */
    display: block !important; /* Makes sure margin auto works */
    padding: 0 !important;
  }
}

.category-products, .product-accessories, .viewed-products {
  padding-top: 0;
}

/*
 * Header .box-top — kompaktnejší riadok ikon (téma: height/line-height 80px v appagebuilder styles.css).
 * Úprava výšky: zmeň jednu hodnotu --plio-header-icon-h nižšie.
 */
.box-top {
  --plio-header-icon-h: 52px;
  /* výška .navbar-toggler z theme.css (40px) — pri zmene výšky tlačidla uprav aj toto */
  --plio-navbar-toggler-h: 40px;
  /* veľkosť ikon v col-info (themify / material) */
  --plio-header-icon-font: 20px;
}

.box-top .col-info .popup-over a.popup-title,
.box-top .col-info .wislish-button .ap-btn-wishlist,
.box-top .col-info .wishlist-button .ap-btn-wishlist,
.box-top .col-info #_desktop_cart .header {
  height: var(--plio-header-icon-h) !important;
  line-height: var(--plio-header-icon-h) !important;
}

.box-top #leo_search_block_top .title_block {
  height: var(--plio-header-icon-h) !important;
}

.box-top #leo_search_block_top .title_block:before {
  line-height: var(--plio-header-icon-h) !important;
}

.box-top .col-info .wislish-button .ap-btn-wishlist .ap-total,
.box-top .col-info .wishlist-button .ap-btn-wishlist .ap-total,
.box-top .col-info #_desktop_cart .header .cart-products-count {
  top: calc(var(--plio-header-icon-h) * 0.56) !important;
}

.box-top .col-info .ApQuicklogin > a {
  height: var(--plio-header-icon-h) !important;
  line-height: var(--plio-header-icon-h) !important;
}

.box-top .col-info {
  padding-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap;
}

/* Rovnaká vertikálna „bunka“ pre moduly v pravom stĺpci */
.box-top .col-info > a.ets_click_show {
  display: inline-flex !important;
  align-items: center !important;
  align-self: center !important;
  min-height: var(--plio-header-icon-h) !important;
  box-sizing: border-box;
  gap: 6px;
  padding: 0 12px 0 0;
  line-height: 1.2;
}

.box-top .col-info > a.ets_click_show .icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: var(--plio-header-icon-font, 20px) !important;
  line-height: 1 !important;
}

.box-top .col-info > .language-selector-wrapper,
.box-top .col-info > #leo_search_block_top,
.box-top .col-info > .userinfo-selector,
.box-top .col-info > .ApQuicklogin,
.box-top .col-info > .wislish-button,
.box-top .col-info > .wishlist-button,
.box-top .col-info > #_desktop_cart {
  display: flex !important;
  align-items: center !important;
}

/* Jednotná veľkosť ikon v hornom riadku (themify / Material) */
.box-top .col-info > .language-selector-wrapper > a.popup-title > i:not(.fa),
.box-top .col-info > .userinfo-selector > a.popup-title > i:not(.fa) {
  font-size: var(--plio-header-icon-font, 20px) !important;
  line-height: 1 !important;
  width: 1.25em !important;
  height: 1.25em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

.box-top .col-info > .wislish-button .ap-btn-wishlist > i,
.box-top .col-info > .wishlist-button .ap-btn-wishlist > i,
.box-top .col-info > #_desktop_cart .header i.ti-shopping-cart,
.box-top .col-info > #_desktop_cart .header i.material-icons {
  font-size: var(--plio-header-icon-font, 20px) !important;
  line-height: 1 !important;
  width: 1.25em !important;
  height: 1.25em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

.box-top #leo_search_block_top .title_block:before {
  font-size: var(--plio-header-icon-font, 20px) !important;
}

.box-top .col-menu {
  padding-top: 0 !important;
}

/* Hamburger: vertikálny margin (20+20=40px v téme) zarovnaný na výšku ikonového radu */
.box-top .navbar-header .navbar-toggler {
  margin: max(0px, calc((var(--plio-header-icon-h) - var(--plio-navbar-toggler-h)) / 2)) auto !important;
}

/* Color swatches: PDP vs listing — rôzne rozmery, spoločne bez tieňov a kruh (50%) */
.product-variants > .product-variants-item .color,
.product-variants > .product-variants-item .input-color {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

.thumbnail-container .product-variants-item .color,
.thumbnail-container .product-variants-item .input-color,
.addToCartFormWrapper .product-variants-item .color,
.addToCartFormWrapper .product-variants-item .input-color {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

.product-variants > .product-variants-item .color,
.thumbnail-container .product-variants-item .color,
.addToCartFormWrapper .product-variants-item .color {
  box-sizing: border-box;
  overflow: visible;
}

.product-variants > .product-variants-item ul li.input-container,
.product-variants > .product-variants-item ul li.input-container label,
.thumbnail-container .product-variants-item ul li.input-container,
.thumbnail-container .product-variants-item ul li.input-container label,
.addToCartFormWrapper .product-variants-item ul li.input-container,
.addToCartFormWrapper .product-variants-item ul li.input-container label {
  overflow: visible;
}

.product-variants > .product-variants-item .input-color:checked + span,
.product-variants > .product-variants-item .input-color:hover + span,
.thumbnail-container .product-variants-item .input-color:checked + span,
.thumbnail-container .product-variants-item .input-color:hover + span,
.addToCartFormWrapper .product-variants-item .input-color:checked + span,
.addToCartFormWrapper .product-variants-item .input-color:hover + span,
.addToCartFormWrapper .input-color:checked + span,
.addToCartFormWrapper .input-color:hover + span {
  border: 2px solid #414141 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

/* Listing only: tick pseudo-element (PDP má to z appagebuilder .product-variants > …) */
.thumbnail-container .product-variants-item .color:before,
.addToCartFormWrapper .product-variants-item .color:before {
  content: "\f00c" !important;
  font-family: "FontAwesome" !important;
  position: absolute !important;
  color: #fff !important;
  font-size: 12px !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  z-index: 2 !important;
}

.thumbnail-container .product-variants-item .color[style*="#fffff"]:before,
.addToCartFormWrapper .product-variants-item .color[style*="#fffff"]:before {
  color: inherit !important;
}

.product-variants > .product-variants-item .color:before,
.thumbnail-container .product-variants-item .color:before,
.addToCartFormWrapper .product-variants-item .color:before {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  line-height: 1 !important;
  text-align: center !important;
}

.product-variants > .product-variants-item .input-color:checked + span:before,
.thumbnail-container .product-variants-item .input-color:checked + span:before,
.addToCartFormWrapper .product-variants-item .input-color:checked + span:before,
.addToCartFormWrapper .input-color:checked + span:before {
  text-shadow: none !important;
  filter: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-center {
  font-size: 0.9rem;
}