.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    font-size: 24px; /* Bigger icon */
    padding: 10px;
    background: #2ecc71;
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: #27ae60;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    display: none;
}

#cart-modal {
    display: none;
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 1000;
    width: 80%;
    max-width: 800px;
    height: 80vh;
    max-height: 800px;
    overflow-y: auto;
}

.cart-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    padding: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    margin: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.cart-item-details p {
    margin: 0;
    color: #666;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity-controls button {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 4px;
}

.cart-total {
    padding: 16px;
    border-top: 1px solid #eee;
    text-align: right;
}

.checkout-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
}

.checkout-btn:hover {
    background: #27ae60;
}

#cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

.add-to-cart-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.add-to-cart-btn:hover {
    background: #27ae60;
}