

/* home page products section */
.add-to-cart-btn {
    background-color: #2c4964;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.add-to-cart-btn:hover {
    background-color: #B17A30;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Button Group Style */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Basic Button Styles */
.btn-filter {
    background: linear-gradient(45deg, #1a3555, #2c4964);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon Styles (if using icons) */
.btn-filter i {
    font-size: 18px; /* Icon size */
    transition: transform 0.3s ease;
}

/* Hover Effect */
.btn-filter:hover {
    transform: translateY(-3px); /* Slight upward movement */
    background: linear-gradient(45deg, #B17A30, #834710); /* Reversed gradient on hover */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

/* Active Button Style */
.btn-filter.active {
    background: #834710; /* Darker background for active state */
    box-shadow: 0px 4px 12px rgba(215, 202, 202, 0.2); /* Soft shadow */
    color: white;
    transform: scale(1.05);
}

/* Hover icon effect */
.btn-filter:hover i {
    transform: rotate(10deg); /* Icon rotation effect on hover */
}

/* Button Spacing */
.btn-group .btn {
    margin-bottom: 10px;
}


.add-to-cart-btn-2 {
    background-color: #b17a30;
    color: #fff;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn-2:hover {
    background-color: #1a2f43;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

