/* TECHNO FARM - Shopping Cart Styles */

/* Cart Button Styles */
.techno-farm-cart-btn,
.techno-farm-mobile-cart-btn {
    position: relative;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.techno-farm-cart-btn:hover,
.techno-farm-mobile-cart-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    color: white;
}

.techno-farm-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
    min-width: 20px;
}

.techno-farm-mobile-cart-btn {
    padding: 8px 12px;
}

.techno-farm-mobile-cart-btn .techno-farm-cart-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
}

/* Cart Offcanvas Styles */
.techno-farm-cart-offcanvas {
    width: 400px !important;
    max-width: 90vw;
}

.techno-farm-cart-offcanvas .offcanvas-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-bottom: none;
}

.techno-farm-cart-offcanvas .offcanvas-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.techno-farm-cart-offcanvas .btn-close {
    filter: invert(1);
}

.techno-farm-cart-offcanvas .offcanvas-body {
    padding: 1rem;
    background: #f8f9fa;
}

/* Cart Item Styles */
.techno-farm-cart-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.techno-farm-cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.techno-farm-cart-item img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.techno-farm-cart-item h6 {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #333;
}

.techno-farm-quantity-controls-mini {
    display: flex;
    align-items: center;
    gap: 5px;
}

.techno-farm-quantity-controls-mini .btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
}

.techno-farm-quantity-controls-mini .btn:hover {
    transform: scale(1.1);
}

.techno-farm-cart-item .btn-outline-danger {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.techno-farm-cart-item .btn-outline-danger:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.1);
}

/* Cart Summary Styles */
.techno-farm-cart-summary {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.techno-farm-cart-summary strong {
    font-size: 1.1rem;
}

#cart-total {
    font-size: 1.2rem;
    color: #28a745 !important;
}

/* Cart Actions Styles */
.techno-farm-cart-actions .btn {
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.techno-farm-cart-actions .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
}

.techno-farm-cart-actions .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(40, 167, 69, 0.4);
}

.techno-farm-cart-actions .btn-outline-secondary {
    border-width: 2px;
    color: #6c757d;
}

.techno-farm-cart-actions .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-1px);
}

/* Empty Cart Styles */
.techno-farm-empty-cart {
    background: white;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.techno-farm-empty-cart .fas {
    margin-bottom: 20px;
    opacity: 0.6;
}

.techno-farm-empty-cart h5 {
    margin-bottom: 10px;
}

.techno-farm-empty-cart .btn {
    border-radius: 25px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    font-weight: 600;
}

.techno-farm-empty-cart .btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
}

/* Loading Styles */
#cart-loading {
    background: white;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#cart-loading .spinner-border {
    width: 2rem;
    height: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .techno-farm-cart-offcanvas {
        width: 350px !important;
    }
    
    .techno-farm-cart-item img {
        height: 50px;
    }
    
    .techno-farm-cart-item h6 {
        font-size: 0.85rem;
    }
    
    .techno-farm-quantity-controls-mini .btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .techno-farm-cart-item .btn-outline-danger {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .techno-farm-cart-offcanvas {
        width: 100vw !important;
    }
}

/* Animation for adding items */
@keyframes cartBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.cart-item-added {
    animation: cartBounce 0.6s ease-in-out;
}

/* Cart badge pulse animation */
@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.techno-farm-cart-badge.updated {
    animation: badgePulse 0.4s ease-in-out;
}

/* Quantity input styles for product detail page */
.techno-farm-qty-input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
}

.techno-farm-qty-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.techno-farm-qty-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.techno-farm-qty-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: scale(1.05);
    color: white;
}

.techno-farm-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.techno-farm-add-to-cart-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
}

.techno-farm-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(40, 167, 69, 0.4);
    color: white;
}

.techno-farm-add-to-cart-btn:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
} 