/* =========================================
LUXURY TILES PREMIUM
========================================= */

.lv-tiles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */

.lv-tile-card{
    position:relative;
    overflow:hidden;

    border-radius:30px;

    background:#111;

    border:1px solid rgba(255,255,255,0.06);

    transition:0.5s ease;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.35);
}

.lv-tile-card:hover{
    transform:translateY(-10px);

    border-color:rgba(201,168,106,0.35);

    box-shadow:
    0 25px 70px rgba(0,0,0,0.55),
    0 0 40px rgba(201,168,106,0.10);
}

/* IMAGE */

.lv-tile-image-wrap{
    position:relative;
    height:560px;
    overflow:hidden;
}

.lv-tile-image{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:1.2s ease;

    filter:
    contrast(1.04)
    saturate(1.08)
    brightness(1.02);
}

.lv-tile-card:hover .lv-tile-image{
    transform:scale(1.08);

    filter:
    contrast(1.08)
    saturate(1.15)
    brightness(1.05);
}

/* LIGHT OVERLAY */

.lv-tile-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.02)
    );

    opacity:0;

    transition:0.5s ease;

    z-index:1;

    pointer-events:none;
}

.lv-tile-card:hover .lv-tile-overlay{
    opacity:1;
}

/* GOLD SHINE */

.lv-tile-shine{
    position:absolute;

    top:-120%;
    left:-40%;

    width:60%;
    height:240%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22),
        rgba(255,255,255,0.03),
        transparent
    );

    transform:rotate(25deg);

    transition:1.2s ease;

    z-index:2;
}

.lv-tile-card:hover .lv-tile-shine{
    left:140%;
}

/* CATEGORY */

.lv-tile-category{
    position:absolute;

    top:24px;
    left:24px;

    z-index:6;

    padding:11px 18px;

    border-radius:100px;

    background:rgba(0,0,0,0.72);

	backdrop-filter:blur(14px);

	border:1px solid rgba(201,168,106,0.22);

	color:#f7e6b0;

	box-shadow:
	0 0 20px rgba(201,168,106,0.08);

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    text-shadow:
    0 2px 12px rgba(0,0,0,0.45);
}

/* GROUP */

.lv-tile-group{
    position:absolute;

    top:26px;
    right:26px;

    z-index:6;

    padding:10px 18px;

    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #b8924e
    );

    color:#000;

    font-size:11px;
    font-weight:600;

    letter-spacing:1px;
	text-transform: uppercase;

    box-shadow:
    0 8px 22px rgba(201,168,106,0.28);
}
/* GLASS CONTENT */

.lv-tile-content{
    position:absolute;

    left:18px;
    right:18px;
    bottom:18px;

    z-index:5;

    padding:24px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.05)
    );

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,0.14);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.30);
}

/* TITLE */

.lv-tile-title{
    margin:0;
    line-height:1.4;
}

.lv-tile-title a{
    color:#fff;

    font-size:24px;
    font-weight:600;

    text-shadow:
    0 2px 12px rgba(0,0,0,0.55);

    transition:0.4s ease;
}

.lv-tile-title a:hover{
    color:#f3d08a;
}

/* PRICE */

.lv-tile-price{
    margin-top:16px;

    display:flex;
    align-items:center;
    gap:14px;
}

.old-price{
    color:rgba(255,255,255,0.55);

    font-size:15px;

    text-decoration:line-through;
}

.new-price{
    color:#f7e6b0;

    font-size:24px;
    font-weight:700;
}

/* BUTTON */

.lv-tile-action{
    position:absolute;

    bottom:160px;
    left:30px;

    z-index:6;

    opacity:0;

    transform:translateY(20px);

    transition:0.45s ease;
}

.lv-tile-card:hover .lv-tile-action{
    opacity:1;
    transform:translateY(0);
}

.lv-tile-action a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 24px;

    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #c9a86a
    );

    color:#000;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.4s ease;
}

.lv-tile-action a:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .lv-tiles-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .lv-tiles-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .lv-tile-image-wrap{
        height:430px;
    }

    .lv-tile-title a{
        font-size:20px;
    }

    .lv-tile-content{
        padding:20px;
    }

}

/* =========================================
NO PRODUCTS BOX
========================================= */

.lv-empty-products{
    max-width:850px;

    margin:40px auto 0 auto;

    padding:80px 50px;

    text-align:center;

    border-radius:35px;

    background:
    linear-gradient(
        180deg,
        rgba(10,10,10,0.96),
        rgba(20,20,20,0.92)
    );

    border:1px solid rgba(201,168,106,0.16);

    box-shadow:
    0 25px 70px rgba(0,0,0,0.55);
}

.lv-empty-icon{
    width:110px;
    height:110px;

    margin:0 auto 30px auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #b8924e
    );

    color:#000;

    font-size:42px;

    box-shadow:
    0 15px 40px rgba(201,168,106,0.25);
}

.lv-empty-products h2{
    color:#f7e6b0;

    font-size:42px;
    font-weight:700;

    margin-bottom:20px;
}

.lv-empty-products p{
    max-width:650px;

    margin:0 auto;

    color:rgba(255,255,255,0.72);

    font-size:18px;
    line-height:1.8;
}

.lv-empty-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:40px;

    padding:16px 34px;

    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #b8924e
    );

    color:#000;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.4s ease;

    box-shadow:
    0 10px 30px rgba(201,168,106,0.25);
}

.lv-empty-btn:hover{
    transform:translateY(-3px) scale(1.03);

    color:#000;
}

@media(max-width:768px){

    .lv-empty-products{
        padding:55px 25px;
    }

    .lv-empty-products h2{
        font-size:30px;
    }

    .lv-empty-products p{
        font-size:16px;
    }

}

/* =========================================
TOOLBAR
========================================= */

.lv-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    margin-bottom:60px;
}

.lv-toolbar-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.lv-toolbar-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* FILTER BUTTON */

.lv-filter-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 28px;

    border:none;

    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #b8924e
    );

    color:#000;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.4s ease;

    box-shadow:
    0 10px 25px rgba(201,168,106,0.25);
}

.lv-filter-btn:hover{
    transform:translateY(-2px);
}


/* =========================================
SIDEBAR
========================================= */


/* HEADER */

.lv-filter-header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:35px;
}

.lv-filter-header h3{
    color:#f7e6b0;

    margin:0;

    font-size:30px;
}

.lv-filter-header button{
    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    background:#111;

    color:#f7e6b0;
}

/* BOX */

.lv-filter-box{
    margin-bottom:20px;

    border:1px solid rgba(201,168,106,0.10);

    border-radius:20px;

    overflow:hidden;

    background:#0d0d0d;
}

.lv-filter-title{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px;

    border:none;

    background:none;

    color:#f7e6b0;

    font-size:16px;
    font-weight:600;
}

.lv-filter-content{
    padding:0 22px 22px 22px;
}

/* CHECK */

.lv-check{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:14px;

    color:#ddd;

    cursor:pointer;
}

.lv-check input{
    display:none;
}

.lv-check span{
    width:20px;
    height:20px;

    border-radius:6px;

    border:1px solid rgba(201,168,106,0.30);

    position:relative;
}

.lv-check input:checked + span{
    background:#d4b06a;
}

/* COLOR */
/* =========================================
COLOR CHECK (UNIFIED SA OSTALIM CHECKBOX-OM)
========================================= */

.lv-color-check{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:14px;

    color:#ddd;

    cursor:pointer;
}

/* sakrij input */
.lv-color-check input{
    display:none;
}

/* isti checkbox kao ostali */
.lv-color-box{
    width:20px;
    height:20px;

    border-radius:6px;

    border:1px solid rgba(201,168,106,0.30);

    position:relative;

    transition:0.3s ease;

    flex-shrink:0;
}

/* kad je čekirano */
.lv-color-check input:checked + .lv-color-box{
    outline:2px solid #f7e6b0;
    transform:scale(1.3);
}

/* ime boje */
.lv-color-name{
    color:#ddd;
}

.lv-color-box{
    background-size:cover;
    background-position:center;
}

/* BUTTON */

.lv-filter-submit{
    width:100%;

    height:60px;

    border:none;

    border-radius:18px;

    margin-top:20px;

    background:
    linear-gradient(
        135deg,
        #f7e6b0,
        #d4b06a,
        #b8924e
    );

    color:#000;

    font-size:14px;
    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:992px){

    .lv-toolbar{
        flex-direction:column;
        align-items:stretch;
    }

    .lv-toolbar-left,
    .lv-toolbar-right{
        width:100%;

        flex-direction:column;
        align-items:stretch;
    }

 

    .lv-filter-btn{
        justify-content:center;
    }

    .shop-show{
        text-align:center;
    }

    .lv-filter-sidebar{
        width:100%;
    }

}
/* =========================================
FILTER DA IDE PREKO MENIJA
========================================= */
/* OVERLAY */
.lv-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 99999; /* veće od sticky menija */
}

.lv-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR */
.lv-filter-sidebar {
    position: fixed;
    top: 0;
    left: -430px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #050505;
    border-right: 1px solid rgba(201,168,106,0.12);
    z-index: 100000; /* sidebar iznad overlay-a i menija */
    transition: 0.45s ease;
    padding: 30px;
}

.lv-filter-sidebar.active {
    left: 0;
}

/* MOBILE FULLSCREEN */
@media(max-width: 992px) {
    .lv-filter-sidebar {
        width: 100%;
        left: -100%;
    }
    .lv-filter-sidebar.active {
        left: 0;
    }
}



/* =========================================
MOBILE SORT + PAGINATION 50/50
========================================= */

@media(max-width:768px){

    .lv-toolbar-right{
        display:flex;
        flex-direction:row !important;

        align-items:stretch;
        justify-content:space-between;

        gap:12px;

        width:100%;
    }

    .lv-toolbar-right > *{
        width:50%;
        flex:0 0 calc(50% - 6px);
    }

    .lv-toolbar-right .select-option,
    .lv-toolbar-right form,
    .lv-toolbar-right select,
    .lv-toolbar-right .form-select{
        width:100%;
    }

}

/* NOVO SELECT */
/* Sortiranje dropdown */

/* =========================================
LUXURY SELECT
========================================= */

.lv-select-box{
    width:220px;
}

.lv-select-box form{
    width:100%;
}

.lv-select-label{
    display:block;

    margin-bottom:10px;

    color:#000;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;
    text-transform:uppercase;
}

.lv-select{
    width:100%;
    height:58px;

    padding:0 18px;

    border-radius:18px;

    border:1px solid rgba(201,168,106,0.35);

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7f7f7
    );

    color:#111;

    font-size:15px;
    font-weight:600;

    outline:none;

    transition:0.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    cursor:pointer;
}

.lv-select:hover{
    border-color:#c9a86a;

    box-shadow:
    0 12px 30px rgba(201,168,106,0.15);
}

.lv-select:focus{
    border-color:#b8924e;

    box-shadow:
    0 0 0 4px rgba(201,168,106,0.15);
}

/* MOBILE */

@media(max-width:768px){

    .lv-select-box{
        width:100%;
    }

    .lv-select{
        height:54px;
        font-size:14px;
    }

}
.lv-tile-card{
    will-change: transform;
}

.lv-tile-image{
    will-change: transform;
}

@media(max-width:768px){
    .lv-tile-content{
        backdrop-filter:none;
    }

    .lv-tile-category{
        backdrop-filter:none;
    }
}

@media(max-width:768px){

    .lv-tile-group{
        top: calc(24px + 32px);
        right: 24px;
    }

}