/********************************
        PAGE HERO
********************************/

.page-hero{
position:relative;
overflow:hidden;
padding:30px 25px;
margin:0px auto 40px;
text-align:center;
background:var(--primary);
border:1px solid #e9ddd0;
}



.page-hero-content{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
}

.page-hero-title{
font-size:46px;
font-weight:800;
line-height:1.4;
color:#342b25;
margin:0 0 22px;
}

.page-hero-breadcrumb{
display:inline-flex;
align-items:center;
justify-content:center;
gap:14px;
padding:12px 26px;
background:rgba(255,255,255,.75);
backdrop-filter:blur(10px);
border:1px solid #eadfd2;
border-radius:50px;
font-size:15px;
}

.page-hero-breadcrumb a{
text-decoration:none;
color:#8b715d;
transition:.3s;
}

.page-hero-breadcrumb a:hover{
color:var(--primary);
}

.page-hero-breadcrumb span{
width:7px;
height:7px;
border-radius:50%;
background:var(--primary);
}

.page-hero-breadcrumb strong{
font-weight:700;
color:#3b3028;
}
.wishlist-wrapper {
    margin: 0 20px 30px;
}

.wishlist-wrapper .my-wishlist-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

/* کارت */
.wishlist-wrapper .wishlist-item {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 30px 40px 25px;
    text-align: center;
    transition: 0.3s;
}

.wishlist-wrapper .wishlist-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* باکس حذف بالا وسط */
.wishlist-wrapper .wishlist-remove {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.wishlist-wrapper .wishlist-remove:hover {
    color: #000;
}

/* آیکن ضربدر */
.wishlist-wrapper .remove-icon {
    font-size: 16px;
    line-height: 1;
}

/* تصویر بزرگ‌تر */
.wishlist-wrapper .wishlist-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

/* عنوان */
.wishlist-wrapper .wishlist-title {
    font-size: 15px;
    margin-bottom: 10px;
    min-height: 45px;
    color: black;
}

/* قیمت تخفیف */
.wishlist-price {
    margin-top: 10px;
}

.wishlist-price .price-old {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
}

.wishlist-price .price-new {
    color: #151515;
    font-weight: 700;
    font-size: 17px;
}

.wishlist-wrapper a {
    text-decoration: none !important;
}

.wishlist-add-to-cart {
    margin-top: 15px;
    text-align: center;
}

.wishlist-add-to-cart .button {
    background-color: #bdac7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.wishlist-add-to-cart .button:hover {
    background-color: #ab0000;
}
/*-----------------------
      Empty Wishlist
-----------------------*/

.wishlist-wrapper{
    max-width:1400px;
    margin:40px auto 70px;
    padding:0 20px;
}

.wishlist-wrapper h2{
    text-align:center;
    font-size:34px;
    margin-bottom:35px;
    color:#332b25;
}

.wishlist-wrapper .empty{
    max-width:650px;
    margin:60px auto;
    padding:20px 30px;
    background:#fff;
    border:1px solid #e7ddd2;
    border-radius:26px;
    text-align:center;
    font-size:20px;
    color:#6f6155;
    box-shadow:0 18px 40px rgba(0,0,0,.05);
    position:relative;
}

.wishlist-wrapper .empty::before{
    content:"♡";
    display:block;
    font-size:70px;
    color:#c9b59b;
    margin-bottom:20px;
    line-height:1;
}

.empty-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.empty-btn:hover{
    transform:translateY(-3px);
    background:#8d745e;
    color:#fff;
}
@media(max-width:768px){

    .wishlist-wrapper{
        padding:0 15px;
    }

    .wishlist-wrapper h2{
        font-size:26px;
    }

    .wishlist-wrapper .empty{
        margin:35px auto;
        padding:45px 20px;
        font-size:17px;
        border-radius:18px;
    }

    .wishlist-wrapper .empty::before{
        font-size:54px;
    }

}
 @media (max-width: 768px) {
.wishlist-wrapper .my-wishlist-list {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    list-style: none;
    padding: 0;
}
}