 
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}





/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
}

.cart-content {
    padding: 1.5rem;
}

.close-cart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item .remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-total {
    padding: 1.5rem 0;
    text-align: right;
    font-size: 1.2rem;
    border-top: 2px solid #2c3e50;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.checkout-btn:hover {
    background: #219653;
}

/* Danger Button */
.btn-danger {
    background-color: #f44336;
    color: white;
}

.btn-danger:hover {
    background-color: #d32f2f;
}

/* Contact Section */

/* WhatsApp Floating */

/* Footer Links */


/* Pagination */


/* Search Bar */


/* ✅ Extra Mobile Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .book-grid {
        grid-template-columns: 1fr;
        padding: 1rem 2rem;
    }

    .book-card {
        padding: 1rem;
    }

    .search-bar input[type="text"] {
        width: 200px;
        font-size: 14px;
    }

    .search-bar button {
        padding: 10px 14px;
        font-size: 14px;
    }

    .cart-modal {
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    footer {
        font-size: 14px;
        padding: 15px;
    }
}
