/*@media (min-width: 1280px) {*/
/*    .container {*/
/*        max-width: 1180px;*/
/*    }*/
/*}*/

@media (min-width: 992px) {
    .px-4 {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* General styling for button container */
.button-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.25rem;
    width: 50%;
}

/* Button styling */
.button {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000;
}

.button-container-right {
    align-items: end;
}

.menu-slider .slick-active a {
    text-decoration: none;
}

/* Растојание помеѓу ставки во category menu: само на мобилни намалено, на desktop оригинално */
@media (max-width: 767px) {
    .menu-slider .slick-slide {
        margin-right: 12px;
    }

    .menu-slider .slick-slide:last-child {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .menu-slider .slick-slide {
        margin-right: 1.75rem;
        /* 28px, оригинално растојание на desktop */
    }

    .menu-slider .slick-slide:last-child {
        margin-right: 0;
    }
}

/* Blog – контејнер за слики на статии: фиксен однос 4:3, сликата cover + center */
.blog-card-image-wrap {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
}

.blog-card-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
    border-radius: 10px;
}

/* Категории-мени над листата производи (desktop; на мобилна z-index се крева во блокот подолу) */
.category-menu-wrap {
    position: relative;
    z-index: 10;
}

/* Inspiration: секој ред мени на посебна линија (desktop + mobile) */
.category-menu-wrap .menu-slider.slick-slider {
    display: block;
    width: 100%;
    clear: both;
    margin-bottom: 12px;
}

.category-menu-wrap .menu-slider.slick-slider:last-child {
    margin-bottom: 0;
}

.category-menu-wrap .category-menu--legacy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Мобилна: категории (menu-slider) – поголеми ставки (само до 767px, desktop не се менува) */
@media (max-width: 767px) {

    /*
     * Full-bleed: .container има px-8, па слајдерот беше „внатре“ и последното копче изгледаше исечено на десниот раб.
     * Проширување по ширина на екранот + лев padding како насловот; десно до раб (со safe-area на iPhone).
     */
    .category-menu-wrap {
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 2rem;
        padding-right: max(0px, env(safe-area-inset-right, 0px));
        /* да не се исечат долните редови (втор/трет menu-slider) */
        overflow: visible;
        position: relative;
        z-index: 30;
    }

    .category-menu-wrap .menu-slider.slick-slider:not(:last-of-type) {
        margin-bottom: 14px !important;
    }

    .menu-slider .slick-slide a,
    .menu-slider li a {
        line-height: 1.35;
        padding: 7px 8px !important;
        min-height: 32px;
        box-sizing: border-box;
        display: inline-flex !important;
        align-items: center;
        white-space: nowrap;
        text-decoration: none !important;
        border: none !important;
        border-radius: 6px;
        background: transparent;
    }

    /* Хиерархија: главни категории (ред 1/2) визуелно појасни */
    .menu-slider-primary .slick-slide a,
    .menu-slider-primary li a,
    .menu-slider-secondary .slick-slide a,
    .menu-slider-secondary li a {
        font-size: 16px !important;
        font-weight: 600;
    }

    /* Подкатегории (ред 3/4): помал фонт + понежна нијанса */
    .menu-slider-tertiary .slick-slide a,
    .menu-slider-tertiary li a {
        font-size: 14px !important;
        font-weight: 500;
        color: #6b7280;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        min-height: 30px;
    }

    /*
     * Активна ставка: суптилно истакнување во бојата на категоријата.
     * currentColor доаѓа од inline color (categoryMenuColor) на активните линкови.
     */
    .menu-slider .slick-slide a[style*="underline"],
    .menu-slider li a[style*="underline"] {
        font-weight: 700;
        text-decoration: none !important;
        background: color-mix(in srgb, currentColor 14%, #ffffff);
    }

    /* Scroll-triggered animation: секции/елементи влегуваат во viewport на мобилна */
    .mobile-scroll-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    .mobile-scroll-reveal.mobile-in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Стаггер за деца (на пр. листа од категории) – до 9 деца */
    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(1) {
        transition-delay: 0.05s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(2) {
        transition-delay: 0.1s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(3) {
        transition-delay: 0.15s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(4) {
        transition-delay: 0.2s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(5) {
        transition-delay: 0.25s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(6) {
        transition-delay: 0.3s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(7) {
        transition-delay: 0.35s;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(8) {
        transition-delay: 0.4s;
    }

    .mobile-scroll-reveal .mobile-reveal-stagger>* {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>* {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-scroll-reveal.mobile-in-view .mobile-reveal-stagger>*:nth-child(9) {
        transition-delay: 0.45s;
    }
}

.button svg path {
    fill: #fff;
}

.fixed {
    position: fixed;
}

/* Medium screens: flex wrap and width 33% */
@media (min-width: 768px) {
    .button-container {
        flex-direction: row;
        flex-wrap: wrap;
        width: 33.33%;
    }
}

/* Large screens: width 25% */
@media (min-width: 1024px) {
    .button-container {
        width: 25%;
    }
}

/* Extra large screens: width 20% */
@media (min-width: 1280px) {
    .button-container {
        width: 20%;
    }
}

.fa-angle-left:before {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: auto;
    /* Enable pointer events */
    display: block;
}

.add-to-cart {
    width: 70%;
}

.slider-div {
    min-height: 392px !important;
}

/* Херо слика: целосна ширина во колоната; без border-radius. */
.hero-slider .home-hero-image-wrap {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.hero-slider .home-hero-image-wrap img {
    border-radius: 0;
}

@media (max-width: 640px) {
    .slider-div {
        min-height: 392px !important;
    }

    .add-to-cart {
        width: 100%;
    }

    .side-div {
        margin-bottom: 170px;
    }
}


@media (max-width: 768px) {
    .slick-dots li {
        display: none;
    }

    .slick-dots li:nth-child(-n+5) {
        display: inline-block;
        /* Show only first 5 dots */
    }

    /* slider-one (mobile category blocks): show every dot */
    .slider-one .slick-dots li {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /*
     * Slick изедначува висина на сите .slick-slide кон највисокиот; без stretch, обоениот блок
     * останува колку содржината → сива лента или боја под точките.
     */
    .slider-one .slick-slide {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        margin: 0 !important;
        padding: 0 !important;
    }

    .slider-one .slick-slide>.category-block-mobile-slide {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 0;
        box-sizing: border-box;
    }

    /* Висина по содржина (Slick adaptiveHeight); простор за точки долу. Без padding-top — сликата full-bleed и до горниот раб. */
    .slider-one .category-block-mobile-slide {
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        /* ~gap-8 (2rem) визуелно до точките + мал застој; без огромен flex-1 јаз */
        padding-bottom: 3.75rem !important;
    }

    /* Слајдови само со икона (без слика): мал воздух горе */
    .slider-one .category-block-mobile-slide--no-image {
        padding-top: 2rem !important;
    }

    .slider-one .category-block-mobile-inset {
        box-sizing: border-box;
        padding-left: clamp(1.25rem, 5.5vw, 2.5rem);
        padding-right: clamp(1.25rem, 5.5vw, 2.5rem);
    }

    .slider-one .category-block-mobile-image-wrap {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        border-radius: 0;
        flex-shrink: 0;
    }

    .slider-one .category-block-mobile-image-wrap img {
        display: block;
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 0;
    }

    /*
     * Track/list: не transparent (се гледаше „бела“ main позадина); боја како body.
     */
    .slider-one .slick-list,
    .slider-one .slick-track {
        background-color: rgb(247 247 247);
    }

    .slider-one .slick-list {
        min-height: 0;
    }

    .slider-one.slick-slider,
    .slider-one .slick-slide {
        background-color: transparent;
    }

    /*
     * Dots: sibling на .slick-list — долу во обоениот блок (без голем празен појас под нив).
     * output.css: position relative + margin-top — овде absolute.
     */

    .slider-one.slick-slider {
        position: relative;
    }

    .slider-one .slick-dots {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 1.5rem !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0.25rem;
        z-index: 15;
    }
}

.discount {
    padding: 10px;
    margin: 12px;
}

.custom-button {
    width: 186px;
}

/* Кругче + кошница на листи производи: не ја наследувај ширината 186px од .custom-button */
a.add-to-cart.cart-btn.custom-button {
    width: 2.25rem !important;
    height: 2.25rem !important;
    min-width: 2.25rem !important;
    max-width: none !important;
    padding: 0 !important;
    box-sizing: border-box;
    flex-shrink: 0;
}

a.add-to-cart.cart-btn.custom-button i {
    font-size: 0.75rem;
    line-height: 1;
}

/* Best-selling product titles: use full space to the price, no fixed 186px */
.home-best-selling-section h3 a.custom-button {
    width: auto;
    max-width: 100%;
}

/* Color icon buttons - override custom-button for small icons */
ul.flex.flex-wrap.pt-2\.5.border-t.border-black li img,
ul.flex.flex-wrap.gap-1.pt-2\.5.border-t.border-black li img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

/* Brand Slider - Visual Normalization and Standardization */
.swiper.brandSlider {
    min-height: 120px !important;
    padding: 20px 0 !important;
}

.swiper.brandSlider .swiper-wrapper {
    align-items: center !important;
    min-height: 120px !important;
}

.swiper.brandSlider .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 120px !important;
    padding: 15px 20px !important;
    box-sizing: border-box !important;
}

.swiper.brandSlider .swiper-slide img {
    max-width: 100% !important;
    max-height: 90px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: grayscale(0%) !important;
    transition: all 0.3s ease !important;
    opacity: 0.8 !important;
}

.swiper.brandSlider .swiper-slide:hover img {
    opacity: 1 !important;
    transform: scale(1.05) !important;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .swiper.brandSlider {
        min-height: 100px !important;
    }

    .swiper.brandSlider .swiper-wrapper {
        min-height: 100px !important;
    }

    .swiper.brandSlider .swiper-slide {
        height: 100px !important;
        padding: 10px 15px !important;
    }

    .swiper.brandSlider .swiper-slide img {
        max-height: 70px !important;
    }
}

@media (min-width: 1024px) {
    .swiper.brandSlider {
        min-height: 140px !important;
    }

    .swiper.brandSlider .swiper-wrapper {
        min-height: 140px !important;
    }

    .swiper.brandSlider .swiper-slide {
        height: 140px !important;
        padding: 20px 25px !important;
    }

    .swiper.brandSlider .swiper-slide img {
        max-height: 100px !important;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 40px;
    }
}

/* Back Button Styling */
.back-button,
.back-btn.back-button {
    font-size: 16px !important;
    line-height: 1.5 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
}

.back-button:hover,
.back-btn.back-button:hover {
    opacity: 0.8 !important;
    transform: translateX(-2px) !important;
}

/* Ensure back button text doesn't affect circle positioning */
.back-button>span:nth-child(2),
.back-btn.back-button>span:nth-child(2) {
    margin-left: 0 !important;
    display: block !important;
}

/* Back button arrow in circle with brand color - border only */
/* Perfect centering like header button - independent from text */
.back-button span:first-child.styled-circle,
.back-btn.back-button span:first-child.styled-circle,
.back-button>span:first-of-type.styled-circle,
.back-btn.back-button>span:first-of-type.styled-circle,
.back-button span:first-of-type.styled-circle,
.back-btn.back-button span:first-of-type.styled-circle {
    font-weight: 400 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    border: 1px solid #e7a724 !important;
    color: #e7a724 !important;
    margin-right: 8px !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    position: relative !important;
    /* Ensure perfect centering - no text interference */
    vertical-align: middle !important;
}

/* Ensure SVG inside is perfectly centered */
.back-button span:first-child.styled-circle svg,
.back-btn.back-button span:first-child.styled-circle svg {
    display: block !important;
    margin: auto !important;
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}

.back-button:hover span:first-child.styled-circle,
.back-btn.back-button:hover span:first-child.styled-circle,
.back-button:hover>span:first-of-type.styled-circle,
.back-btn.back-button:hover>span:first-of-type.styled-circle,
.back-button:hover span:first-of-type.styled-circle,
.back-btn.back-button:hover span:first-of-type.styled-circle {
    border-color: #d6971f !important;
    color: #d6971f !important;
    transform: scale(1.05) !important;
}

/* Override old back-btn styles */
.back-btn.back-button {
    font-size: 16px !important;
    color: inherit !important;
}

.home-best-selling-title,
.home-inspiration {
    font-weight: normal;
}

@media (min-width: 640px) {

    .home-best-selling-title,
    .home-inspiration {
        font-weight: bold;
    }
}

.oxy-modu {
    padding-top: 130px;
    padding-bottom: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
    background-image: url('../images/oxy-mobile.png');
}

@media (min-width: 768px) {
    .oxy-modu {
        padding-top: 140px;
        padding-bottom: 140px;
        background-position: center;
        background-image: url('../images/oxy.jpg');
    }
}

/* CTA од админ (#oxy-modu-cta) – позадина се задава во index.blade.php по breakpoint */
.oxy-modu.oxy-modu--custom-bg {
    background-image: none;
}

/* Hide color selection for shoes - additional CSS fallback */
/* This will hide color icons if the product has sizes with subtitles (cm ranges) */
ul.flex.flex-wrap.gap-2.pb-7 li:has(+ ul li span.text-xs),
ul.flex.flex-wrap.gap-2.pb-2 li:has(+ ul li span.text-xs),
ul.flex.flex-wrap.gap-2.my-5 li:has(+ ul li span.text-xs) {
    /* This is a fallback - the main logic is in Blade */
}

/* Size Selection for Shoes - Display like size chart */
ul.flex.flex-wrap.gap-2.pb-7 li,
ul.flex.flex-wrap.gap-2.pb-2 li {
    min-width: 70px !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

/* Selected size - brand color border */
ul.flex.flex-wrap.gap-2.pb-7 li.border,
ul.flex.flex-wrap.gap-2.pb-2 li.border {
    border: 2px solid #e7a724 !important;
    background-color: transparent !important;
}

/* Unselected size - no border */
ul.flex.flex-wrap.gap-2.pb-7 li.border-0,
ul.flex.flex-wrap.gap-2.pb-2 li.border-0 {
    border: 2px solid transparent !important;
    background-color: transparent !important;
}

/* Size number - bold and larger */
ul.flex.flex-wrap.gap-2.pb-7 li span:first-child,
ul.flex.flex-wrap.gap-2.pb-2 li span:first-child {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    line-height: 1.2 !important;
}

/* Size range (subtitle) - smaller and gray */
ul.flex.flex-wrap.gap-2.pb-7 li span.text-xs,
ul.flex.flex-wrap.gap-2.pb-2 li span.text-xs {
    font-size: 11px !important;
    color: #6b7280 !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
}

/* Footer padding-top fix */
footer.pt-\[50px\] {
    padding-top: 50px !important;
}

/* Cart: мобилен scroll за табела */
.cart-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Cart table: product image – фиксна големина, не да се растегнува */
.cart_inner .cart-product-img-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    max-width: 80px;
    max-height: 80px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_inner .cart-product-img-wrap img.cart-product-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

@media (min-width: 640px) {
    .cart_inner .cart-product-img-wrap {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }
}

/* Cart: X за бришење – црвен квадрат, бел X. Мобилно: поголем touch target */
.cart_inner .cart-remove-btn {
    min-width: 24px;
    min-height: 24px;
    width: 24px;
    height: 24px;
    background-color: #ef4444 !important;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cart_inner .cart-remove-btn:hover {
    background-color: #dc2626 !important;
}

.cart_inner .cart-remove-btn .cart-remove-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cart_inner .cart-remove-btn {
        min-width: 36px;
        min-height: 36px;
        width: 36px;
        height: 36px;
    }

    .cart_inner .cart-remove-btn .cart-remove-icon {
        width: 16px;
        height: 16px;
    }
}

.cart_inner .cart-remove-btn,
.cart_inner .cart-qty-btn,
.cart_inner .cart-cta-btn {
    touch-action: manipulation;
}

/* Продолжете со купување – постојана позадина (#1f2937), на hover само раб */
.cart_inner .cart-cta-wrap .cart-cta-btn.cart-cta-continue {
    background-color: #1f2937 !important;
    color: #fff !important;
    border: 1px solid #1f2937 !important;
}

.cart_inner .cart-cta-wrap .cart-cta-btn.cart-cta-continue:hover {
    background-color: transparent !important;
    color: #1f2937 !important;
    border: 1px solid #1f2937 !important;
}

/* Продолжете кон наплата – на hover само раб во бојата на копчето */
.cart_inner .cart-cta-wrap .cart-cta-btn.cart-cta-checkout:hover {
    background-color: transparent !important;
    border: 1px solid #e7a724 !important;
    color: #e7a724 !important;
    opacity: 1 !important;
}

/* Cart count badge – горен десен агол на иконата, бела кружна позадина, црн број */
.cart-count-badge {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 10;
    pointer-events: none;
    background-color: #fff !important;
    color: #111 !important;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 1.25rem;
    height: 1.25rem;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Confirmation page: исти стилови како cart CTA копчиња */
.confirmation-cta-wrap.cart-cta-wrap .cart-cta-btn.cart-cta-continue {
    background-color: #1f2937 !important;
    color: #fff !important;
    border: 1px solid #1f2937 !important;
}

.confirmation-cta-wrap.cart-cta-wrap .cart-cta-btn.cart-cta-continue:hover {
    background-color: transparent !important;
    color: #1f2937 !important;
    border: 1px solid #1f2937 !important;
}

.confirmation-cta-wrap.cart-cta-wrap .cart-cta-btn.cart-cta-checkout:hover {
    background-color: transparent !important;
    border: 1px solid #e7a724 !important;
    color: #e7a724 !important;
    opacity: 1 !important;
}

.confirmation-cta-wrap.cart-cta-wrap .cart-cta-btn {
    touch-action: manipulation;
}

@media (max-width: 639px) {
    .confirmation-cta-wrap.cart-cta-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .confirmation-cta-wrap.cart-cta-wrap .cart-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Мобилно: CTA копчиња во колона, full-width. Десктоп: остануваат во ред, десно. */
@media (max-width: 639px) {
    .cart_inner .cart-cta-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cart_inner .cart-cta-wrap .cart-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* About-us legacy look: mustard bg + contact-bg.png */
.about-section-legacy {
    background-color: #DE9E24;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-section-legacy .about-title {
    color: #ffffff;
    font-size: 90px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Futura Now Headline', sans-serif;
}

.about-section-legacy .about-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Rich text from editor: нумерирани листи, bold, параграфи */
.about-section-legacy .about-text ol,
.about-section-legacy .about-text ul {
    list-style-position: outside;
    padding-left: 1.5em;
    margin: 0.75em 0;
}

.about-section-legacy .about-text ol {
    list-style-type: decimal !important;
}

.about-section-legacy .about-text ul {
    list-style-type: disc !important;
}

.about-section-legacy .about-text li {
    display: list-item;
    margin-bottom: 0.35em;
}

.about-section-legacy .about-text strong,
.about-section-legacy .about-text b {
    font-weight: 700;
}

.about-section-legacy .about-text p {
    margin-bottom: 0.75em;
}

@media (max-width: 768px) {
    .about-section-legacy .about-title {
        font-size: 50px;
    }

    .about-section-legacy .about-text {
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-section-legacy .about-title {
        font-size: 60px;
    }
}

/* ========== FAQ page: layout + card bg lighter than page bg ========== */
.about-section-legacy.faq-page {
    --faq-page-bg: #e7a724;
    --faq-card-bg: #ffffff;
    --faq-card-border: #dfe1e4;
    --faq-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --faq-text: #1a1a1a;
    --faq-text-muted: #5f6368;
    --faq-cta-bg: #d6971f;
    --faq-cta-text: #ffffff;
    --faq-cta-btn-bg: #ffffff;
    --faq-cta-btn-text: #1a1a1a;
    background-color: var(--faq-page-bg);
    background-image: none;
}

.about-section-legacy.faq-page .faq-page-back {
    color: var(--faq-text-muted);
}

.about-section-legacy.faq-page .faq-page-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    font-family: 'Futura Now Headline', sans-serif;
}

.about-section-legacy.faq-page .faq-page-subtitle {
    color: var(--faq-text);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.faq-card {
    background-color: var(--faq-card-bg);
    border: 1px solid var(--faq-card-border);
    border-radius: 1rem;
    box-shadow: var(--faq-card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.faq-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--faq-card-border);
    flex-shrink: 0;
}

.faq-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--faq-text);
    margin: 0;
    line-height: 1.3;
}

.faq-card-arrow {
    color: var(--faq-text-muted);
    flex-shrink: 0;
}

.faq-card-body {
    padding: 1rem 1.5rem 1.25rem;
    flex: 1;
}

.faq-item {
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    list-style: none;
    color: var(--faq-text);
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: background-color 0.15s ease;
}

.faq-item-summary::-webkit-details-marker {
    display: none;
}

.faq-item-summary:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.faq-item-question {
    flex: 1;
    padding-right: 0.5rem;
}

.faq-item-arrow {
    flex-shrink: 0;
    color: var(--faq-text-muted);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item-arrow {
    transform: rotate(90deg);
}

.faq-item-answer {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--faq-text);
    border-top: 1px solid var(--faq-card-border);
}

.about-section-legacy.faq-page .faq-item-answer,
.about-section-legacy.faq-page .faq-item-answer p,
.about-section-legacy.faq-page .faq-item-answer ol,
.about-section-legacy.faq-page .faq-item-answer ul,
.about-section-legacy.faq-page .faq-item-answer li,
.about-section-legacy.faq-page .faq-item-answer strong,
.about-section-legacy.faq-page .faq-item-answer b {
    color: var(--faq-text);
}

.faq-empty {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
    color: var(--faq-text-muted);
}

.faq-cta-card {
    background-color: var(--faq-cta-bg);
    border-color: var(--faq-cta-bg);
    color: var(--faq-cta-text);
    padding: 1.5rem 1.5rem 1.75rem;
    justify-content: center;
    text-align: center;
}

.faq-cta-card .faq-card-header,
.faq-cta-card .faq-card-body {
    display: none;
}

.faq-cta-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: inherit;
}

.faq-cta-subtitle {
    font-size: 0.9375rem;
    opacity: 0.95;
    margin: 0 0 1.25rem;
    line-height: 1.4;
}

.faq-cta-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: var(--faq-cta-btn-bg);
    color: var(--faq-cta-btn-text);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.faq-cta-btn:hover {
    opacity: 0.92;
}

/* Header – растојание 50px од краевите (како sticky иконата) */
.header-nav-spacing {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 640px) {
    .header-nav-spacing {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 768px) {
    .header-nav-spacing {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) {
    .header-nav-spacing {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Header: мени, пребарување, корисник, кошничка – само на desktop 50×50 (Tailwind md: arbitrary values може да не се применат) */
@media (min-width: 768px) {

    header .header-nav-spacing>div.flex.items-center.gap-2>button,
    header .header-nav-spacing>div.flex.items-center.gap-2>a.rounded-full {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px;
        min-height: 50px;
    }

    /* Икона кошничка – поголема на desktop */
    header .header-nav-spacing .header-cart-icon {
        width: 28px !important;
        height: 24px !important;
        min-width: 28px;
        min-height: 24px;
    }
}

/* Header icons: hover rotation (menu, search, user, cart) */
.header-icon-hover-rotate {
    transition: transform 0.3s ease-out;
}

.header-icon-hover-rotate:hover {
    transform: rotate(-24deg);
}

/* Header икони – заедничко (SVG) */
#site-header .header-icon-btn svg {
    display: block;
    flex-shrink: 0;
}

#site-header .header-icon-btn svg path {
    fill: currentColor;
}

/* Header икони – DESKTOP (640px+): златен круг, бела икона */
@media (min-width: 640px) {
    #site-header .header-icon-group {
        flex-direction: row;
    }

    #site-header .header-icon-btn--desktop-filled {
        background-color: #e3ab43 !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: none !important;
    }
}

/* Header икони – MOBILE (до 639px) */
@media (max-width: 639px) {
    .header-icon-group {
        flex-direction: column;
    }

    .mobile-header-logo-link {
        position: absolute;
        left: 50%;
        top: 16px;
        transform: translateX(-50%);
        z-index: 1;
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .mobile-header-logo-link.mobile-header-logo-link--hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-50%) translateY(-8px);
    }

    .mobile-header-logo-img {
        max-width: 168px;
        width: 168px;
        height: auto;
        display: block;
    }

    .header-nav-spacing {
        min-height: 88px;
    }

    #site-header.site-header--logo-hidden .header-nav-spacing {
        min-height: 72px;
    }

    #site-header.site-header--logo-hidden {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* Мени + кошничка: златен круг, црн симбол */
    #site-header .header-icon-btn--mobile-filled {
        background-color: #e3ab43 !important;
        color: #111827 !important;
        border: 2px solid transparent !important;
    }

    /* Пребарување + најава (гостин): само икона, без круг */
    #site-header .header-icon-btn--mobile-outline {
        background-color: transparent !important;
        color: #111827 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Најавен корисник: outline круг со аватар/иницијали */
    #site-header .header-icon-btn--mobile-auth {
        background-color: transparent !important;
        color: #111827 !important;
        border: 2px solid #d1d5db !important;
        overflow: hidden;
    }

    #site-header .header-icon-btn--mobile-auth span {
        color: #111827;
    }
}

/* About-us / контакт / FAQ – само мобилен: златна позадина, header, padding (desktop непроменет) */
@media (max-width: 1023px) {
    body:has(.about-section-legacy) {
        background-color: #DE9E24 !important;
    }

    body:has(.about-section-legacy) #site-header {
        background-color: rgba(222, 158, 36, 0.97) !important;
        backdrop-filter: blur(6px);
        box-shadow: none;
    }

    .about-section-legacy {
        margin-top: 0 !important;
        padding-top: 9.625rem !important;
        padding-bottom: 4rem !important;
    }

    .about-section-legacy.faq-page {
        padding-top: 10rem !important;
    }
}

/* Назад – на мобилен центрирано (За нас користи frontend.page) */
@media (max-width: 1023px) {
    .inspiration-page-container > a.back-button,
    .about-section-legacy .about-page-container > a.back-button,
    .about-section-legacy > .container > a.back-button {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
        gap: 0.35rem;
        transform: none !important;
    }

    .inspiration-page-container > a.back-button:hover,
    .about-section-legacy .about-page-container > a.back-button:hover,
    .about-section-legacy > .container > a.back-button:hover {
        transform: none !important;
    }

    .about-section-legacy .about-page-container,
    .about-section-legacy > .container {
        box-sizing: border-box;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .about-section-legacy .about-page-container .about-title,
    .about-section-legacy .about-page-container .about-text,
    .about-section-legacy > .container .about-title,
    .about-section-legacy > .container .about-text {
        padding-left: 0;
        padding-right: 0;
    }

    .about-section-legacy .about-page-container .about-text,
    .about-section-legacy > .container .about-text {
        max-width: 100%;
    }

    .about-section-legacy .about-page-container .prose,
    .about-section-legacy > .container .prose {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Sticky icon (fixed right): hover zoom in / zoom out (scale) */
.sticky-icon-hover-zoom {
    transition: transform 0.3s ease-out;
}

/* Sticky икона – без сенка, макс. 60px (користете поголема слика за остра слика) */
.sticky-icon-hover-zoom img {
    display: block;
    max-width: 60px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease-out;
    transform: scale(1);
}

.sticky-icon-hover-zoom:hover img {
    transform: scale(1.15);
}

/*
 * Страница „Брендови“ – НЕ користи .img-hover-zoom: тој стил користи object-fit: cover на img
 * и ги сече широките логоа (особено во десната колона на мобилен).
 */
.brands-grid>li {
    min-width: 0;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(200px, 100%);
    min-height: 5rem;
    max-height: 100px;
    border-radius: 0.5rem;
    overflow: visible;
}

.brand-logo-link img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100px !important;
    object-fit: contain !important;
    object-position: center;
    display: block;
    transition: transform 0.3s ease-out;
}

@media (min-width: 768px) {
    .brand-logo-link {
        overflow: hidden;
    }

    .brand-logo-link:hover img {
        transform: scale(1.05);
    }
}

@media (max-width: 767px) {
    .brand-logo-link img {
        transform: none;
    }
}

/* Image hover zoom – homepage banners, best selling, other products only */
.img-hover-zoom {
    overflow: hidden;
    display: block;
}

.img-hover-zoom img {
    transition: transform 0.35s ease-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Страница „Брендови“: отстап под фиксен хедер — не се потпира само на Tailwind (често недостасуваат mt-28, pt-4 во output.css). */
.brands-page-section {
    margin-top: 5rem;
    padding-top: 2rem;
    /* помалку воздух над „Назад“ / наслов на мобилен */
    padding-bottom: 4rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .brands-page-section {
        padding-top: 3.5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .brands-page-section {
        margin-top: 40px;
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* Product card: image swap on hover (Shop + category listing only; not product page gallery) */
.product-card-img-swap {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-card-img-swap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card-img-swap .product-card-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card-img-swap:hover .product-card-img-main {
    opacity: 0;
}

.product-card-img-swap:hover .product-card-img-hover {
    opacity: 1;
}

/*
 * Листа производи на Inspiration (instructions / instructions-sub).
 * Tailwind `gap-x-*` од Blade често не завршува во компајлираниот output.css → празен визуелен размак.
 * Посебна класа (не глобален `.gap-x-7` — тој се користи и на „сродни производи“).
 */
.inspiration-products-grid {
    -moz-column-gap: 7rem;
    column-gap: 7rem;
    row-gap: 11.25rem;
    /* ~180px, исто како претходниот md:gap-y */
}

@media (max-width: 1023px) {
    .inspiration-products-grid {
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem;
        row-gap: 6rem;
    }
}

@media (max-width: 639px) {
    .inspiration-products-grid {
        -moz-column-gap: 1.75rem;
        column-gap: 1.75rem;
        row-gap: 4.75rem;
    }

    .inspiration-products-grid > .relative {
        padding-bottom: 0.35rem;
    }
}

/* Мобилен ред: цена + копче „+“ на листи производи */
@media (max-width: 767px) {
    .product-card-mobile-price {
        font-size: 1.0625rem;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .product-card-mobile-actions {
        margin-bottom: 0.65rem;
        min-height: 2.25rem;
    }

    a.add-to-cart.cart-btn.custom-button {
        width: 2rem !important;
        height: 2rem !important;
        min-width: 2rem !important;
    }

    a.add-to-cart.cart-btn.add-to-cart--oos {
        opacity: 0.65;
        border-style: dashed;
    }

    .product-cards-grid {
        row-gap: 4.75rem !important;
    }
}

/* Popup: нема на залиха (само мобилен, при клик на +) */
.oos-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.oos-cart-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

body.oos-modal-open {
    overflow: hidden;
}

.oos-cart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.oos-cart-modal__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto 0.5rem;
    padding: 1.35rem 1.25rem 1.15rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.oos-cart-modal__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: #111;
}

.oos-cart-modal__text {
    font-size: 0.9375rem;
    line-height: 1.45;
    margin: 0 0 1rem;
    color: #444;
}

.oos-cart-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 10px;
    background: #e3ab43;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
}

@media (min-width: 768px) {
    .oos-cart-modal {
        display: none !important;
    }
}

/* Newsletter: потврда по пријава (фиксен popup, видлив без скрол до футер) */
.newsletter-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.newsletter-feedback-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

body.newsletter-modal-open {
    overflow: hidden;
}

.newsletter-feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.newsletter-feedback-modal__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 24rem;
    padding: 1.5rem 1.35rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.newsletter-feedback-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.85rem;
    border-radius: 9999px;
}

.newsletter-feedback-modal--success .newsletter-feedback-modal__icon {
    background: #dcfce7;
    color: #166534;
}

.newsletter-feedback-modal--info .newsletter-feedback-modal__icon {
    background: #fef3c7;
    color: #b45309;
}

.newsletter-feedback-modal--error .newsletter-feedback-modal__icon {
    background: #fee2e2;
    color: #b91c1c;
}

.newsletter-feedback-modal__icon-mark {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.newsletter-feedback-modal__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: #111;
}

.newsletter-feedback-modal__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1.1rem;
    color: #444;
}

.newsletter-feedback-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 10px;
    background: #e3ab43;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 767px) {
    .newsletter-feedback-modal {
        align-items: flex-end;
    }

    .newsletter-feedback-modal__sheet {
        margin-bottom: 0.5rem;
    }
}

/* Oxy читање: празна категорија (во изработка) */
.blog-category-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min(52vh, 28rem);
    padding: 2.5rem 0 3.5rem;
}

.blog-category-empty__card {
    position: relative;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    padding: 2.25rem 1.75rem 2rem;
    text-align: center;
    background: linear-gradient(165deg, #ffffff 0%, #faf9f7 55%, #f3f0ec 100%);
    border: 1px solid rgba(122, 103, 91, 0.14);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 48px rgba(122, 103, 91, 0.1);
}

.blog-category-empty__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 100%;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, #e3ab43, transparent);
}

.blog-category-empty__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a675b;
}

.blog-category-empty__title {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #2d2520;
}

.blog-category-empty__lead {
    margin: 0 auto 1.75rem;
    max-width: 26rem;
    font-size: 1rem;
    line-height: 1.55;
    color: #5c534e;
}

.blog-category-empty__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

@media (min-width: 480px) {
    .blog-category-empty__actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.blog-category-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.blog-category-empty__btn--primary {
    background: #e3ab43;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 14px rgba(227, 171, 67, 0.35);
}

.blog-category-empty__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(227, 171, 67, 0.42);
}

.blog-category-empty__btn--ghost {
    background: transparent;
    color: #7a675b;
    border: 2px solid rgba(122, 103, 91, 0.35);
}

.blog-category-empty__btn--ghost:hover {
    background: rgba(122, 103, 91, 0.06);
    border-color: #7a675b;
}

/* Popup: секција во изработка (мени OXYxMODU, Инструкции) */
.under-construction-modal {
    position: fixed;
    inset: 0;
    z-index: 10055;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.under-construction-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

body.uc-modal-open {
    overflow: hidden;
}

.under-construction-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.under-construction-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 34rem;
    animation: uc-modal-in 0.28s ease;
}

.under-construction-modal__dialog .blog-category-empty__card {
    margin: 0;
}

.under-construction-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1.5px solid rgba(45, 37, 32, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #444;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.under-construction-modal__close:hover {
    background: #2d2520;
    border-color: #2d2520;
    color: #fff;
    transform: scale(1.05);
}

.under-construction-modal__close:focus-visible {
    outline: 2px solid #e3ab43;
    outline-offset: 2px;
}

@keyframes uc-modal-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/*
 * Пребарување + Livewire инструкции: ист grid како претходно (1 колона → 3 на lg),
 * со јазови бидејќи Tailwind `gap-x-10` / `lg:gap-x-16` / `md:gap-y-[180px]` често не завршуваат во output.css.
 */
.product-listing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    row-gap: 2rem;
}

@media (min-width: 768px) {
    .product-listing-grid {
        row-gap: 5.625rem;
    }
}

@media (min-width: 1024px) {
    .product-listing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -moz-column-gap: 4rem;
        column-gap: 4rem;
    }
}

/* Mobile: авто-преглед на втора слика по 1s кога картичката влезе во viewport, потоа враќање на главната */
@media (max-width: 767px) {
    .product-card-img-swap.mobile-img-peek .product-card-img-main {
        opacity: 0;
    }

    .product-card-img-swap.mobile-img-peek .product-card-img-hover {
        opacity: 1;
    }
}

/* Hero slider CTA button – hover/active за да се знае дека е кликливо */
.hero-slider-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-slider-cta-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Category block „Истражи“ копчиња – hover/active */
.category-block-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-block-cta-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Product details – копче „Додади во кошничка“ само на desktop не full-width + блага анимација */
.add-to-cart-desktop-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease !important;
}

.add-to-cart-desktop-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(227, 171, 67, 0.35);
}

.add-to-cart-desktop-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(227, 171, 67, 0.25);
}

/* PDP desktop – „Извести ме“: .px-2 со 1.5rem лево/десно (само ова копче, не глобален .px-2) */
@media (min-width: 1024px) {
    .product-notify-desktop-btn.px-2 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* „Извести ме“ – без сенка (zoom од .add-to-cart-desktop-btn останува) */
.product-notify-desktop-btn.add-to-cart-desktop-btn {
    box-shadow: none !important;
}

.product-notify-desktop-btn.add-to-cart-desktop-btn:hover,
.product-notify-desktop-btn.add-to-cart-desktop-btn:active {
    box-shadow: none !important;
}

/* Модал „Извести ме“: resources/css/output.css е пресечен Tailwind — нема p-6, sm:flex-row, shadow-2xl, max-w-xl, min-h-[44px] …
   Затоа npm run build НЕ ги додава тие класи; сè критично е тука + ?v= на custom.css за кеш. */
.stock-notify-modal-panel {
    box-sizing: border-box;
    width: min(100%, 36rem) !important;
    max-width: 36rem !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgb(15 23 42 / 0.12);
    border: 1px solid rgb(226 232 240 / 0.9);
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .stock-notify-modal-panel {
        padding: 2rem;
    }
}

.stock-notify-top-rule {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(227, 171, 67, 0.45), transparent);
}

.stock-notify-bell {
    margin-top: 2px;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background-color: rgba(227, 171, 67, 0.12);
    color: #e3ab43;
    box-shadow: 0 0 0 1px rgba(227, 171, 67, 0.25);
}

.stock-notify-product-box {
    display: flex;
    gap: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(226 232 240);
    background: rgb(248 250 252);
    padding: 0.75rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.stock-notify-actions-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

.stock-notify-actions-row .stock-notify-email-input,
.stock-notify-actions-row .stock-notify-submit-btn {
    min-height: 44px;
}

@media (min-width: 640px) {
    .stock-notify-actions-row {
        flex-direction: row;
        align-items: stretch;
    }

    .stock-notify-actions-row .stock-notify-email-input {
        flex: 1 1 0%;
        min-width: 0 !important;
        width: auto !important;
        max-width: none;
    }

    .stock-notify-actions-row .stock-notify-submit-btn {
        width: auto !important;
        flex-shrink: 0;
        white-space: nowrap;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 15px;
        min-height: 48px;
    }
}

.stock-notify-privacy-note {
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgb(241 245 249);
}

@media (min-width: 640px) {
    .stock-notify-privacy-note {
        margin-top: 1.125rem;
        padding-top: 1rem;
    }
}

.stock-notify-privacy-note svg {
    color: rgba(227, 171, 67, 0.85);
}

.stock-notify-close:focus-visible {
    outline: 2px solid #e3ab43;
    outline-offset: 2px;
}

/* Пораки во модал: „инфо“ (веќе пријавени, на залиха) ≠ црвена грешка */
.stock-notify-banner {
    line-height: 1.5;
}

.stock-notify-banner--error {
    color: rgb(185 28 28);
}

.stock-notify-banner--info {
    border-radius: 0.75rem;
    border: 1px solid rgb(253 230 138);
    background: rgb(254 252 232);
    color: rgb(146 64 14);
    padding: 0.75rem 1rem;
}

.stock-notify-banner--success {
    border-radius: 0.75rem;
    border: 1px solid rgb(167 243 208);
    background: rgb(236 253 245);
    color: rgb(6 95 70);
    padding: 0.75rem 1rem;
}

/* Е-пошта во модал – глобални стилови понекогаш центрираат / преголем padding */
.stock-notify-email-input {
    text-align: left !important;
    line-height: 1.45 !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    border: 1px solid rgb(229 231 235) !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.stock-notify-email-input::placeholder {
    color: #9ca3af;
}

.stock-notify-email-input:focus {
    border-color: #e3ab43 !important;
    box-shadow: 0 0 0 2px rgba(227, 171, 67, 0.28);
}

/* Копче „Потврди“ – бренд #e3ab43 (исто како Tailwind Pcolor) */
.stock-notify-submit-btn {
    background-color: #e3ab43 !important;
    color: #fff !important;
    box-shadow: 0 4px 6px -1px rgb(15 23 42 / 0.12);
}

.stock-notify-submit-btn:hover {
    filter: brightness(0.96);
}

.stock-notify-submit-btn:focus-visible {
    outline: 2px solid #e3ab43;
    outline-offset: 2px;
}

/* Product details – боја swatches, помало растојание помеѓу иконите */
.product-color-swatches {
    gap: 6px;
}

.product-color-swatches li {
    padding: 3px !important;
}

/* Други производи – line spacing за наслов на продукт */
.product-card-title,
.product-card-title a {
    line-height: 1.45;
}

/* Drawer мени – благо поместување надесно при hover (без zoom, не се крие текст) */
.sidebar-menu-list>li>a,
.sidebar-menu-list>li>button {
    display: inline-block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sidebar-menu-list>li>a:hover,
.sidebar-menu-list>li>button:hover {
    transform: translateX(8px);
    opacity: 0.9;
}

.sidebar-menu-list li ul li a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sidebar-menu-list li ul li a:hover {
    transform: translateX(6px);
    opacity: 0.9;
}

/* Drawer – „За нас“ и „Контакт“ (бренд боја #e7a724, hover) */
.sidebar-bottom-links a {
    color: #6b7280 !important;
    font-weight: 400 !important;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.sidebar-bottom-links a:hover {
    color: #e7a724 !important;
    font-weight: 700 !important;
}

/* Мобилна почетна – лого во бренд боја #e7a724 (само на почетна, се скролува) */
@media (max-width: 639px) {
    .mobile-home-logo-img {
        max-width: 134px;
        height: auto;
        filter: brightness(0) saturate(100%) invert(70%) sepia(58%) saturate(1200%) hue-rotate(10deg);
    }
}

/* Product size options: на залиха vs нема на залиха */
.product-size-option {
    border-width: 1px;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-size-in-stock {
    background-color: #fff;
    border-color: #d1d5db;
    cursor: pointer;
}

.product-size-in-stock:hover {
    border-color: #e3ab43;
    background-color: #fdf8ed;
}

.product-size-in-stock.product-size-selected {
    border-width: 2px;
    border-color: #e3ab43;
    background-color: #fdf8ed;
}

.product-size-out-of-stock {
    background-color: #e5e7eb;
    border-color: #d1d5db;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
}

.product-size-out-of-stock .product-size-value {
    text-decoration: line-through;
    color: #6b7280;
}

.product-size-out-of-stock .product-size-subtitle {
    color: #9ca3af;
}

.product-size-out-of-stock .product-size-badge {
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
}

/* Мобилен footer – посебен padding-bottom (иста вредност како pb-10) */
.footer-mobile-pb {
    padding-bottom: 5.5rem;
}

/* Product details – мобилна содржина, растојание под листата (Достава, Плаќање...) – само за овој блок */
.product-mobile-content-spacing {
    padding-bottom: 5rem;
}

/* Inspiration листа: на многу широк desktop да не "лепи" до рабови */
@media (min-width: 1600px) {
    .inspiration-page-container {
        max-width: 1700px !important;
    }
}

/* Footer credits – иста font-family како company панел (Montserrat) */
.font-Montserrat {
    font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
}

/* ICON категории – grid по поставка (админ → Решетка); lg:w-1/5 не е во output.css */
.icon-categories-grid {
    display: grid;
    width: 100%;
    align-items: end;
    column-gap: 1rem;
    row-gap: 2rem;
}

@media (min-width: 640px) {
    .icon-categories-grid {
        row-gap: 4rem;
    }
}

.icon-categories-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon-categories-grid--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .icon-categories-grid--cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.icon-categories-grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .icon-categories-grid--cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .icon-categories-grid--cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.icon-categories-grid--cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .icon-categories-grid--cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .icon-categories-grid--cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.icon-categories-grid--cols-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .icon-categories-grid--cols-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .icon-categories-grid--cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Почетна (Растеме и + заедно…) – flex + center: една икона или сама на последен ред */
.icon-categories-grid.icon-categories-grid--center-row {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    column-gap: 1rem;
    row-gap: 2rem;
    grid-template-columns: none !important;
}

.icon-categories-grid.icon-categories-grid--center-row > li:only-child {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .icon-categories-grid.icon-categories-grid--center-row {
        row-gap: 4rem;
    }
}

.icon-categories-grid--cols-2.icon-categories-grid--center-row > li {
    flex: 0 0 calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
}

.icon-categories-grid--cols-3.icon-categories-grid--center-row > li,
.icon-categories-grid--cols-4.icon-categories-grid--center-row > li,
.icon-categories-grid--cols-5.icon-categories-grid--center-row > li,
.icon-categories-grid--cols-6.icon-categories-grid--center-row > li {
    flex: 0 0 calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
}

@media (min-width: 768px) {
    .icon-categories-grid--cols-3.icon-categories-grid--center-row > li {
        flex: 0 0 calc((100% - 2rem) / 3);
        width: calc((100% - 2rem) / 3);
        max-width: calc((100% - 2rem) / 3);
    }

    .icon-categories-grid--cols-4.icon-categories-grid--center-row > li,
    .icon-categories-grid--cols-5.icon-categories-grid--center-row > li,
    .icon-categories-grid--cols-6.icon-categories-grid--center-row > li {
        flex: 0 0 calc((100% - 2rem) / 3);
        width: calc((100% - 2rem) / 3);
        max-width: calc((100% - 2rem) / 3);
    }
}

@media (min-width: 1024px) {
    .icon-categories-grid--cols-4.icon-categories-grid--center-row > li {
        flex: 0 0 calc((100% - 3rem) / 4);
        width: calc((100% - 3rem) / 4);
        max-width: calc((100% - 3rem) / 4);
    }

    .icon-categories-grid--cols-5.icon-categories-grid--center-row > li {
        flex: 0 0 calc((100% - 4rem) / 5);
        width: calc((100% - 4rem) / 5);
        max-width: calc((100% - 4rem) / 5);
    }

    .icon-categories-grid--cols-6.icon-categories-grid--center-row > li {
        flex: 0 0 calc((100% - 5rem) / 6);
        width: calc((100% - 5rem) / 6);
        max-width: calc((100% - 5rem) / 6);
    }
}