﻿* {
    color: black;
   
    margin: 0;
    padding: 0;
}

/* Common Styles */
.standard-size {
    width: 200px;
    height: 250px;
}


.price-options {
    display: flex;
    flex-wrap: wrap; /* For flexibility */
    gap: 2%;
}

.form-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Filter Section */
#sidebar_filters {
    background-color: #f8f9fa;
   
    
   
    
}

.card {
    background-color: #ffffff;
    border-radius: 1px;
    width:75%;
    margin-bottom: 1rem; /* Use rem for better scaling */
}

.card-body {
    padding: 1.5rem; /* Use rem for better scaling */
    width: 100%;
}


.form-selector {
    display: inline-block;
    margin-right: 10px;
}

    .form-selector input[type="checkbox"] {
        display: none;
    }

    .form-selector i {
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid #ffffff;
    }

    .form-selector input[type="checkbox"]:checked + i {
        border-color: #377dff;
        box-shadow: 0 0 5px rgba(55, 125, 255, 0.3);
    }

/* styles.css */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 30px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
    .responsive-figure img {
        width: 100%;
        height: auto;
    }
    .fnt {
        font-size: 21px !important;
        font-weight: 600;
    }

    .fnt-p {
        font-size: 27px !important;
        font-weight: 800;
    }
    .figure-frame img {
        width: 300px; /* You can set this to 100% if you want the image to take full width */
        margin: 0 auto; /* Centers the image */
    }

    .figure-frame {
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
    }
    .standard-size {
        width: 400px;
        height: 450px;
    }
    .wi {
        width: 400px;
    }
    
}

/* for sidebar toggle */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.fnt {
    font-size: 13px;
}

.fnt-p {
    font-size: 20px;
}



@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
    .fnt {
        font-size: 25px !important;
        font-weight: 600;
    }

    .fnt-p {
        font-size: 27px !important;
        font-weight: 800;
    }
    .standard-size {
        width: 400px;
        height: 450px;
    }

    .wi {
        width: 400px;
    }
}

    .btn-toggle:hover,
    .btn-toggle:focus {
        text-decoration: none;
    }