/* Cart Side Menu Styles */

/* Cart Icon in Header */
#cart-icon-link .cart-circle {
    width: 54px !important;
    height: 54px !important;
    background: #2980b9;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#cart-icon {
    width: 32px !important;
    height: 32px !important;
    display: block;
}

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

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

/* Cart Side Menu */
.cart-side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-side-menu.active {
    right: 0;
}

/* Cart Header */
.cart-header {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.cart-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cart Content */
.cart-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cart-icon-large {
    font-size: 4em;
    margin-bottom: 32px;
    color: #bdc3c7;
}

/* Cart Items List */
.cart-items-list {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 18px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.cart-item {
    background: #f8faff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 18px 18px 14px 18px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    transition: box-shadow 0.18s, background 0.18s;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.cart-item-title {
    font-weight: 700;
    color: #22334a;
    font-size: 1.13em;
    margin-bottom: 2px;
}

.cart-item-price {
    color: #38d39f;
    font-weight: 700;
    font-size: 1.08em;
}

/* Remove Item Button */
.remove-item {
    background: #ff5a5f;
    color: #fff;
    border: none;
    padding: 7px 13px 7px 11px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(255,90,95,0.10);
}

.remove-item:hover {
    background: #d32f2f;
}

.remove-item svg {
    margin-right: 4px;
}

/* Cart Summary */
.cart-summary {
    margin-top: 18px;
    background: linear-gradient(90deg, #38d39f 0%, #4f8cff 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    padding: 24px 0 16px 0;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.summary-label {
    font-size: 1.18em;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.total-amount {
    font-size: 2.1em;
    font-weight: 800;
    margin: 10px 0 0 0;
    letter-spacing: 0.01em;
}

/* Cart Checkout Button */
.cart-checkout-btn {
    background: linear-gradient(90deg, #2980b9 0%, #38d39f 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 1.18em;
    font-weight: 700;
    cursor: pointer;
    margin: 24px auto 0 auto;
    width: 100%;
    max-width: 220px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    display: block;
}

.cart-checkout-btn:hover {
    background: linear-gradient(90deg, #38d39f 0%, #2980b9 100%);
    transform: translateY(-2px) scale(1.03);
}

/* Cart Messages */
.cart-message {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.cart-description {
    font-size: 1em;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Cart Signup Button */
.cart-signup-btn {
    background: #2980b9;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cart-signup-btn:hover {
    background: #1c598a;
}

/* Responsive Design */
@media (max-width: 480px) {
    .cart-side-menu {
        width: 100%;
        right: -100%;
    }
    
    .cart-content {
        padding: 20px 0 0 0;
    }
    
    .cart-items-list, .cart-summary {
        max-width: 98vw;
    }
    
    .cart-content {
        padding: 20px;
    }
    
    .cart-message {
        font-size: 1.1em;
    }
} 