/* Write your custom CSS here */
.zoom_img:hover {
    transform: scale(3.5); /* (250% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:85px; /* default is 40 */
    right:25px; /* default is 40 */
    background-color:#e61737;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
    margin-top:16px;
}


/*Css for content breakdown*/
.about-content h1,
.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content ul,
.about-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-content hr {
    margin: 2rem 0;
    border-top: 2px solid #e0e0e0;
}

.about-content strong {
    font-weight: 600;
}

.about-content a {
    color: #ff6b35;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

/*Product Images*/
.product-card-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
