a{
    text-decoration: none!important;
}
/* header  */
.logo-img {
    width: 120px;
}

.search-box {
    background: #f6f2ee;
    border-radius: 10px;
}

.search-box input {
    background: transparent;
}

.mobile-menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* category mobile section  */

.circle-wrap {
    width: 150px;
    height: 150px;
    border: 1px solid #b80711;
    /* Red border */
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circle-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-section img{
    max-height: 550px;
}

.product-card-img {
    max-height: 300px;
}

.fs-10 {
    font-size: 10px;
}

.new-arrivals {
    background-color: #f6f3ee;
}

.hero-section-2 {
    max-height: 1000px;
    object-fit: fill;
}

.form-container {
    max-width: 800px;
    /* Limit the width for desktop view */
    margin: 0 auto;
    background-color: white;
    padding: 0;
    /* Remove default padding for the full-width header effect */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-header {
    background-color: #b73232;
    /* Deep red header bar */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

.form-body {
    padding: 30px;
}

/* Style for the button */
.btn-custom-red {
    background-color: #b73232;
    /* Deep red button */
    border-color: #b73232;
    color: white;
    padding: 10px 30px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-custom-red:hover {
    background-color: #a02a2a;
    /* Slightly darker on hover */
    border-color: #a02a2a;
    color: white;
}

/* Customize form control focus to match Bootstrap defaults or a preferred look */
.form-control:focus {
    border-color: #b73232;
    box-shadow: 0 0 0 0.25rem rgba(183, 50, 50, 0.25);
}



/* Adjust size on small screens */
@media (max-width: 576px) {
    .circle-wrap {
        width: 70px;
        height: 70px;
    }
    
    .home-hero-section img{
    max-height: 400px;
}

    .product-card-img {
        max-height: 100px;
    }

    .product-title {
        font-size: 10px;
    }
}