
    /*================================  Css Variable ==============================*/
:root {
    --primaryColor: #5b775e;
    --whiteColor: #ffffff;
    --grayTextColor: #7d7d7d;
    --textColorL1: #21252b;
    --borderRadius: 7px;
    --mainTransition: all ease-in-out 300ms;
    --baseFont: "Roboto";
}

/*================================ Basic Style ==============================*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--baseFont);
    color: var(--textColorL1);
    font-weight: 400;
    line-height: 1.75;
    direction: ltr;
}

a {
    transition: var(--mainTransition);
    color: var(--textColorL1);
    text-decoration: none;
}

a:hover {
    color: var(--primaryColor);
}

/*================================ Container Style ==============================*/
.container {
    padding-inline-start: calc(var(--bs-gutter-x) * 0.5);
    padding-inline-end: calc(var(--bs-gutter-x) * 0.5);
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
}

@media (min-width: 36rem) {
    .container {
        max-width: 33.75rem;
    }
}

@media (min-width: 48rem) {
    .container {
        max-width: 45rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 60rem;
    }
    .col-lg-2-5 {
        width: 20%;
    }
}

@media (min-width: 75rem) {
    .container {
        max-width: 72.5rem;
    }
}

@media (min-width: 83.75rem) {
    .container {
        max-width: 78.75rem;
    }
}

@media (min-width: 87.5rem) {
    .container {
        max-width: 83.75rem;
    }
}

/*================================ Image ==============================*/
figure {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    display: flex;
    margin: 0;
}

figure img {
    max-height: 100%;
    max-width: 100%;
}

.thumbnail-zoom figure img {
    transition: var(--mainTransition);
}

.thumbnail-zoom:hover figure img {
    transform: scale(1.1);
}

/*================================ Buttons ==============================*/
.default-button {
    border-radius: var(--borderRadius);
    background-color: var(--primaryColor);
    transition: var(--mainTransition);
    border: 1px solid transparent;
    color: var(--whiteColor);
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    line-height: normal;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    gap: 0.25rem;
}

.default-button:hover {
    background-color: var(--whiteColor);
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

/*================================ Product Section ==============================*/
.product-section {
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    height: 94%;
    justify-content: space-between;
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.image-link {
    display: block;
    overflow: hidden;
}

.product-card:hover .product-image {
    transform: scale(1.026);
}

.product-card-body {
    padding: 20px;
    font-weight: bold;
    text-align: center!important;
    width: 280px;
}

.product-card-body h6 {
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 900;
    color: #000000;
    text-align: center!important;
}

.product-card-price {
    position: relative;
    overflow: hidden;
    height: 60px;

}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s;
    text-align: center!important;
}

.hover-button {
    width: 100%;
    position: absolute;
    bottom: -100%;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    transition: bottom 0.1s ease-in-out;
    z-index: 2;
}

.product-card:hover .hover-button {
    bottom: 0;
}

.product-card:hover .price {
    opacity: 0.2;
}

.product-card-body .btn-primary {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 0;
    border: none;
}
