/*
Theme Name: Blondy
Template: shoptimizer
Version: 0.12.6
*/

.site-branding {
    line-height: 1;
	margin-bottom: 4px;
}

.site-branding a {
    color: #111;
    font-weight: 400;
    font-size: 1.875rem;
}

.products .onsale,
.products .product-label,
.products .wc-block-grid__product-onsale {
    background-color: #fff !important;
    border: none !important;
    color: #000 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    min-height: unset !important;
    min-width: unset !important;
}

@media (max-width: 992px) {
    .custom-logo-link {
        align-self: flex-start;
        padding-left: 0;
    }

    body:not(.mobile-toggled).sticky-m .site-header {
        box-shadow: none;
    }

    .cross-sells ul.products li.product .woocommerce-card__header,
    .mobile-scroll ul.products li.product .woocommerce-card__header,
    .related.products ul.products li.product .woocommerce-card__header,
    .upsells.products ul.products li.product .woocommerce-card__header {
        box-shadow: none;
    }
    
    body.single-product:has(:not(.woocommerce-breadcrumb)) .site-main, body:has(:not(.woocommerce-breadcrumb)) .site-content {
	    padding-top: 0;
    }
}

@media (min-width: 993px) {
    
    .header-4 .header-4-container {
        border-bottom: none;
        box-shadow: none;
    }

    .header-4-container:hover {
        transition: background 0.2s ease-in-out;
    }

    .header-4-container:hover {
        background: rgba(255, 255, 255, 0.85);
    }
}

@media (min-width: 1170px){
    .blondy-hamburger {
        margin-left: -12px;
    }
}

ul.products li.product:focus-within::before,
ul.products li.product:hover::before {
    display: none;
}

.woocommerce-pagination {
    display: none;
}

/* Override product card scale effects - remove blur on hover */
/* Remove scale from images */
ul.products li.product img {
    transform: none !important;
}

li.product:not(.product-category):hover img {
    transform: none !important;
}

/* Remove scale from image wrapper */
li.product .woocommerce-image__wrapper {
    transform: none !important;
}

li.product:hover .woocommerce-image__wrapper {
    transform: none !important;
}

li.product:not(.product-category):hover .woocommerce-image__wrapper img {
    transform: none !important;
}

.shoptimizer-category-banner h1:only-child {
    font-weight: 300;
    text-align: center;
}

/* hamburger-menu */
/* Hamburger Button */
.blondy-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

/* Mobile: position hamburger absolutely to left */
@media (max-width: 992px) {
    .blondy-hamburger {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Keep logo centered on mobile */
    .site-branding {
        justify-content: center;
        padding-left: 60px;
        padding-right: 60px;
        text-align: center;
    }
}

/* Desktop: inline layout */
@media (min-width: 993px) {
    .blondy-hamburger {
        position: relative;
        margin-right: 15px;
    }
}

.blondy-hamburger:hover {
    opacity: 0.7;
}

.blondy-hamburger:focus-visible {
    outline: 2px solid #333;
    outline-offset: 2px;
}

.blondy-hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.blondy-hamburger-inner,
.blondy-hamburger-inner::before,
.blondy-hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #333;
    border-radius: 0;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.blondy-hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.blondy-hamburger-inner::before,
.blondy-hamburger-inner::after {
    content: "" !important;
    display: block;
}

.blondy-hamburger-inner::before {
    top: -8px;
}

.blondy-hamburger-inner::after {
    bottom: -8px;
}

/* Hamburger animation when active */
.blondy-hamburger.is-active .blondy-hamburger-inner {
    transform: rotate(45deg);
}

.blondy-hamburger.is-active .blondy-hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.blondy-hamburger.is-active .blondy-hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Drawer */
.blondy-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.blondy-drawer.is-open {
    pointer-events: auto;
}

/* Overlay */
.blondy-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blondy-drawer.is-open .blondy-drawer-overlay {
    opacity: 1;
}

/* Drawer Content */
.blondy-drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: #fff !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.blondy-drawer.is-open .blondy-drawer-content {
    transform: translateX(0);
}

/* Close Button */
.blondy-drawer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: opacity 0.3s ease;
    padding: 0;
}

.blondy-drawer-close:hover {
    opacity: 0.7;
}

.blondy-drawer-close:focus-visible {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* Drawer Navigation */
.blondy-drawer-nav {
    margin-top: 60px;
}

.blondy-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

/* Top nav items (first 6) - 2 column grid with separators */
.blondy-drawer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blondy-drawer-menu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.blondy-drawer-menu li:nth-child(-n+5) {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    height: 18px;
    line-height: 18px;
}

.blondy-drawer-menu li:nth-child(-n+5) a {
    display: inline-block;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Pipe separator after each of the first 6 items */
.blondy-drawer-menu li:nth-child(-n+5) a .icon-wrapper {
    display: none;
}

.blondy-drawer-menu li:nth-child(-n+5)::after {
    content: "|" ;
    color: #ccc;
    font-weight: 300;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Last item in each row (even) - no trailing pipe for 6th */
.blondy-drawer-menu li:nth-child(5)::after {
    display: none;
}

/* Separator between nav grid and categories */
.blondy-drawer-menu li:nth-child(6) {
    margin-top: 50px;
    padding-top: 4px;
}

/* Category items (7+) - centered vertical list */
.blondy-drawer-menu li:nth-child(n+6) {
    width: 100%;
    text-align: center;
    border-bottom: none;
}

.blondy-drawer-menu li:nth-child(n+6) a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
}

.blondy-drawer-menu li:nth-child(n+6) a:hover {
    color: #000;
}

/* Snižene cene - last item in red */
.blondy-drawer-menu li:last-child a {
    color: #c0392b;
}

.blondy-drawer-menu li:last-child a:hover {
    color: #e74c3c;
}

.blondy-drawer-menu a {
    display: block;
    padding: 16px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blondy-drawer-menu a:hover {
    color: #000;
}

.blondy-drawer-menu .current-menu-item>a,
.blondy-drawer-menu .current_page_item>a {
    color: #000;
}

/* Submenu styling */
.blondy-drawer-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 20px;
}

.blondy-drawer-menu .sub-menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0;
}

/* Phone support at bottom of drawer */
.blondy-drawer-support {
    text-align: center;
    margin-top: 0;
    padding-top: 20px;
}

.blondy-drawer-support .support-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.blondy-drawer-support .support-label {
    font-size: 12px;
    color: #666;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.blondy-drawer-support .support-phone {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

/* Prevent body scroll when drawer is open */
body.blondy-drawer-open {
    overflow: hidden;
}

/* end hamburger-menu*/

/* Payment Disclaimer Footer */
.blondy-payment-disclaimer {
    clear: both;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -2rem;
}

.blondy-payment-disclaimer .col-full {
    display: flex;
    padding-right: calc(2.617924em - 20px);
    padding-left: calc(2.617924em - 20px);
    justify-content: center;
}

.blondy-payment-disclaimer .widget {
    position: relative;
    margin: 0;
    padding: 0 20px;
    text-align: center;
}

.blondy-payment-disclaimer .widget p {
    margin: 0;
    font-size: clamp(0.8125rem, 0.749rem + 0.2033vw, 0.875rem);
    /* 13-14px */
    line-height: 1.6;
    color: #999;
}

@media (max-width: 992px) {
    .blondy-payment-disclaimer .col-full {
        display: block;
        padding-right: 1em;
        padding-left: 1em;
    }

    .blondy-payment-disclaimer .widget {
        padding: 0;
        text-align: left;
    }

    .blondy-payment-disclaimer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .blondy-payment-disclaimer .widget p {
        font-size: clamp(0.75rem, 0.6865rem + 0.2033vw, 0.8125rem);
        /* 12-13px */
    }
}

/* end payment disclaimer */


/* FiboFilter */

.fibofilters-show-more-count {
    font-size:14px;
}

.fibofilters-filter-button {
    font-size:14px;
    font-weight: 400;
    border-radius: 3px;
}

.fibofilters-filter-button:focus {
	outline-style: auto;
}

.fibofilters-filter-button:hover {
	background-color: #000;
	color: #fff !important;
	box-shadow:  none;
	text-shadow: none;
}
.fibofilters-filter-button:hover svg path {
	stroke: #fff !important;
}
.fibofilters-filter-button:hover svg circle {
	fill: #fff !important;
}

.fibofilters-filter-button:before {
    display: none;
}

.fibofilters-button.button {
    background: #fff;
    color: #000;
    border:1px solid #000;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}

.fibofilters-applied-filters .fibofilters-applied-filter {
    font-size:14px;
    border-radius: 3px;
}

/* end FiboFilter */

/* Primary menu uppercase */
#menu-primary li a {
    text-transform: uppercase;
}


/* Single product price spacing */
.summary .price {
    margin-top: 10px;
}



/* Hide Shoptimizer footer globally - using Elementor footer */
.site-footer,
footer.copyright {
    display: none !important;
}

/* Homepage full-width layout */
body.home .site-content {
    padding-top: 0 !important;
}

body.home .shoptimizer-archive,
body.home .shoptimizer-archive > .col-full,
body.home .content-area,
body.home .site-main {
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Floating transparent header on homepage */
body.home .header-4-container {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Collapse header placeholder so content starts from top */
body.home .elementor-location-header {
    height: 0 !important;
    overflow: visible !important;
}

body.home .site-content {
    padding-top: 0 !important;
}

/* Show header bg on hover */
body.home .header-4-container:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Admin bar offset */
.admin-bar body.home .header-4-container {
    top: 32px;
}


/* Footer on homepage: padding-top so header doesn't overlap */
body.home .premium-vscroll-temp:last-child {
    padding-top: 100px;
}


/* Round product badges (ckit) */
.ckit-badge_wrapper .ckit-badge {
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    min-height: unset !important;
    min-width: unset !important;
    width: auto !important;
    height: auto !important;
}

/* PhotoSwipe lightbox background */
.pswp__bg {
    background-color: rgba(237, 234, 230, 0.97) !important;
}

/* WooCommerce notice/info banners */
.woocommerce-info,
.woocommerce-message,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-success {
    background-color: #fff !important;
    color: #555 !important;
    border: none !important;
    border-left: none !important;
}
.woocommerce-info::before,
.woocommerce-message::before {
    color: #555 !important;
}

/* Mobile product card slider pagination - dots to dashes */
.products .swiper-pagination-bullet,
.shoptimizer-plp-carousel--dot,
.products .flickity-page-dot {
    border: none !important;
    width: 20px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background-color: #ccc !important;
    opacity: 1 !important;
}
.products .swiper-pagination-bullet-active,
.shoptimizer-plp-carousel--dot.active,
.products .flickity-page-dot.is-selected {
    background-color: #fff !important;
}
.shoptimizer-plp-carousel--dot {
    border: none !important;
}

/* Fix footer icon-list SVG sizing when widget-icon-list CSS is not loaded */
.elementor-widget .elementor-icon-list-icon svg {
    height: var(--e-icon-list-icon-size, 1em);
    width: var(--e-icon-list-icon-size, 1em);
}

/* Hide default list bullets in footer icon-list widget */
.elementor-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Free shipping progress bar - gray to match site design */
.cgkit-fsn-amount {
    background: #999 !important;
}
.cgkit-fsn-notice .amount {
    color: #555 !important;
}
.ckit-fsn-bar-active .cgkit-fsn-title:before {
    background: #999 !important;
}

/* Sale badge pored cene - gray */
.summary .onsale {
    background-color: #999 !important;
    color: #fff !important;
}

/* Hide sale percentage above product title */
.summary > .onsale:first-child,
.summary > span.onsale:first-child {
    display: none !important;
}



/* Stock status text - gray */
.stock.in-stock {
    color: #999 !important;
}

/* Sale bubble - match Novo badge style */
.sale-item.product-label.type-bubble {
    background-color: #fff !important;
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 10px !important;
    padding: 10px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 30px !important;
    white-space: nowrap !important;
}


/* Gallery & Lightbox arrows - thin chevron < >, gray, transparent bg */

/* FlexSlider gallery arrows */
a.flex-next:after,
a.flex-prev:before {
    background: #999 !important;
    background-color: #999 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    opacity: 0 !important;
    transition: all 0.2s ease !important;
    mask-size: contain !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    -webkit-mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
}
a.flex-prev:before {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19L8 12L15 5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19L8 12L15 5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
a.flex-next:after {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.woocommerce-product-gallery:hover a.flex-prev:before,
.woocommerce-product-gallery:hover a.flex-next:after {
    opacity: 1 !important;
}

/* PhotoSwipe lightbox arrows */
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background-color: transparent !important;
    background-image: none !important;
    width: 44px !important;
    height: 44px !important;
    mask-size: contain !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    -webkit-mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    background: #999 !important;
}
.pswp__button--arrow--left:before {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19L8 12L15 5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19L8 12L15 5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.pswp__button--arrow--right:before {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none !important;
}

/* PhotoSwipe arrow buttons - fully transparent background */
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none !important;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background-image: none !important;
    background-color: #999 !important;
}

/* PhotoSwipe arrows visible on touch/mobile */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: visible !important;
}

/* Swiper gallery arrows - thin chevron, transparent bg */
.swiper-button-prev,
.swiper-button-next {
    color: #999 !important;
    --swiper-navigation-size: 28px !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: inherit !important;
    font-size: 28px !important;
    font-weight: 200 !important;
    color: #999 !important;
}
.swiper-button-prev:after {
    content: "\2039" !important;
}
.swiper-button-next:after {
    content: "\203A" !important;
}

/* Force swiper arrows visible on mobile gallery */
.ckit-mobile-pdp-gallery-active .swiper-button-next,
.ckit-mobile-pdp-gallery-active .swiper-button-prev {
    display: flex !important;
}
#commercegurus-pdp-gallery .swiper-button-next,
#commercegurus-pdp-gallery .swiper-button-prev {
    background: transparent !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 0 !important;
}
#commercegurus-pdp-gallery .swiper-button-next:after,
#commercegurus-pdp-gallery .swiper-button-prev:after {
    background: #999 !important;
    width: 28px !important;
    height: 28px !important;
}
#commercegurus-pdp-gallery .swiper-button-next:hover,
#commercegurus-pdp-gallery .swiper-button-prev:hover {
    background: transparent !important;
}

/* Reduce spacing between product rows */
ul.products li.product {
    margin-bottom: 0 !important;
}

/* Hide category label above product title on shop pages */
p.product__categories {
    display: none !important;
}

/* Filter button spacing */.blondy-filter-btn {    margin: 30px 0 !important;    padding: 10px 0 !important;}
/* Reduce space between sorting row and products on mobile */
@media(max-width:992px) {
    .woocommerce-sorting-wrapper, .shoptimizer-sorting {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .blondy-filter-btn {
        margin: 10px 0 !important;
        padding: 8px 0 !important;
    }
    ul.products {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* ===== PROBA PAGE - Scroll Snap Homepage ===== */

/* Scroll snap on html - proximity allows free scroll to footer */
html:has(body.page-id-146884) {
    scroll-snap-type: y proximity;
    scroll-padding-top: 106px;
}

/* Each section is a snap point */
body.page-id-146884 .elementor-146884 .elementor-top-section {
    scroll-snap-align: start;
    min-height: calc(100vh - 106px) !important;
}

/* Container fills section height */
body.page-id-146884 .elementor-146884 .elementor-top-section > .elementor-container {
    min-height: calc(100vh - 106px) !important;
}

/* Column stretches */
body.page-id-146884 .elementor-146884 .elementor-top-section .elementor-widget-wrap {
    min-height: 100%;
}

/* Hide nav bar below header */
body.page-id-146884 .col-full-nav {
    display: none !important;
}

/* Hide page title and breadcrumbs */
body.page-id-146884 .page-title,
body.page-id-146884 .entry-title,
body.page-id-146884 .woocommerce-breadcrumb,
body.page-id-146884 .breadcrumb-row,
body.page-id-146884 .shoptimizer-archive > .page-title-wrapper {
    display: none !important;
}

/* Footer - no snap, normal scroll */

body.page-id-146884 #content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Sections full viewport width */
body.page-id-146884 .elementor-146884 .elementor-top-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}

/* Thinner heading font */
body.page-id-146884 .elementor-146884 .elementor-heading-title {
    font-weight: 300 !important;
    font-size: 16px !important;
}

/* ===== END PROBA PAGE ===== */
/* Global thin headings */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.entry-title,
.page-title,
.woocommerce-loop-product__title {
    font-weight: 100 !important;
}

/* Hide quick add on related products */
.related.products .blondy-qa {
    display: none !important;
}

/* Red link for snizene cene in popup menu */
.elementor-73201 .red-link a,
.elementor-73201 .red-link > a,
.elementor-73201 li.red-link .elementor-item {
    color: red !important;
}

/* Popup menu pipe separators - match font color */
.elementor-73201 .elementor-icon-list-item:not(:last-child):after {
    border-color: #54595F !important;
}

/* Popup nav-menu pipe separators - match font color */
.elementor-73201 .elementor-nav-menu--main .elementor-item:before {
    border-color: #54595F !important;
}
.elementor-73201 .elementor-nav-menu--layout-horizontal .elementor-nav-menu > li:not(:last-child):after {
    border-color: #54595F !important;
    color: #54595F !important;
}
.elementor-73201 .elementor-element-2504882c {
    --e-nav-menu-divider-color: #54595F !important;
}

/* Mobile popup menu - scrollable + phone section visible */
@media (max-width: 767px) {
    .elementor-popup-modal .dialog-message {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .elementor-73201 .elementor-element-e1618cc {
        margin-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

/* Hide scrollbar in desktop popup menu */
.elementor-popup-modal .dialog-message {
    overflow-y: auto !important;
    scrollbar-width: none;
}
.elementor-popup-modal .dialog-message::-webkit-scrollbar {
    display: none;
}
/* Phone section in popup menu - ensure padding on desktop */
.elementor-73201 .elementor-element-e1618cc {
    padding-bottom: 15px !important;
}
