/* ساختار کلی */
.custom-pro-cart-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.custom-cart-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    position: relative;
}

.custom-cart-count {
    position: absolute;
    top: -8px;
    left: -10px;
    background: #d32f2f;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.custom-cart-count.empty { display: none; }

/* پنجره مینی کارت */
.custom-mini-cart {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    padding-top: 15px; /* پل هاور */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.custom-pro-cart-wrapper:hover .custom-mini-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-inner-content {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.mini-cart-header {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
    text-align: right;
    background: #fafafa;
}

.mini-cart-title { font-weight: bold; color: #444; font-family: inherit; }

/* لیست محصولات */
.widget_shopping_cart_content { padding: 15px; }
.woocommerce-mini-cart-item {
    display: flex !important;
    align-items: center;
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f9f9f9;
    text-align: right;
    position: relative;
}

.woocommerce-mini-cart-item img {
    width: 55px !important;
    height: 55px !important;
    object-fit: cover;
    margin-left: 12px !important;
    border-radius: 4px;
    order: 2;
}

.woocommerce-mini-cart-item a:not(.remove) {
    order: 1;
    flex: 1;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

/* دکمه‌های پایین مینی کارت */
.woocommerce-mini-cart__buttons {
    display: flex !important;
    gap: 10px;
    margin-top: 15px;
}

.woocommerce-mini-cart__buttons a {
    flex: 1;
    text-align: center !important;
    padding: 12px 5px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

/* اصلاح دکمه مشاهده سبد خرید */
.woocommerce-mini-cart__buttons a.button:not(.checkout) {
    background-color: #f5f5f5 !important;
    color: #333 !important;
}

.woocommerce-mini-cart__buttons a.button:not(.checkout):hover {
    background-color: #e2e2e2 !important;
}

/* اصلاح دکمه تسویه حساب و هاور آن */
.woocommerce-mini-cart__buttons a.checkout {
    background-color: #d32f2f !important; /* رنگ اصلی دکمه */
    color: #fff !important;
}

.woocommerce-mini-cart__buttons a.checkout:hover {
    background-color: #b71c1c !important; /* رنگ تیره‌تر موقع هاور */
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.woocommerce-mini-cart__total {
    text-align: right;
    padding: 12px 0;
    border-top: 1px solid #eee;
    font-weight: bold;
}