/*==================================================
                ART GALLERY PAGE
                Yoga Foto Station
==================================================*/


/*==================================================
                GALLERY HERO
==================================================*/

.gallery-hero{

    position:relative;

    width:100%;

    height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:url("../images/gallery-banner.jpg") center center/cover no-repeat;

    overflow:hidden;

}


/*==================================================
                DARK OVERLAY
==================================================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.55),

        rgba(0,0,0,.70)

    );

}


/*==================================================
                HERO CONTENT
==================================================*/

.gallery-hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    margin:auto;

    color:#fff;

    padding:0 20px;

}


/*==================================================
                SUBTITLE
==================================================*/

.gallery-hero-content span{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    letter-spacing:4px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:20px;

}


/*==================================================
                TITLE
==================================================*/

.gallery-hero-content h1{

    font-family:"Abril Fatface", serif;

    font-size:64px;

    font-weight:400;

    line-height:1.2;

    margin-bottom:25px;

}


/*==================================================
                DESCRIPTION
==================================================*/

.gallery-hero-content p{

    font-size:18px;

    color:#ddd;

    line-height:1.9;

    max-width:700px;

    margin:auto;

}


/*==================================================
                HERO ANIMATION
==================================================*/

.gallery-hero-content span,

.gallery-hero-content h1,

.gallery-hero-content p{

    animation:fadeUp 1s ease forwards;

}

.gallery-hero-content h1{

    animation-delay:.2s;

}

.gallery-hero-content p{

    animation-delay:.4s;

}


/*==================================================
                FADE UP
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .gallery-hero{

        height:420px;

    }

    .gallery-hero-content h1{

        font-size:48px;

    }

}

@media(max-width:768px){

    .gallery-hero{

        height:350px;

    }

    .gallery-hero-content h1{

        font-size:38px;

    }

    .gallery-hero-content p{

        font-size:16px;

    }

}

@media(max-width:480px){

    .gallery-hero{

        height:300px;

    }

    .gallery-hero-content h1{

        font-size:30px;

    }

    .gallery-hero-content span{

        font-size:13px;

        letter-spacing:2px;

    }

}

/*==================================================
                GALLERY TOOLBAR
==================================================*/

.gallery-toolbar{

    position:relative;

    padding:70px 0 40px;

    background:#0f0f0f;

}

.toolbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;

}


/*==================================================
                SEARCH BOX
==================================================*/

.search-box{

    flex:1;

    min-width:280px;

    position:relative;

}

.search-box input{

    width:100%;

    height:58px;

    padding:0 65px 0 22px;

    border:none;

    outline:none;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    transition:.35s;

}

.search-box input::placeholder{

    color:#bdbdbd;

}

.search-box input:focus{

    border-color:var(--primary);

    box-shadow:0 0 20px rgba(212,175,55,.15);

}


/*==================================================
                SEARCH BUTTON
==================================================*/

.search-box button{

    position:absolute;

    right:6px;

    top:6px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--primary),
        #f2c94c
    );

    color:#111;

    transition:.35s;

}

.search-box button:hover{

    transform:scale(1.05);

}


/*==================================================
                FILTER GROUP
==================================================*/

.filter-group{

    display:flex;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}


/*==================================================
                SELECT BOX
==================================================*/

.filter-group select{

    min-width:180px;

    height:58px;

    padding:0 18px;

    border:none;

    outline:none;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    cursor:pointer;

    font-size:15px;

    transition:.35s;

}

.filter-group select:focus{

    border-color:var(--primary);

}


/* Dropdown option colors */

.filter-group select option{

    background:#1b1b1b;

    color:#fff;

}


/*==================================================
                PRODUCT COUNT
==================================================*/

.product-count{

    margin-top:30px;

    color:#bdbdbd;

    font-size:15px;

    text-align:right;

}

.product-count span{

    color:var(--primary);

    font-weight:700;

}


/*==================================================
                FILTER BUTTON
==================================================*/

.mobile-filter-btn{

    display:none;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--primary),
        #f2c94c
    );

    color:#111;

    font-size:20px;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .toolbar{

        flex-direction:column;

        align-items:stretch;

    }

    .filter-group{

        width:100%;

    }

    .filter-group select{

        flex:1;

        min-width:160px;

    }

}

@media(max-width:768px){

    .search-box{

        width:100%;

    }

    .filter-group{

        display:none;

    }

    .mobile-filter-btn{

        display:flex;

        justify-content:center;

        align-items:center;

        margin:20px auto 0;

    }

    .product-count{

        text-align:center;

    }

}

@media(max-width:480px){

    .gallery-toolbar{

        padding:50px 0 30px;

    }

    .search-box input{

        font-size:14px;

    }

}

/*==================================================
                PRODUCT GRID
==================================================*/

.gallery-products{

    padding:30px 0 100px;

    background:#0f0f0f;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==================================================
                PRODUCT CARD
==================================================*/

.product-card{

    position:relative;

    background:#181818;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.4);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}


/*==================================================
                PRODUCT IMAGE
==================================================*/

.product-image{

    position:relative;

    width:100%;

    aspect-ratio:1/1;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}


/*==================================================
                IMAGE OVERLAY
==================================================*/

.product-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.55)

    );

    opacity:0;

    transition:.35s;

}

.product-card:hover .product-image::after{

    opacity:1;

}


/*==================================================
                BADGES
==================================================*/

.product-badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:5;

    padding:8px 14px;

    border-radius:30px;

    background:var(--primary);

    color:#111;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}


/*==================================================
                PRODUCT CONTENT
==================================================*/

.product-content{

    padding:24px;

}

.product-category{

    display:inline-block;

    color:var(--primary);

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:12px;

    letter-spacing:1px;

}

.product-content h3{

    font-family:"Abril Fatface", serif;

    font-size:24px;

    color:#fff;

    margin-bottom:12px;

    font-weight:400;

}

.product-content h4{

    color:#f2c94c;

    font-size:22px;

    font-weight:700;

    margin-bottom:22px;

}


/*==================================================
                BUTTON GROUP
==================================================*/

.product-buttons{

    display:flex;

    gap:12px;

}


/*==================================================
                VIEW PRODUCT
==================================================*/

.product-btn{

    flex:1;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50px;

    background:linear-gradient(

        135deg,

        var(--primary),

        #f2c94c

    );

    color:#111;

    font-weight:700;

    transition:.35s;

}

.product-btn:hover{

    transform:translateY(-3px);

}


/*==================================================
                WHATSAPP BUTTON
==================================================*/

.whatsapp-btn2{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.08);

}


/*==================================================
                CARD SHINE
==================================================*/

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.20),

        transparent

    );

    transform:skewX(-25deg);

}

.product-card:hover::before{

    animation:productShine .8s;

}

@keyframes productShine{

    from{

        left:-120%;

    }

    to{

        left:160%;

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .products-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .products-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
                PAGINATION SECTION
==================================================*/

.gallery-pagination{

    padding:20px 0 100px;

    background:#0f0f0f;

}


/*==================================================
                PAGINATION
==================================================*/

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

}


/*==================================================
                PAGE LINK
==================================================*/

.pagination a,

.pagination span{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}


/*==================================================
                ACTIVE PAGE
==================================================*/

.pagination .active{

    background:linear-gradient(

        135deg,

        var(--primary),

        #f2c94c

    );

    color:#111;

    border-color:transparent;

    box-shadow:0 12px 30px rgba(212,175,55,.30);

}


/*==================================================
                HOVER
==================================================*/

.pagination a:hover{

    transform:translateY(-3px);

    border-color:rgba(212,175,55,.45);

    color:var(--primary);

}


/*==================================================
                NEXT & PREVIOUS
==================================================*/

.pagination .next,

.pagination .prev{

    width:auto;

    padding:0 24px;

    border-radius:50px;

}


/*==================================================
                DISABLED
==================================================*/

.pagination .disabled{

    opacity:.45;

    pointer-events:none;

}


/*==================================================
                EMPTY STATE
==================================================*/

.empty-products{

    text-align:center;

    padding:100px 20px;

    max-width:650px;

    margin:auto;

}


/*==================================================
                EMPTY ICON
==================================================*/

.empty-products i{

    font-size:80px;

    color:var(--primary);

    margin-bottom:25px;

}


/*==================================================
                EMPTY TITLE
==================================================*/

.empty-products h2{

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

    font-family:"Abril Fatface", serif;

    font-weight:400;

}


/*==================================================
                EMPTY DESCRIPTION
==================================================*/

.empty-products p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:17px;

    margin-bottom:35px;

}


/*==================================================
                BACK BUTTON
==================================================*/

.empty-products a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:15px 35px;

    border-radius:50px;

    background:linear-gradient(

        135deg,

        var(--primary),

        #f2c94c

    );

    color:#111;

    font-weight:700;

    transition:.35s;

}

.empty-products a:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(212,175,55,.30);

}


/*==================================================
                LOADING PLACEHOLDER
==================================================*/

.loading-products{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.loading-card{

    height:420px;

    border-radius:20px;

    background:linear-gradient(

        90deg,

        rgba(255,255,255,.05),

        rgba(255,255,255,.10),

        rgba(255,255,255,.05)

    );

    background-size:300% 100%;

    animation:loadingAnimation 1.6s infinite;

}

@keyframes loadingAnimation{

    0%{

        background-position:100% 0;

    }

    100%{

        background-position:-100% 0;

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .loading-products{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .pagination{

        gap:8px;

    }

    .pagination a,

    .pagination span{

        width:42px;

        height:42px;

        font-size:14px;

    }

    .pagination .next,

    .pagination .prev{

        padding:0 18px;

    }

    .loading-products{

        grid-template-columns:1fr;

    }

    .empty-products h2{

        font-size:28px;

    }

}