

.breadcrumb-list li a{
    color: #3510f7!important;
}



.product-card{
    margin-bottom: 120px!important;
}

/* Toast افزودن به سبد خرید */
.cart-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #16a34a;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s;
    z-index: 1060;
}

.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.cart-text-items{
    color: #fff;
}


/* ================= HOME FEATURE BAR ================= */
.home-feature-bar {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(
        135deg,
        #3f2499 0%,
        #5e38cc 55%,
        #5e18cc 100%
    );
    color: #fff;
}

/* glass overlay */
.home-feature-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
    z-index: 0;
}

.home-feature-bar .container {
    position: relative;
    z-index: 1;
}

/* ================= ROW ================= */
.home-feature-row {
    display: flex;
    align-items: stretch;
}

/* ================= CARD ================= */
.home-feature-card {
    height: 100%;
    padding: 28px 20px 30px;
    border-radius: 22px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    text-align: center;
    transition: all .35s ease;
}

/* hover */
.home-feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.22);
    box-shadow: 0 25px 45px rgba(0,0,0,.25);
}

/* ================= ICON ================= */
.home-feature-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-feature-icon img {
    width: 46px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* ================= TEXT ================= */
.home-feature-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.home-feature-subtitle {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .home-feature-bar {
        padding: 40px 0 20px;
    }

    .home-feature-card {
        margin-bottom: 20px;
    }
}

/* ================= PRODUCT CARD ================= */
.product-card {
    height: 100%;
}

.sinle-product-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    position: relative;
}

.sinle-product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(94,56,204,.18);
}

/* ---------- Product Image ---------- */
.product-thumb {
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}

.sinle-product-item:hover .product-thumb img {
    transform: scale(1.08);
}

/* ---------- Discount Badge ---------- */
.label-product {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #3f2499, #5e38cc);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(94,56,204,.35);
}

/* ---------- Product Info ---------- */
.product-info {
    padding: 16px 18px 20px;
    text-align: center;
}

/* rating */
.rating-box {
    margin-bottom: 6px;
}

.rating i {
    color: #f2c94c;
    font-size: 14px;
    margin: 0 1px;
}

/* name */
.product-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin: 6px 0 10px;
}

.product-name a {
    color: #2a2a2a;
    transition: color .3s;
}

.sinle-product-item:hover .product-name a {
    color: #5e38cc;
}

/* ---------- Price ---------- */
.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.new-price {
    color: #5e38cc;
    font-size: 16px;
    font-weight: 700;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}
