
/* Custom styles for smooth transitions and animations */
.nav-link {
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.nav-link:hover {
    color: #eab308; /* Tailwind Amber-500 */
    transform: scale(1.1);
}
/* Smooth logo and text animation */
.brand-logo:hover {
    transform: rotate(15deg);
}

.login-form {
    width: 300px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.cart-summary .buy-summary{
    position: fixed;
    top: 100px;
    right: 20px;
    background: #fff;
    padding: 1rem;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.total-amount {
    margin-bottom: 30px;  /* Space between the total amount and the button */
    display: none;
}






