/* ==========================================================
   GLYDE Experience Center
   Pages
   Products Page
==========================================================*/

/* ===========================
   HERO
=========================== */

.hero{

    padding:70px 0;

}

.hero h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.hero p{

    max-width:700px;

    margin:auto;

    color:#d6d6d6;

}

/* ===========================
   TOOLBAR
=========================== */

.toolbar{

    position:sticky;

    top:75px;

    background:#fff;

    z-index:100;

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

/* ===========================
   CATEGORY FILTERS
=========================== */

.filters{

    padding:20px 0 10px;

}

#categoryFilters{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

/* ===========================
   PRODUCT COUNT
=========================== */

.product-counter{

    padding:12px 0;

    color:#666;

    font-size:15px;

}

/* ===========================
   PRODUCT GRID
=========================== */

.product-grid{

    padding:15px 0 50px;

}

/* ===========================
   LOADING
=========================== */

.loading{

    text-align:center;

    padding:80px 20px;

}

.loading p{

    margin-top:20px;

    color:#777;

}

/* ===========================
   EMPTY
=========================== */

.empty-state{

    padding:100px 20px;

    text-align:center;

}

.empty-state h2{

    font-size:30px;

    margin-bottom:10px;

}

.empty-state p{

    color:#888;

}

/* ===========================
   ANIMATIONS
=========================== */

.product-card{

    animation:fadeUp .4s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* ===========================
   FOCUS
=========================== */

input:focus,
select:focus,
button:focus{

    outline:none;

    box-shadow:0 0 0 3px rgba(200,162,74,.20);

}

/* ===========================
   SECTION SPACING
=========================== */

main{

    padding-bottom:60px;

}

/* ===========================
   SMOOTH CARD LOADING
=========================== */

.product-card{

    transition:
        transform .3s,
        box-shadow .3s,
        opacity .3s;

}