/* استایل اصلی افزونه Simple Fast Cart */
.simple-fast-cart-container {
    position: relative;
    display: inline-block;
    z-index: 100;
}

/* دکمه سبد خرید */
.simple-fast-cart-btn {
    display: flex;
    align-items: center;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.simple-fast-cart-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.simple-fast-cart-icon {
    margin-left: 8px;
    font-size: 20px;
}

.simple-fast-cart-count {
    background: #ffd166;
    color: #333;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-weight: bold;
    font-size: 14px;
}

.simple-fast-cart-text {
    margin-right: 8px;
}

/* سایدبار سبد خرید - ارتفاع کمتر برای نمایش کامل */
.simple-fast-cart-sidebar {
    position: fixed;
    top: 45px; /* فاصله از بالا */
    right: -100%;
    width: 380px;
    height: calc(100vh - 60px); /* ارتفاع کمتر برای نمایش کامل */
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 100001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
}

.simple-fast-cart-sidebar.active {
    right: 20px; /* فاصله از راست */
}

/* هدر سایدبار */
.simple-fast-cart-header {
    padding: 20px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    flex-shrink: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.simple-fast-cart-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
}

.simple-fast-cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.simple-fast-cart-close:hover {
    color: #e74c3c;
}

/* آیتم های سبد خرید */
.simple-fast-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.simple-fast-cart-empty {
    text-align: center;
    color: #95a5a6;
    padding: 40px 20px;
    font-style: italic;
    font-size: 16px;
}

.simple-fast-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
}

.simple-fast-cart-item-image {
    width: 60px;
    margin-left: 15px;
    flex-shrink: 0;
}

.simple-fast-cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.simple-fast-cart-item-details {
    flex: 1;
}

.simple-fast-cart-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #2c3e50;
}

.simple-fast-cart-item-details h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.simple-fast-cart-item-details h4 a:hover {
    color: #4CAF50;
}

.simple-fast-cart-item-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 3px;
}

.simple-fast-cart-item-quantity {
    color: #7f8c8d;
    font-size: 12px;
}

.simple-fast-cart-item-remove {
    align-self: flex-start;
}

.simple-fast-cart-item-remove a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 20px;
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    transition: color 0.3s ease;
}

.simple-fast-cart-item-remove a:hover {
    color: #e74c3c;
}

/* فوتر سایدبار */
.simple-fast-cart-footer {
    padding: 20px;
    border-top: 2px solid #ecf0f1;
    background: #f8f9fa;
    flex-shrink: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.simple-fast-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* دکمه مشاهده محصولات - متن مشکی */
.simple-fast-cart-view-products {
    background: #3498db;
    color: #000000 !important; /* متن مشکی */
    text-decoration: none;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid #2980b9;
}

.simple-fast-cart-view-products:hover {
    background: #2980b9;
    color: #000000 !important; /* متن مشکی */
    transform: translateY(-2px);
}

/* دکمه پرداخت - متن مشکی */
.simple-fast-cart-checkout {
    background: #27ae60;
    color: #000000 !important; /* متن مشکی */
    text-decoration: none;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid #229954;
}

.simple-fast-cart-checkout:hover {
    background: #229954;
    color: #000000 !important; /* متن مشکی */
    transform: translateY(-2px);
}

/* overlay */
.simple-fast-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: none;
}

.simple-fast-cart-overlay.active {
    display: block;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .simple-fast-cart-sidebar {
        width: 90%;
        right: -90%;
        top: 20px;
        height: calc(100vh - 30px);
        right: -100%;
    }
    
    .simple-fast-cart-sidebar.active {
        right: 5%;
    }
    
    .simple-fast-cart-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .simple-fast-cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-fast-cart-item-image {
        margin-left: 0;
        margin-bottom: 10px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .simple-fast-cart-sidebar {
        width: 94%;
        right: -94%;
        top: 15px;
        height: calc(100vh - 20px);
    }
    
    .simple-fast-cart-sidebar.active {
        right: 3%;
    }
    
    .simple-fast-cart-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .simple-fast-cart-icon {
        font-size: 18px;
    }
    
    .simple-fast-cart-count {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .simple-fast-cart-header {
        padding: 15px;
    }
    
    .simple-fast-cart-footer {
        padding: 15px;
    }
    
    .simple-fast-cart-items {
        padding: 15px;
    }
    
    .simple-fast-cart-view-products,
    .simple-fast-cart-checkout {
        padding: 12px;
        font-size: 14px;
    }
}