.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-icons .facebook i {
    color: #1877F2;
}

.social-icons .instagram i {
    color: #E1306C;
}

.social-icons .twitter i {
    color: #000000;
}

.social-icons .youtube i {
    color: #FF0000;
}

.navbar-nav .nav-link {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}


.product-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.card-img-top {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: opacity 0.3s ease-in-out;
}

.image-second {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .image-second {
    opacity: 1;
}

.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
}




.blog-image-large {
    height: 250px;
    overflow: hidden;
}
.object-fit-cover {
    object-fit: cover;
}



.blog-desc img,
.blog-desc table {
    max-width: 100%;
    height: auto;
    display: block;
}


.full-description,
.short-description {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.full-description img,
.short-description img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
}











