<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern Cart Sidebar Styles */
/* Enhanced cart design with professional aesthetics */

/* Cart Container */
form.shopping-cart {
    position: fixed;
    z-index: 10000;
    right: -380px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 380px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Custom scrollbar for cart */
form.shopping-cart::-webkit-scrollbar {
    width: 6px;
}

form.shopping-cart::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

form.shopping-cart::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: background 0.3s ease;
}

form.shopping-cart::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Cart Header */
.cart-contents {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #1f2937;
    padding: 25px 20px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-header h5 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    color: #1f2937;
}

i.close-slideout {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(31, 41, 55, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(31, 41, 55, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    line-height: 1;
    text-align: center;
    margin: 0;
    padding: 0;
}

.close-slideout:hover {
    color: #1f2937;
    background: rgba(31, 41, 55, 0.2);
    transform: scale(1.1);
}

/* Cart Items Container */
.products {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

/* Individual Product Item */
.shopping-cart .product {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.shopping-cart .product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.shopping-cart .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shopping-cart .product:hover::before {
    opacity: 1;
}

/* Product Details */
.product-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

p.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    padding: 0;
}

/* Price and Quantity Section */
.product-price-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 15px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-price-quantity .input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-quantity label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7f8c8d;
    margin: 0;
    padding: 0;
}

.product-price-quantity input {
    width: 60px;
    height: 35px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
    padding: 0 8px;
}

.product-price-quantity input:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.product-price-quantity .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0;
}

/* Remove Item Button */
.shopping-cart div.product div.item-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.shopping-cart div.product div.item-close:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: scale(1.1);
    opacity: 1;
}

.shopping-cart div.product i.fa-times {
    font-size: 0.9rem;
    color: #e74c3c;
    padding: 0;
    line-height: 1;
}

/* Checkout Section */
.btn-checkout {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Postal Code Input */
.postal-code-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-checkout label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.btn-checkout input#pcode {
    width: 100%;
    height: 45px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    background: #ffffff;
    transition: all 0.3s ease;
    padding: 0 15px;
    letter-spacing: 1px;
}

.btn-checkout input#pcode:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-checkout input#pcode::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

/* Checkout Button */
.btn-checkout button[type="submit"] {
    background: var(--secondary);
    color: #1f2937;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-checkout button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(0.95);
}

.btn-checkout button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-checkout button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-checkout button[type="submit"]:hover::before {
    left: 100%;
}

/* Subtotal Display */
div.subtotal {
    background: transparent;
    color: #2c3e50;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

div.subtotal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

div.subtotal:hover::before {
    transform: translateX(100%);
}

/* Slideout Animation */
form.slideout {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

/* Empty Cart State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #7f8c8d;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, rgba(233, 236, 239, 0.5) 100%);
    border-radius: 12px;
    margin: 20px;
    border: 2px dashed rgba(189, 195, 199, 0.3);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #bdc3c7;
    animation: cartEmptyPulse 2s ease-in-out infinite;
}

@keyframes cartEmptyPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cart-empty p {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: #95a5a6;
    font-weight: 500;
}

.cart-empty p:last-child {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 400;
}

/* Cart Icon Badge */
.cart-btn-container i.fa-shopping-cart {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-btn-container i.fa-shopping-cart:hover {
    transform: scale(1.1);
    color: #3498db;
}

.cart-btn-container i.fa-shopping-cart:after {
    content: attr(value);
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
    animation: badgePulse 0.3s ease;
    min-width: 20px;
}

@keyframes badgePulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cart-btn-container i.fa-shopping-cart[value="0"]:after {
    display: none;
}

/* Cart Icon Container Enhancement */
.cart-btn-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-btn-container:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    form.shopping-cart {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 20px 15px 15px;
    }
    
    .products {
        padding: 15px;
    }
    
    .shopping-cart .product {
        padding: 15px;
    }
    
    .btn-checkout {
        padding: 20px 15px;
    }
}

/* Loading States */
.cart-loading {
    opacity: 0.7;
    pointer-events: none;
}

.cart-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cart Item Highlight Effect */
.cart-item-highlight {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
} 

/* Cart User Info Section */
.cart-user-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.cart-user-info .user-welcome {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.cart-user-info .user-welcome i {
    color: #2c5530;
    margin-right: 8px;
    font-size: 16px;
}

.cart-user-info .user-welcome strong {
    color: #2c5530;
    font-weight: 600;
}

.cart-user-info .user-business {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 12px;
    font-style: italic;
}

.cart-user-info .btn-logout {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cart-user-info .btn-logout:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.cart-user-info .btn-logout i {
    margin-right: 6px;
    font-size: 11px;
}

/* Responsive adjustments for user info */
@media (max-width: 768px) {
    .cart-user-info {
        padding: 12px 15px;
    }
    
    .cart-user-info .user-welcome {
        font-size: 13px;
    }
    
    .cart-user-info .user-business {
        font-size: 12px;
    }
    
    .cart-user-info .btn-logout {
        padding: 6px 12px;
        font-size: 11px;
    }
} </pre></body></html>