/**
 * Mini Cart CSS
 *
 * @package Floreria_Rosify
 */

/* Mini Cart Icon */
.floreria-cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
}

.floreria-cart-icon svg {
    width: 24px;
    height: 24px;
    color: #374151;
    transition: color 0.2s ease;
}

.floreria-cart-icon:hover svg {
    color: #6366f1;
}

.floreria-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.floreria-cart-count:empty,
.floreria-cart-count[data-count="0"] {
    display: none;
}

/* Mini Cart Drawer */
.floreria-mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floreria-mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.floreria-mini-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.floreria-mini-cart-drawer.active {
    transform: translateX(0);
}

/* Drawer Header */
.mini-cart-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-cart-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.mini-cart-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mini-cart-close:hover {
    background: #e5e7eb;
}

.mini-cart-close svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

/* Delivery Info Bar */
.mini-cart-delivery-info {
    padding: 12px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
}

.delivery-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.delivery-info-item svg {
    width: 16px;
    height: 16px;
}

.delivery-info-value {
    font-weight: 600;
    color: #374151;
}

/* Cart Items */
.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.mini-cart-empty svg {
    width: 64px;
    height: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.mini-cart-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.mini-cart-empty-text {
    font-size: 14px;
    color: #6b7280;
}

/* Cart Item */
.mini-cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mini-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.4;
}

.mini-cart-item-meta {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.mini-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.mini-cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

/* Quantity Controls */
.mini-cart-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    transition: all 0.15s ease;
}

.quantity-btn:hover {
    background: #6366f1;
    color: #fff;
}

.quantity-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Remove Item */
.mini-cart-item-remove {
    position: absolute;
    top: 16px;
    right: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0;
    transition: color 0.2s ease;
}

.mini-cart-item-remove:hover {
    color: #ef4444;
}

/* Cart Footer */
.mini-cart-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.mini-cart-totals {
    margin-bottom: 16px;
}

.mini-cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6b7280;
}

.mini-cart-total-row:last-child {
    margin-bottom: 0;
}

.mini-cart-total-row.total {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
}

.mini-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-cart-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    border: none;
}

.mini-cart-btn-checkout {
    background: #6366f1;
    color: #fff;
}

.mini-cart-btn-checkout:hover {
    background: #4f46e5;
    color: #fff;
}

.mini-cart-btn-cart {
    background: #f3f4f6;
    color: #374151;
}

.mini-cart-btn-cart:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Loading State */
.mini-cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mini-cart-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .floreria-mini-cart-drawer {
        width: 100%;
    }

    .mini-cart-item-image {
        width: 64px;
        height: 64px;
    }
}
