body {
    padding-top: 56px;
    font-family: "Inter", sans-serif;
}

.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("/img/mainback.png") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-section-h1 {
    font-size: 3rem;
    font-weight: bold;
}

.product-grid-img {
    width: 100%;
    border-radius: 0.5rem;
}

.main-no-scroll {
    flex-grow: 1;
}

.body-no-scroll {
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
/***************************Category01**** product cards********************************/
.product-card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    height: 200px;
    object-fit: cover;
}
.product-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-card-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}
.product-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(33, 37, 41);
    margin-bottom: 0.5rem;
}
.btn-primary {
    background-color: rgb(33, 37, 41);
    border-color: rgb(33, 37, 41);
    transition:
        background-color 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        transform 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #555;
    border-color: #555;
}
/*************************Category 01 Sub 01**************************************************/
.thumbnail-image:hover {
    transform: scale(1.1);
}
.thumbnail-list {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    width: 100px;
}
.thumbnail-item {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}
.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.main-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-image {
    max-width: 100%;
    max-height: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-image-gallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .product-image-gallery {
        flex-direction: column;
        align-items: center;
    }
    .thumbnail-list {
        flex-direction: row;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .thumbnail-item {
        margin-bottom: 0;
        margin-right: 10px;
    }
}
/***********************Social icons**********************************************************/
.social-icons {
    position: fixed;
    bottom: 80px;
    display: flex;
    width: auto;
    padding-left: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(0);
    transition:
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}

.social-icons.show {
    opacity: 1;
    transform: translateY(-10px);
}

.social-icons a {
    color: #333;
    font-size: 48px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #007bff;
}
.social-icons-left {
    left: 10px;
}

.social-icons a.facebook {
    color: #1877f2;
}

.social-icons a.instagram {
    color: #e4405f;
}

#si2 {
    right: 10px;
}
