/* =========================================================
   PRODUCTS PAGE PREMIUM CSS
========================================================= */

.product-page{
    background:#f5f7fb;
    overflow-x:hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.product-page .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* =========================================================
   HERO
========================================================= */

.product-hero{
    position:relative;
    width:92%;
    max-width:1400px;
    min-height:520px;
    margin:24px auto 0;
    border-radius:34px;
    overflow:hidden;
    display:flex;
    align-items:center;
    background-size:cover !important;
    background-position:center !important;
    box-shadow:
    0 20px 45px rgba(0,0,0,.10);
}

.product-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.72) 38%,
        rgba(0,0,0,.28) 100%
    );
    z-index:1;
}

.inner-hero-grid{
    position:relative;
    z-index:2;
    width:100%;
    padding:90px 0 80px;
}

.inner-hero-content{
    max-width:620px;
    color:#fff;
}

.inner-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:46px;
    padding:0 24px;
    border-radius:50px;
    background:#15B012;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.inner-hero-content h1{
    font-size:76px;
    line-height:1.02;
    color:#fff;
    margin-bottom:24px;
    font-weight:700;
}

.inner-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#e5e7eb;
    margin-bottom:38px;
    max-width:560px;
}

.inner-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-btn{
    height:58px;
    padding:0 34px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.primary-btn{
    background:#15B012;
    color:#fff;
}

.primary-btn:hover{
    background:#11940F;
}

.secondary-btn{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb{
    position:absolute;
    left:0;
    bottom:28px;
    width:100%;
    z-index:5;
}

.product-breadcrumb .container{
    color:#fff;
    font-size:14px;
}

.product-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

/* =========================================================
   MAIN
========================================================= */

.product-main{
    padding:50px 0 90px;
}

/* =========================================================
   PREMIUM FILTER
========================================================= */

.product-filter{
    background:#f3f6fb;
    border-radius:34px;
    padding:48px;
    margin-bottom:60px;
    box-shadow:
    0 10px 35px rgba(15,23,42,.04);
}

.product-filter h3{
    text-align:center;
    font-size:64px;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:40px;
    font-weight:800;
    letter-spacing:-2px;
}

/* =========================================================
   FILTER ROW
========================================================= */

.filter-row{
    display:flex;
    align-items:center;
    gap:22px;
    width:100%;
}

.filter-field{
    flex:1;
}

.filter-field select{
    width:100%;
    height:68px;
    border:1px solid #d7dde7;
    border-radius:18px;
    padding:0 24px;
    background:#fff;
    font-size:16px;
    font-weight:500;
    color:#111827;
    outline:none;
    transition:.3s ease;
    appearance:none;
}

.filter-field select:focus{
    border-color:#15B012;
    box-shadow:
    0 0 0 4px rgba(21,176,18,.08);
}

.filter-button-wrap{
    width:320px;
    flex-shrink:0;
}

.filter-button-wrap button{
    width:100%;
    height:68px;
    border:none;
    border-radius:18px;
    background:#000;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.filter-button-wrap button:hover{
    background:#15B012;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
    align-items:stretch;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card{
    position:relative;
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
    border:1px solid #edf2f7;
    transition:.4s ease;
    box-shadow:
    0 10px 35px rgba(15,23,42,.05);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 60px rgba(15,23,42,.12);
}

/* =========================================================
   PRODUCT IMAGE FULL FIT
========================================================= */

.product-image-wrap{

    position:relative;

    height:220px;

    overflow:hidden;

    background:#fff;

}

.product-image-wrap img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:transform .4s ease;

}

.product-card:hover .product-image-wrap img{

    transform:scale(1.03);

}

/* =========================================================
   CONTENT
========================================================= */

.product-card-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* =========================================================
   BADGE
========================================================= */

.product-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    height:34px;
    padding:0 16px;
    border-radius:50px;
    background:#ecfdf3;
    color:#15B012;
    font-size:11px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:20px;
}

/* =========================================================
   TITLE
========================================================= */

.product-card-content h3{
    font-size:30px;
    line-height:1.18;
    color:#0f172a;
    margin-bottom:16px;
    font-weight:700;
}

/* =========================================================
   CAPACITY
========================================================= */

.product-capacity{
    font-size:16px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:28px;
}

/* =========================================================
   BUTTONS
========================================================= */

.product-btn,
.product-btn-secondary{
    width:100%;
    height:56px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:.3s ease;
}

.product-btn{
    background:#111827;
    color:#fff;
    border:none;
    cursor:pointer;
    margin-bottom:14px;
}

.product-btn:hover{
    background:#15B012;
}

.product-btn-secondary{
    background:#fff;
    border:1px solid #d1d5db;
    color:#111827;
}

.product-btn-secondary:hover{
    background:#111827;
    color:#fff;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1200px){

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .inner-hero-content h1{
        font-size:58px;
    }

}

@media(max-width:992px){

    .product-hero{
        min-height:auto;
        border-radius:28px;
    }

    .inner-hero-grid{
        padding:90px 0 70px;
    }

    .inner-hero-content{
        max-width:100%;
    }

    .inner-hero-content h1{
        font-size:52px;
    }

    .filter-row{
        flex-direction:column;
    }

    .filter-field,
    .filter-button-wrap{
        width:100%;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .product-hero{
        width:94%;
        margin-top:16px;
        border-radius:24px;
    }

    .inner-hero-grid{
        padding:80px 0 60px;
    }

    .inner-tag{
        height:40px;
        padding:0 18px;
        font-size:11px;
    }

    .inner-hero-content h1{
        font-size:40px;
        line-height:1.1;
    }

    .inner-hero-content p{
        font-size:16px;
    }

    .inner-hero-buttons{
        flex-direction:column;
    }

    .hero-btn{
        width:100%;
    }

    .product-main{
        padding:40px 0 70px;
    }

    .product-filter{
        padding:28px;
        border-radius:26px;
    }

    .product-filter h3{
        font-size:42px;
        margin-bottom:28px;
    }

    .filter-row{
        flex-direction:column;
    }

    .filter-field,
    .filter-button-wrap{
        width:100%;
    }

    .filter-field select,
    .filter-button-wrap button{
        height:58px;
        border-radius:14px;
        font-size:15px;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .product-card{
        border-radius:26px;
    }

    .product-image-wrap{
        height:240px;
    }

    .product-card-content{
        padding:24px;
    }

    .product-card-content h3{
        font-size:26px;
    }

    .product-breadcrumb{
        position:relative;
        bottom:auto;
        margin-top:20px;
    }

}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.product-title{
    text-align:center;
    margin-bottom:60px;
}

.product-title h2{
    font-size:58px;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:18px;
    font-weight:800;
    letter-spacing:-1px;
}

.product-title p{
    max-width:760px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    color:#64748b;
}

/* =========================================================
   PRODUCT LINK
========================================================= */

.product-link{
    text-decoration:none;
    display:block;
    height:100%;
}

/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.product-card-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
    margin-bottom:28px;
}

/* =========================================================
   PRODUCT BUTTONS
========================================================= */

.product-card-buttons{
    margin-top:auto;
}

.product-view-btn{
    width:100%;
    height:56px;
    border-radius:18px;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    transition:.3s ease;
}

.product-card:hover .product-view-btn{
    background:#15B012;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .product-title{
        margin-bottom:40px;
    }

    .product-title h2{
        font-size:40px;
    }

    .product-title p{
        font-size:15px;
    }

}

/* =========================================================
   MOBILE HERO 
========================================================= */

@media(max-width:768px){

    .page-hero,
    .inner-hero,
    .product-hero,
    .gallery-hero{
        padding:120px 0 80px;
    }

    .page-hero-content,
    .inner-hero-content{
        padding:0 16px;
    }

    .page-hero-title,
    .inner-hero-content h1{
        margin-top:18px;
        margin-bottom:22px;
        line-height:1.08;
    }

    .page-hero-description,
    .inner-hero-content p{
        margin-bottom:28px;
    }

}

/* =========================================================
   HERO BREADCRUMB
========================================================= */

.product-hero{

    position:relative;

    padding-bottom:90px;

}

.product-breadcrumb{

    position:absolute;

    left:0;
    bottom:34px;

    width:100%;

    z-index:5;

}

.product-breadcrumb .container{

    color:#fff;

    font-size:14px;

}

.product-breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:.3s ease;

}

.product-breadcrumb a:hover{

    color:#15B012;

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .product-hero{

        padding-bottom:70px;

    }

    .product-breadcrumb{

        bottom:24px;

    }

}