/* =========================
MODERN BREADCRUMB HERO
TH SOLUTION STYLE
========================= */

.breadcrumb-modern{
    position:relative;
    overflow:hidden;
    padding:55px 0 45px;
    background:
    linear-gradient(
        135deg,
        #fff7ed 0%,
        #ffffff 45%,
        #fffaf5 100%
    );
    border-bottom:1px solid #fde7d8;
}

/* BACKGROUND EFFECT */

.breadcrumb-modern::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(249,115,22,.06);
    border-radius:50%;
}

.breadcrumb-modern::after{
    content:'';
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    background:rgba(251,146,60,.05);
    border-radius:50%;
}

/* CONTENT */

.breadcrumb-content{
    position:relative;
    z-index:2;
}

/* BADGE */

.page-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid #fed7aa;
    color:#ea580c;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(249,115,22,.08);
}

/* TITLE */

.page-title{
    font-size:clamp(28px,3vw,46px);
    font-weight:800;
    line-height:1.4;
    color:#1e293b;
    margin-bottom:18px;
}

/* SUBTITLE */

.page-subtitle{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
    max-width:850px;
}

/* BREADCRUMB */

.theme-breadcrumb{
    padding-top:0 !important;
}

.theme-breadcrumb .breadcrumb{
    margin:0;
    padding:0;
    background:none;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.theme-breadcrumb .breadcrumb-item{
    display:flex;
    align-items:center;
    font-size:14px;
    color:#94a3b8;
}

.theme-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    content:"/";
    color:#cbd5e1;
    padding-right:10px;
}

.theme-breadcrumb .breadcrumb-item a{
    color:#ea580c !important;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

.theme-breadcrumb .breadcrumb-item a:hover{
    color:#c2410c !important;
}

.theme-breadcrumb .breadcrumb-item.active{
    color:#475569 !important;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .breadcrumb-modern{
        padding:40px 0 35px;
    }

    .page-title{
        font-size:30px;
        line-height:1.45;
    }

    .page-subtitle{
        font-size:15px;
    }

}

/* =========================
PRODUCT GRID CARD
========================= */

.product-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    position:relative;

    transition:.35s;

    box-shadow:
    0 8px 30px rgba(15,23,42,.05);

    display:flex;
    flex-direction:column;

    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 18px 45px rgba(15,23,42,.12);
}

/* STOCK */

.stock-label{
    position:absolute;
    top:18px;
    left:18px;
    z-index:2;

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;
    font-weight:700;
}

/* STOCK BADGE */

.stock-label{
    position:absolute;
    top:18px;
    left:18px;
    z-index:2;
    background:#dcfce7;
    color:#166534;
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.stock-label.in-stock{
    background:#dcfce7;
    color:#166534;
}

.stock-label.out-stock{
    background:#fee2e2;
    color:#dc2626;
}

/* IMAGE */

.product-img{
    background:#fff;

    height:280px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:35px;
}

.product-img img{
    max-width:100%;
    max-height:220px;

    object-fit:contain;

    transition:.4s;
}

.product-card:hover .product-img img{
    transform:scale(1.06);
}

/* CONTENT */

.product-content{
    padding:28px;

    display:flex;
    flex-direction:column;

    flex:1;
}

/* BRAND */

.product-brand{
    color:#f97316;

    font-size:13px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:.5px;

    margin-bottom:12px;
}

/* TITLE */

.product-title{
    font-size:18px;
    font-weight:700;

    line-height:1.65;

    color:#1e293b;

    margin-bottom:14px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:60px;
}

/* MPN */

.product-mpn{
    color:#64748b;
    font-size:14px;

    margin-bottom:22px;
}

/* PRICE */

.product-price{
    font-size:30px;
    font-weight:800;

    color:#ea580c;

    margin-top:auto;
    margin-bottom:25px;
}

.product-price span{
    font-size:14px;
    color:#64748b;
    font-weight:500;
}

/* BUTTON */

.product-btn{
    margin-top:auto;
}

.product-btn a{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:#0f172a;
    color:#fff;
    padding:15px 20px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.product-btn a:hover{
    background:#f97316;
    transform:translateY(-2px);
} 