html {
  font-size: 20px;
}

@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.container {
    position: relative;
    text-align: center;
}

.image-container {
    position: relative;
    margin-bottom: 55px;
}

.image-with-text {
    width: 100%; /* Set the image width as needed */
    height: auto; /* Maintain aspect ratio */
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Set text color as needed */
    font-size: 1rem; /* Set font size as needed */
    font-weight: bold; /* Set font weight as needed */
}



/* Add additional styling as needed */

h1, h5, .star, .info p, .buttons button {
    margin-bottom: 30px;
}

#product-container {
    display: flex;
}




.zoom {
    width: 100%;
    height: auto;
    position: relative;
    border: 1px solid white;
    overflow: hidden;
    cursor: zoom-in;
}


/*PictureZoom*/
figure.zoom {
    background-position: 50% 50%;
    position: relative;
    border: 1px solid white;
    overflow: hidden;
    cursor: zoom-in;
}

    /*figure.zoom img:hover {
        opacity: 0;
    }*/

    figure.zoom img {
        transition: opacity 0.5s;
        display: block;
        width: 100%;
        height: 30rem;
    }
/*Slider*/


.slider img {
    width: 5rem;
    height: 5rem;
    margin-right: 0.8rem;
    cursor: pointer;
}

/*Stars*/
.rating {
    width: 9rem;
    font-size: 2rem;
    overflow: hidden;
}

    .rating input {
        float: right;
        opacity: 0;
        position: absolute;
    }

    .rating a,
    .rating label {
        float: right;
        color: #aaa;
        text-decoration: none;
        -webkit-transition: color .4s;
        -moz-transition: color .4s;
        -o-transition: color .4s;
        transition: color .4s;
    }

        .rating label:hover ~ label,
        .rating input:focus ~ label,
        .rating label:hover,
        .rating a:hover,
        .rating a:hover ~ a,
        .rating a:focus,
        .rating a:focus ~ a {
            color: orange;
            cursor: pointer;
        }


.text-price {
    color: #EA3266;
    font-size: 20px;
    font-weight: bold;
}
button {
    border-radius: 80px; /* Set border-radius to make buttons round */
    background-color: black;
    color: white;
    width: 250px;
    height: 60px;
    padding: 10px 20px; /* Adjust padding as needed */
    margin: 10px; /* Add margin for spacing between buttons */
    border: none; /* Remove default button border */
    cursor: pointer;
}

.buy-now {
    background-color: #EA3266;
    color: white;
    display: block;
    margin-top: 20px;
    /*margin-left:50px;*/
    width: 95%
}
.btn-danger:hover {
    color: #fff;
    background-color: black;
    border-color: black;
}
.btn-dark:hover {
    color: #fff;
    background-color: #EA3266;
    border-color: #EA3266;
}
.parent {
    /*border: 1px solid black;*/
    /*margin: 1rem;*/
    /*padding: 2rem 2rem;*/
    /*text-align: center;*/
}

.child2 {
    display: inline-block;
    padding-left: 50px;
    /*border: 1px solid red;*/
    /*padding: 1rem 1rem;*/
    vertical-align: middle;
    padding-bottom: 30px;
}

.child1 {
    display: inline-block;
    /*border: 1px solid red;*/
    width: 100px;
    /*padding: 1rem 1rem;*/
    vertical-align: middle;
}
.custom-button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;

    cursor: pointer;
}

/* Style for the paragraph */
.custom-paragraph {
    border: 0.5px solid #E9E9E9; /* Add borders with a black color */
    padding: 10px; /* Add padding for better visual appearance */
    margin-left: 9px; /* Add margin to separate the button and paragraph */
    margin-top: -10px; /* Add margin to separate the button and paragraph */
    font-size: 18px;
    color: #333;
}
/*.btn-white {
    margin-left: -50px;*/ /* Add margin to separate the button and paragraph */
/*}*/

.containerDesctirption {
    margin-left: 7%; /* Adjust margin for better visual appearance */
    margin-right: 7%; /* Adjust margin for better visual appearance */
}



.card {
    position: relative;
    width: 18rem;
    border: none;
    background-color: #f0f0f0;
    overflow: hidden;
}

    .card img {
        transition: filter 0.3s ease;
    }

    .card:hover img {
        filter: brightness(70%);
    }

.overlay {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* This ensures that the overlay does not interfere with button clicks */
}
.buttonsInsideImage {
    height: 30px;
    width: 30px;
    margin-bottom: 15px;
    padding-left: 4px;
    border: 1px solid #F0F0F0;
    border-radius: 100%;
}
