﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.about_section {
    width: 100%;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
/*
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}
*/
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
}

.category-area {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.product-area {
    /*background-color: #eafeff1a;*/
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dbe4e6;
}

.category-img, .product-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .category-img img, .product-img img {
        width: 100%;
        height: auto;
    }

.catText{
    padding-bottom:0
}
.symbol {
    font-size: 1.5em;
    color: #a7c1dd;
    /*margin-top: 5px;*/
    margin-top: 0;
    padding-top: 0;
    line-height: 0;
}

.breadcrumb-link:hover {
    text-decoration: underline;
    color: blue;
}

#productModalImage {
    max-height: 72vh;
}







.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .overlay img {
        max-width: 100%;
        max-height: 100%;
        border: 1px solid #ddd;
        border-radius: 5px;
    }