/*==========================================================
    PABRIKO B2B MARKETPLACE
    VERSION 1.0
    PART 01
==========================================================*/

/*==========================================================
    GOOGLE FONT
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================================
    ROOT
==========================================================*/

:root{

    --primary:#FFC107;
    --primary-hover:#FFB300;

    --dark:#121212;
    --dark-light:#1D1D1D;

    --white:#FFFFFF;

    --background:#F6F7FB;

    --border:#E8E8E8;

    --text:#1F2937;

    --muted:#6B7280;

    --success:#22C55E;

    --danger:#EF4444;

    --radius:18px;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --transition:.3s ease;

}

/*==========================================================
    RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--background);

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

button{

    cursor:pointer;

}

input,
button{

    outline:none;

}

/*==========================================================
    SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#ECECEC;

}

/*==========================================================
    UTILITIES
==========================================================*/

.container-custom{

    max-width:1400px;

    margin:auto;

    padding:0 20px;

}

.section{

    margin-top:50px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.section-title{

    font-size:32px;

    font-weight:700;

}

.section-link{

    color:var(--primary);

    font-weight:600;

}

.section-link:hover{

    color:#111;

}

/*==========================================================
    TOPBAR
==========================================================*/

.topbar{

    background:#0B0B0B;

    color:#CFCFCF;

    font-size:13px;

    padding:8px 0;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-link{

    display:flex;

    gap:20px;

}

.top-link a{

    transition:.25s;

}

.top-link a:hover{

    color:var(--primary);

}

/*==========================================================
    NAVBAR
==========================================================*/

.pabriko-navbar{

    background:var(--dark);

    padding:14px 0;

    transition:.3s;

    z-index:999;

}

.navbar-shadow{

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}

.logo{

    height:48px;

}

.desktop-category{

    margin-left:18px;

}

.btn-category{

    height:48px;

    padding:0 20px;

    border:none;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:white;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.btn-category:hover{

    background:var(--primary);

    color:#111;

}

/*==========================================================
    SEARCH
==========================================================*/

.search-wrapper{

    flex:1;

    margin:0 25px;

}

.search-box{

    background:white;

    border-radius:50px;

    height:58px;

    display:flex;

    align-items:center;

    padding:0 22px;

    transition:.3s;

}

.search-focus{

    box-shadow:0 0 0 4px rgba(255,193,7,.25);

}

.search-box i{

    color:#888;

    font-size:22px;

}

.search-box input{

    flex:1;

    border:none;

    background:none;

    margin-left:15px;

    font-size:17px;

}

.search-box input::placeholder{

    color:#9CA3AF;

}

/*==========================================================
    DESKTOP ICON
==========================================================*/

.desktop-menu{

    display:flex;

    align-items:center;

    gap:10px;

}

.icon-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:20px;

    transition:.3s;

}

.icon-btn:hover{

    background:var(--primary);

    color:#111;

}

/*==========================================================
    MOBILE MENU
==========================================================*/

.offcanvas{

    background:#111;

    color:white;

}

.offcanvas-header{

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mobile-menu li{

    margin-bottom:18px;

}

.mobile-menu a{

    color:#E5E5E5;

    font-size:16px;

    transition:.25s;

}

.mobile-menu a:hover{

    color:var(--primary);

    padding-left:8px;

}

/*==========================================================
    HERO
==========================================================*/

.hero{

    padding:35px 0 25px;

}

.hero .row{

    align-items:center;

    min-height:500px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    background:#FFF8DD;

    color:#A97400;

    border-radius:30px;

    padding:8px 18px;

    margin-bottom:22px;

    font-size:14px;

}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    color:var(--muted);

    font-size:20px;

    line-height:1.8;

    max-width:520px;

}

.hero-action{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.heroSwiper{

    width:100%;

}

.hero-banner-wrapper{

    width:100%;

    height:480px;

    border-radius:24px;

    overflow:hidden;

    background:#111;

    box-shadow:var(--shadow);

}

.hero-banner{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*==========================================================
    BUTTON
==========================================================*/

.btn-yellow{

    background:var(--primary);

    color:#111;

    border:none;

    padding:15px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

}

.btn-yellow:hover{

    background:var(--primary-hover);

}

.btn-outline{

    background:white;

    color:#111;

    border:2px solid var(--primary);

    padding:15px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--primary);

}

/*==========================================================
    MOBILE NAVIGATION
==========================================================*/

.mobile-bottom{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:72px;

    background:white;

    display:flex;

    justify-content:space-around;

    align-items:center;

    box-shadow:0 -8px 25px rgba(0,0,0,.08);

    z-index:999;

}

.mobile-bottom a{

    display:flex;

    flex-direction:column;

    align-items:center;

    font-size:12px;

    color:#777;

}

.mobile-bottom i{

    font-size:22px;

    margin-bottom:4px;

}

.mobile-bottom a.active,

.mobile-bottom a:hover{

    color:var(--primary);

}

/*==========================================================
    DESKTOP
==========================================================*/

@media(min-width:1200px){

.hero .col-lg-5{

    flex:0 0 35%;

}

.hero .col-lg-7{

    flex:0 0 65%;

}

}

/*==========================================================
    TABLET
==========================================================*/

@media(max-width:991px){

.search-wrapper{

    width:100%;

    margin:15px 0 0;

}

.hero{

    text-align:center;

}

.hero h1{

    font-size:42px;

}

.hero p{

    margin:auto;

}

.hero-action{

    justify-content:center;

}

.hero-banner-wrapper{

    margin-top:30px;

    height:340px;

}

}

/*==========================================================
    MOBILE
==========================================================*/

@media(max-width:767px){

.logo{

    height:38px;

}

.hero{

    padding:20px 0;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:15px;

}

.hero-action{

    flex-direction:column;

}

.btn-yellow,

.btn-outline{

    width:100%;

}

.hero-banner-wrapper{

    height:190px;

    border-radius:18px;

}

.search-box{

    height:48px;

}

.search-box input{

    font-size:15px;

}

.section-title{

    font-size:24px;

}

}
/*==========================================================
    PART 02
    QUICK MENU
==========================================================*/

.quick-menu{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:20px;

}

.quick-card{

    background:var(--white);

    border-radius:20px;

    padding:25px 15px;

    text-align:center;

    cursor:pointer;

    transition:var(--transition);

    box-shadow:var(--shadow);

    border:1px solid transparent;

}

.quick-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.quick-card i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    border-radius:50%;

    background:#FFF8DD;

    color:var(--primary);

    font-size:30px;

    margin-bottom:15px;

}

.quick-card h6{

    font-size:15px;

    font-weight:600;

    margin-bottom:0;

}

.quick-card span{

    display:block;

    margin-top:5px;

    font-size:13px;

    color:var(--muted);

}

/*==========================================================
    CATEGORY
==========================================================*/

.category-wrapper{

    position:relative;

}

.category-scroll{

    display:flex;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:10px;

}

.category-scroll::-webkit-scrollbar{

    display:none;

}

.category-card{

    min-width:160px;

    background:var(--white);

    border-radius:20px;

    padding:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid transparent;

}

.category-card:hover{

    background:#111;

    color:#fff;

    border-color:var(--primary);

    transform:translateY(-6px);

}

.category-card:hover i{

    color:var(--primary);

}

.category-card i{

    font-size:40px;

    color:#888;

    margin-bottom:15px;

}

.category-card h6{

    font-size:15px;

    font-weight:600;

}

/*==========================================================
    PROMO BANNER
==========================================================*/

.promo-banner{

    border-radius:24px;

    overflow:hidden;

    height:220px;

    margin-top:30px;

    box-shadow:var(--shadow);

}

.promo-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.promo-banner:hover img{

    transform:scale(1.04);

}

/*==========================================================
    PRODUCT GRID
==========================================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

/*==========================================================
    PRODUCT CARD
==========================================================*/

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow);

    border:1px solid transparent;

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.product-image{

    position:relative;

    width:100%;

    aspect-ratio:1;

    overflow:hidden;

    background:#fafafa;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

/* Wishlist */

.product-favorite{

    position:absolute;

    right:12px;

    top:12px;

    width:40px;

    height:40px;

    border-radius:50%;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

    cursor:pointer;

}

.product-favorite:hover{

    background:var(--primary);

}

.product-body{

    padding:18px;

}

.product-title{

    font-size:16px;

    font-weight:600;

    line-height:1.4;

    height:46px;

    overflow:hidden;

}

.product-company{

    font-size:14px;

    color:var(--muted);

    margin-top:10px;

}

.product-location{

    font-size:13px;

    color:#9CA3AF;

    margin-top:5px;

}

.product-rating{

    display:flex;

    align-items:center;

    gap:6px;

    margin-top:12px;

    font-size:13px;

}

.product-rating i{

    color:#FFC107;

}

.product-price{

    margin-top:18px;

    font-size:28px;

    font-weight:700;

    color:#111;

}

.product-action{

    margin-top:18px;

}

.product-action button{

    width:100%;

}

/*==========================================================
    BADGE
==========================================================*/

.badge-ready{

    display:inline-flex;

    align-items:center;

    background:#E8FFF2;

    color:#0F9D58;

    border-radius:30px;

    padding:6px 12px;

    font-size:12px;

    margin-top:12px;

}

.badge-preorder{

    display:inline-flex;

    align-items:center;

    background:#FFF4D7;

    color:#C88700;

    border-radius:30px;

    padding:6px 12px;

    font-size:12px;

    margin-top:12px;

}

.badge-verified{

    display:inline-flex;

    align-items:center;

    background:#111;

    color:#FFC107;

    border-radius:30px;

    padding:6px 12px;

    font-size:12px;

}

/*==========================================================
    SUPPLIER GRID
==========================================================*/

.supplier-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.supplier-card{

    background:white;

    border-radius:22px;

    padding:25px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.supplier-card:hover{

    transform:translateY(-6px);

}

.supplier-logo{

    width:75px;

    height:75px;

    border-radius:50%;

    overflow:hidden;

    margin-bottom:20px;

}

.supplier-logo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.supplier-name{

    font-size:20px;

    font-weight:700;

}

.supplier-location{

    margin-top:5px;

    color:var(--muted);

}

.supplier-stat{

    display:flex;

    justify-content:space-between;

    margin-top:20px;

    padding-top:15px;

    border-top:1px solid var(--border);

}

.supplier-stat strong{

    display:block;

    font-size:20px;

}

.supplier-stat small{

    color:var(--muted);

}

/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.quick-menu{

    grid-template-columns:repeat(3,1fr);

}

.product-grid{

    grid-template-columns:repeat(3,1fr);

}

.supplier-grid{

    grid-template-columns:repeat(2,1fr);

}

.promo-banner{

    height:180px;

}

}

@media(max-width:767px){

.quick-menu{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.category-card{

    min-width:130px;

}

.product-grid{

    grid-template-columns:repeat(2,1fr);

    gap:14px;

}

.product-title{

    font-size:14px;

}

.product-price{

    font-size:20px;

}

.supplier-grid{

    grid-template-columns:1fr;

}

.promo-banner{

    height:120px;

}

}
/*==========================================================
    PART 03
    MEGA MENU
==========================================================*/

.mega-menu{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#121212;

    border-radius:0 0 20px 20px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    display:none;

    z-index:999;

}

.desktop-category{

    position:relative;

}

.desktop-category:hover .mega-menu{

    display:block;

}

.mega-wrapper{

    display:grid;

    grid-template-columns:260px 1fr;

    min-height:500px;

}

.mega-sidebar{

    background:#181818;

    border-right:1px solid rgba(255,255,255,.08);

}

.mega-sidebar ul{

    margin:0;

    padding:20px 0;

}

.mega-sidebar li{

    padding:14px 25px;

    color:#ddd;

    cursor:pointer;

    transition:.3s;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.mega-sidebar li:hover{

    background:#FFC107;

    color:#111;

}

.mega-content{

    padding:35px;

}

.mega-content h5{

    color:#FFC107;

    margin-bottom:25px;

    font-weight:700;

}

.mega-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.mega-item h6{

    color:white;

    margin-bottom:12px;

    font-size:16px;

    font-weight:600;

}

.mega-item a{

    display:block;

    color:#bbb;

    margin-bottom:8px;

    transition:.3s;

}

.mega-item a:hover{

    color:#FFC107;

    padding-left:6px;

}

/*==========================================================
    DROPDOWN
==========================================================*/

.dropdown-panel{

    position:absolute;

    top:60px;

    right:0;

    width:360px;

    background:white;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;

    z-index:999;

}

.dropdown-panel.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-header{

    padding:18px 22px;

    border-bottom:1px solid #eee;

    font-size:18px;

    font-weight:700;

}

.dropdown-body{

    max-height:420px;

    overflow-y:auto;

}

.dropdown-item{

    display:flex;

    gap:15px;

    padding:18px 22px;

    transition:.3s;

    cursor:pointer;

}

.dropdown-item:hover{

    background:#FFF9E6;

}

.dropdown-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#FFF4D7;

    color:#FFC107;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

.dropdown-info h6{

    margin:0;

    font-size:15px;

}

.dropdown-info small{

    color:#777;

}

.dropdown-footer{

    padding:18px;

    border-top:1px solid #eee;

    text-align:center;

}

/*==========================================================
    SIDEBAR FILTER
==========================================================*/

.filter-sidebar{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:var(--shadow);

    position:sticky;

    top:110px;

}

.filter-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;

}

.filter-group{

    margin-bottom:25px;

}

.filter-group h6{

    margin-bottom:15px;

    font-weight:600;

}

.filter-check{

    display:flex;

    align-items:center;

    margin-bottom:12px;

}

.filter-check input{

    margin-right:10px;

}

.filter-check label{

    cursor:pointer;

    color:#555;

}

/*==========================================================
    PRODUCT TOOLBAR
==========================================================*/

.product-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:white;

    padding:18px 25px;

    border-radius:18px;

    box-shadow:var(--shadow);

    margin-bottom:25px;

}

.toolbar-left{

    display:flex;

    align-items:center;

    gap:15px;

}

.toolbar-right{

    display:flex;

    align-items:center;

    gap:15px;

}

.sort-select{

    height:46px;

    border-radius:12px;

    border:1px solid var(--border);

    padding:0 15px;

}

/*==========================================================
    PAGINATION
==========================================================*/

.pagination-custom{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:40px;

}

.pagination-custom a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:white;

    border-radius:12px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.pagination-custom a:hover,

.pagination-custom a.active{

    background:#FFC107;

    color:#111;

}

/*==========================================================
    SKELETON LOADING
==========================================================*/

.skeleton{

    position:relative;

    overflow:hidden;

    background:#EAEAEA;

}

.skeleton::after{

    content:"";

    position:absolute;

    inset:0;

    transform:translateX(-100%);

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.7),

        transparent

    );

    animation:skeleton 1.2s infinite;

}

@keyframes skeleton{

    100%{

        transform:translateX(100%);

    }

}

/*==========================================================
    BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:90px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#FFC107;

    color:#111;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

/*==========================================================
    RIPPLE
==========================================================*/

.btn-yellow{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:scale(0);

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.mega-menu{

    display:none!important;

}

.filter-sidebar{

    position:relative;

    top:0;

}

.product-toolbar{

    flex-direction:column;

    gap:15px;

    align-items:flex-start;

}

.dropdown-panel{

    width:320px;

}

}

@media(max-width:767px){

.dropdown-panel{

    width:100%;

    right:0;

    left:0;

    border-radius:18px 18px 0 0;

    position:fixed;

    top:auto;

    bottom:0;

    max-height:75vh;

}

.product-toolbar{

    padding:15px;

}

.toolbar-left,

.toolbar-right{

    width:100%;

    justify-content:space-between;

}

.back-to-top{

    right:18px;

    bottom:90px;

}

}
/*==========================================================
    PART 04
    FOOTER
==========================================================*/

.footer{

    background:#121212;

    color:#D1D5DB;

    margin-top:80px;

    padding:70px 0 30px;

}

.footer-logo{

    height:55px;

    margin-bottom:20px;

}

.footer-desc{

    color:#9CA3AF;

    line-height:1.8;

    margin-bottom:25px;

}

.footer-title{

    color:#FFC107;

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-menu{

    padding:0;

    margin:0;

}

.footer-menu li{

    margin-bottom:12px;

}

.footer-menu a{

    color:#D1D5DB;

    transition:.3s;

}

.footer-menu a:hover{

    color:#FFC107;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1F1F1F;

    color:white;

    transition:.3s;

}

.footer-social a:hover{

    background:#FFC107;

    color:#111;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#888;

}

/*==========================================================
    CARD
==========================================================*/

.card-custom{

    background:white;

    border-radius:20px;

    border:none;

    box-shadow:var(--shadow);

    overflow:hidden;

}

.card-header-custom{

    padding:20px 25px;

    font-size:20px;

    font-weight:700;

    border-bottom:1px solid var(--border);

}

.card-body-custom{

    padding:25px;

}

/*==========================================================
    FORM
==========================================================*/

.form-control-custom{

    width:100%;

    height:52px;

    border:1px solid var(--border);

    border-radius:14px;

    padding:0 18px;

    transition:.3s;

}

.form-control-custom:focus{

    border-color:#FFC107;

    box-shadow:0 0 0 4px rgba(255,193,7,.15);

}

textarea.form-control-custom{

    height:130px;

    padding-top:15px;

    resize:none;

}

/*==========================================================
    SELECT
==========================================================*/

.select-custom{

    width:100%;

    height:52px;

    border-radius:14px;

    border:1px solid var(--border);

    padding:0 18px;

}

/*==========================================================
    TABLE
==========================================================*/

.table-custom{

    width:100%;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.table-custom thead{

    background:#121212;

    color:white;

}

.table-custom th{

    padding:18px;

    font-weight:600;

}

.table-custom td{

    padding:18px;

    vertical-align:middle;

}

.table-custom tbody tr{

    transition:.3s;

}

.table-custom tbody tr:hover{

    background:#FFF9E6;

}

/*==========================================================
    ALERT
==========================================================*/

.alert-custom{

    padding:18px;

    border-radius:16px;

    margin-bottom:20px;

}

.alert-success{

    background:#E8FFF2;

    color:#0F9D58;

}

.alert-warning{

    background:#FFF4D7;

    color:#B77900;

}

.alert-danger{

    background:#FFE8E8;

    color:#D32F2F;

}

/*==========================================================
    MODAL
==========================================================*/

.modal-content{

    border:none;

    border-radius:22px;

    overflow:hidden;

}

.modal-header{

    background:#121212;

    color:white;

    border:none;

}

.modal-header .btn-close{

    filter:invert(1);

}

.modal-footer{

    border:none;

}

/*==========================================================
    TOAST
==========================================================*/

.toast{

    border:none;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.toast-header{

    background:#121212;

    color:white;

}

/*==========================================================
    BREADCRUMB
==========================================================*/

.breadcrumb{

    margin-bottom:25px;

}

.breadcrumb-item a{

    color:#777;

}

.breadcrumb-item.active{

    color:#FFC107;

}

/*==========================================================
    TAG
==========================================================*/

.tag{

    display:inline-flex;

    align-items:center;

    padding:8px 14px;

    border-radius:30px;

    background:#FFF8DD;

    color:#B77900;

    font-size:13px;

    margin:5px;

}

/*==========================================================
    DIVIDER
==========================================================*/

.divider{

    width:100%;

    height:1px;

    background:#E5E7EB;

    margin:30px 0;

}

/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:767px){

.footer{

padding-bottom:100px;

}

.card-header-custom{

font-size:18px;

}

.table-custom{

display:block;

overflow-x:auto;

}

}
/*==========================================================
    PART 05
    PREMIUM UI
==========================================================*/

/*==========================================================
    LOADER
==========================================================*/

.page-loader{

    position:fixed;
    inset:0;
    background:#121212;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:.4s;

}

.page-loader.hide{

    opacity:0;
    visibility:hidden;

}

.loader-circle{

    width:70px;
    height:70px;
    border-radius:50%;
    border:5px solid rgba(255,255,255,.15);
    border-top-color:#FFC107;
    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*==========================================================
    SHIMMER
==========================================================*/

.shimmer{

    position:relative;
    overflow:hidden;
    background:#ececec;

}

.shimmer::before{

    content:"";
    position:absolute;
    inset:0;
    transform:translateX(-100%);
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );
    animation:shimmer 1.4s infinite;

}

@keyframes shimmer{

    100%{

        transform:translateX(100%);

    }

}

/*==========================================================
    PRODUCT SKELETON
==========================================================*/

.product-skeleton{

    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.skeleton-image{

    width:100%;
    aspect-ratio:1;
    background:#e5e5e5;

}

.skeleton-title{

    width:85%;
    height:18px;
    margin:18px;
    border-radius:8px;
    background:#e5e5e5;

}

.skeleton-text{

    width:60%;
    height:14px;
    margin:18px;
    border-radius:8px;
    background:#e5e5e5;

}

.skeleton-price{

    width:45%;
    height:24px;
    margin:18px;
    border-radius:8px;
    background:#e5e5e5;

}

/*==========================================================
    EMPTY STATE
==========================================================*/

.empty-state{

    padding:80px 20px;
    text-align:center;

}

.empty-state img{

    width:180px;
    margin:auto;

}

.empty-state h4{

    margin-top:25px;
    font-weight:700;

}

.empty-state p{

    color:var(--muted);
    margin-top:10px;

}

/*==========================================================
    FLOATING BUTTON
==========================================================*/

.floating-rfq{

    position:fixed;
    right:25px;
    bottom:160px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#FFC107;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;

}

.floating-rfq:hover{

    transform:translateY(-6px);

}

/*==========================================================
    GLASS CARD
==========================================================*/

.glass{

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.2);

}

/*==========================================================
    HOVER GLOW
==========================================================*/

.hover-glow{

    transition:.35s;

}

.hover-glow:hover{

    box-shadow:
        0 0 0 2px #FFC107,
        0 20px 40px rgba(255,193,7,.25);

}

/*==========================================================
    IMAGE ZOOM
==========================================================*/

.image-zoom{

    overflow:hidden;

}

.image-zoom img{

    transition:.45s;

}

.image-zoom:hover img{

    transform:scale(1.08);

}

/*==========================================================
    FADE UP
==========================================================*/

.fade-up{

    opacity:0;
    transform:translateY(40px);
    transition:.6s;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

/*==========================================================
    SCALE
==========================================================*/

.scale{

    transition:.3s;

}

.scale:hover{

    transform:scale(1.03);

}

/*==========================================================
    PULSE
==========================================================*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(255,193,7,.6);

    }

    70%{

        box-shadow:0 0 0 18px rgba(255,193,7,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(255,193,7,0);

    }

}

/*==========================================================
    BADGE ANIMATION
==========================================================*/

.badge-ready,
.badge-preorder,
.badge-verified{

    transition:.3s;

}

.badge-ready:hover,
.badge-preorder:hover,
.badge-verified:hover{

    transform:scale(1.08);

}

/*==========================================================
    SWIPER
==========================================================*/

.swiper{

    width:100%;

}

.swiper-pagination-bullet{

    width:10px;
    height:10px;
    background:white;
    opacity:.4;

}

.swiper-pagination-bullet-active{

    width:28px;
    border-radius:30px;
    background:#FFC107;
    opacity:1;

}

.swiper-button-prev,
.swiper-button-next{

    width:48px;
    height:48px;
    border-radius:50%;
    background:white;
    color:#111;
    box-shadow:var(--shadow);

}

.swiper-button-prev::after,
.swiper-button-next::after{

    font-size:20px;

}

/*==========================================================
    SCROLL PROGRESS
==========================================================*/

.scroll-progress{

    position:fixed;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:#FFC107;
    z-index:99999;

}

/*==========================================================
    SEARCH CHIP
==========================================================*/

.filter-chip{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:white;
    border:1px solid var(--border);
    border-radius:30px;
    padding:8px 14px;
    margin:5px;
    cursor:pointer;
    transition:.3s;

}

.filter-chip:hover{

    background:#FFC107;
    color:#111;

}

.filter-chip.active{

    background:#111;
    color:#FFC107;
    border-color:#111;

}

/*==========================================================
    TOOLTIP
==========================================================*/

.tooltip-custom{

    position:absolute;
    background:#111;
    color:white;
    padding:8px 14px;
    border-radius:10px;
    font-size:13px;
    opacity:0;
    visibility:hidden;
    transition:.3s;

}

.has-tooltip:hover .tooltip-custom{

    opacity:1;
    visibility:visible;

}

/*==========================================================
    STICKY FILTER
==========================================================*/

.sticky-filter{

    position:sticky;
    top:100px;

}

/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.floating-rfq{

    right:20px;
    bottom:95px;

}

.swiper-button-prev,
.swiper-button-next{

    display:none;

}

}

@media(max-width:767px){

.scroll-progress{

    height:3px;

}

.floating-rfq{

    width:52px;
    height:52px;
    font-size:22px;

}

.empty-state{

    padding:50px 20px;

}

}
/*==========================================================
    PART 06
    FINAL POLISH
==========================================================*/

/*==========================================================
    CSS VARIABLES
==========================================================*/

.rounded-sm{border-radius:8px!important;}
.rounded-md{border-radius:12px!important;}
.rounded-lg{border-radius:18px!important;}
.rounded-xl{border-radius:24px!important;}

.shadow-sm{
    box-shadow:0 5px 15px rgba(0,0,0,.06)!important;
}

.shadow-md{
    box-shadow:0 10px 25px rgba(0,0,0,.10)!important;
}

.shadow-lg{
    box-shadow:0 20px 45px rgba(0,0,0,.16)!important;
}

/*==========================================================
    DISPLAY
==========================================================*/

.d-flex-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.flex-column{
    display:flex;
    flex-direction:column;
}

.flex-wrap{
    flex-wrap:wrap;
}

/*==========================================================
    GAP
==========================================================*/

.gap-5{gap:5px;}
.gap-10{gap:10px;}
.gap-15{gap:15px;}
.gap-20{gap:20px;}
.gap-25{gap:25px;}
.gap-30{gap:30px;}

/*==========================================================
    SPACING
==========================================================*/

.mt-10{margin-top:10px;}
.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}

.mb-10{margin-bottom:10px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}

.pt-40{padding-top:40px;}
.pt-60{padding-top:60px;}
.pb-40{padding-bottom:40px;}
.pb-60{padding-bottom:60px;}

/*==========================================================
    TEXT
==========================================================*/

.text-primary-custom{

    color:#FFC107!important;

}

.text-dark-custom{

    color:#121212!important;

}

.text-muted-custom{

    color:#6B7280!important;

}

.text-white-custom{

    color:#FFF!important;

}

.fw-500{

    font-weight:500;

}

.fw-600{

    font-weight:600;

}

.fw-700{

    font-weight:700;

}

.fw-800{

    font-weight:800;

}

/*==========================================================
    BACKGROUND
==========================================================*/

.bg-primary-custom{

    background:#FFC107!important;

}

.bg-dark-custom{

    background:#121212!important;

}

.bg-light-custom{

    background:#F5F5F5!important;

}

.bg-white-custom{

    background:#FFFFFF!important;

}

/*==========================================================
    BORDER
==========================================================*/

.border-custom{

    border:1px solid var(--border);

}

.border-primary{

    border:1px solid #FFC107;

}

/*==========================================================
    HOVER EFFECT
==========================================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-8px);

}

.hover-scale{

    transition:.35s;

}

.hover-scale:hover{

    transform:scale(1.05);

}

.hover-shadow{

    transition:.35s;

}

.hover-shadow:hover{

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

/*==========================================================
    TRANSITION
==========================================================*/

.transition{

    transition:.3s ease;

}

/*==========================================================
    OPACITY
==========================================================*/

.opacity-50{

    opacity:.5;

}

.opacity-75{

    opacity:.75;

}

/*==========================================================
    OBJECT FIT
==========================================================*/

.object-cover{

    object-fit:cover;

}

.object-contain{

    object-fit:contain;

}

/*==========================================================
    IMAGE
==========================================================*/

.img-cover{

    width:100%;
    height:100%;
    object-fit:cover;

}

.img-rounded{

    border-radius:20px;

}

/*==========================================================
    LINE CLAMP
==========================================================*/

.line-1{

    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;

}

.line-2{

    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

}

.line-3{

    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

}

/*==========================================================
    HIDE SCROLLBAR
==========================================================*/

.no-scrollbar{

    -ms-overflow-style:none;
    scrollbar-width:none;

}

.no-scrollbar::-webkit-scrollbar{

    display:none;

}

/*==========================================================
    SEARCH AUTOCOMPLETE
==========================================================*/

.search-result{

    position:absolute;
    top:100%;
    left:0;
    right:0;

    background:white;

    border-radius:0 0 18px 18px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    display:none;

    z-index:999;

}

.search-result.show{

    display:block;

}

.search-result-item{

    padding:15px 20px;

    cursor:pointer;

    transition:.25s;

}

.search-result-item:hover{

    background:#FFF8DD;

}

/*==========================================================
    OFFCANVAS
==========================================================*/

.offcanvas{

    border:none;

}

.offcanvas-body{

    padding:25px;

}

/*==========================================================
    ACCORDION
==========================================================*/

.accordion-item{

    border:none;

    border-radius:16px!important;

    margin-bottom:12px;

    overflow:hidden;

}

.accordion-button{

    background:white;

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:#FFF8DD;

    color:#111;

}

/*==========================================================
    PRINT
==========================================================*/

@media print{

    .topbar,
    .mobile-bottom,
    .btn-yellow,
    .btn-outline,
    .floating-rfq,
    .back-to-top{

        display:none!important;

    }

    body{

        background:white;

    }

}

/*==========================================================
    LARGE DESKTOP
==========================================================*/

@media(min-width:1600px){

.container{

    max-width:1550px;

}

.hero-banner-wrapper{

    height:560px;

}

.product-grid{

    grid-template-columns:repeat(6,1fr);

}

}

/*==========================================================
    LAPTOP
==========================================================*/

@media(max-width:1400px){

.hero h1{

    font-size:52px;

}

}

/*==========================================================
    TABLET
==========================================================*/

@media(max-width:991px){

.section{

    margin-top:35px;

}

.hero-banner-wrapper{

    height:300px;

}

}

/*==========================================================
    MOBILE
==========================================================*/

@media(max-width:767px){

body{

    padding-bottom:80px;

}

.hero-banner-wrapper{

    height:180px;

}

.product-grid{

    gap:12px;

}

.section{

    margin-top:30px;

}

.section-header{

    margin-bottom:15px;

}

}

/*==========================================================
    SMALL MOBILE
==========================================================*/

@media(max-width:480px){

.container,
.container-custom{

    padding:0 15px;

}

.hero h1{

    font-size:26px;

}

.section-title{

    font-size:20px;

}

.search-box{

    height:46px;

}

.product-price{

    font-size:18px;

}

}

/*==========================================================
    ACCESSIBILITY
==========================================================*/

:focus-visible{

    outline:3px solid rgba(255,193,7,.5);

    outline-offset:3px;

}

::selection{

    background:#FFC107;

    color:#111;

}

/*==========================================================
    END OF FILE
==========================================================*/