.main-body {
    background-color: #ebeff2;
    padding: 5px;
    margin-top: 200px;
}

/* smoof scrol */
html {
    scroll-behavior: smooth;
}

.img-board {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #fff;
    border-radius: 30px;
}

.img-container {
    width: 100%;
    height: 100%;
    /* parallax */
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 30px;
}

.img-container-object {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.parallax-Gree {
    background-image: url(../media/gree.png);
}

.product-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 20px;
}

.product-container.mobile {
    display: none;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
}

.slider-main {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.slider-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    cursor: grab;
    padding: 10px;
}

.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.thumbnail-container {
    display: flex;
    align-items: center;
    margin: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pc .thumbnail-container img {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    cursor: pointer;
    margin: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.pc .thumbnail-container img:hover,
.pc .thumbnail-container img.active {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid #43b02a;
}

.thumbnail-container img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-container img:hover,
.thumbnail-container img.active {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.slider-navigation button {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: none;
    border-radius: 50%;
    background-color: #43b02a;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.slider-navigation button:hover {
    background-color: #3a9c24;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.product-main-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
}

.product-price {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}

.price {
    font-weight: bold;
    font-size: 28px;
    color: #000;
    background-color: #ebeff2;
    padding: 5px 20px;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.product-buy-button {
    width: 50%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #43b02a;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-buy-button img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.call-back {
    width: 45%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #f00;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-back img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.product-buy-button:hover,
.call-back:hover {
    background-color: #3a9c24;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

a.call-back {
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.product-description {
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
}

.product-description table {
    width: 100%;
    border-collapse: separate;
}

.product-description table th {
    background-color: #43b02a;
    color: #fff;
    padding: 10px;
    border: 1px solid #43b02a;
    transition: background-color 0.3s ease;
}

.product-description table td {
    padding: 10px;
    border: 1px solid #43b02a;
    transition: background-color 0.3s ease;
}


.product-description table tr:nth-child(1) th {
    border-top-left-radius: 20px;
}

.product-description table tr:nth-child(1) td {
    border-top-right-radius: 20px;
}

.product-description table tr:last-child th {
    border-bottom-left-radius: 20px;
}

.product-description table tr:last-child td {
    border-bottom-right-radius: 20px;
}

.product-description table tr:nth-child(odd) {
    background-color: #ebeff2;
}

.product-description table tr:nth-child(even) {
    background-color: #fff;
}

.product-description table tr:hover {
    background-color: #43b02a;
    color: #fff;
    transition: background-color 0.3s ease;
}

.product-description table tr:hover td {
    color: #fff;
}

.recommendations {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.recommendation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 20px;
}

.recommendation-product {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin: 10px;
    text-align: center;
}

.recommendation-product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.recommendation-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.recommendation-product-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
}

.recommendation-product-info h3 {
    font-size: 20px;
}

.recommendation-product-info p {
    font-size: 15px;
    margin-top: 10px;
}

.recommendation-product-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 10px;
}

.recommendation-product-actions button {
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #43b02a;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.recommendation-product-actions button img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.recommendation-product-actions button:hover {
    background-color: #3a9c24;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.recommendation-product-actions a {
    color: #000000;
    text-decoration: none;
    text-align: center;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #43b02a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.recommendation-product-actions a img {
    width: 20px;
    height: 20px;
    background-color: #43b02a;
}



.recommendation-product-actions a:hover {
    color: #000000;
    text-decoration: none;
    text-align: center;
}



@media screen and (max-width: 768px) {

    .product-container.pc {
        display: none;
    }

    .main-body {
        margin-top: 35px;
    }

    .img-board {
        height: 10vh;
        width: auto;
    }

    .img-container {
        border-radius: 10px;
        background-attachment: scroll;
    }

    .parallax-Gree {
        background-image: url(../../../../media/gree_mob.png);
    }

    .slider-main img {
        padding: 5px;
    }

    .thumbnail-container img {
        width: 45px;
        height: 45px;
        margin: 5px;
        object-fit: cover;
    }

    .slider-navigation button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .product-container.mobile {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .slider-container {
        max-height: 100%;
        min-height: 100%;
        padding: 5px;
    }

    .product-main-info {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .product-main-info h1 {
        font-size: 20px;
    }

    .sku {
        font-size: 15px;
    }

    .price {
        font-size: 20px;
    }

    .product-buy-button {
        font-size: 15px;
        width: 100%;
        margin-top: 15px;
    }

    .call-back {
        font-size: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .product-description {
        width: 100%;
        margin-top: 10px;
    }

    .product-description table th {
        font-size: 12px;
    }

    .product-description table td {
        font-size: 12px;
    }

    .recommendations {
        margin-top: 10px;
    }

    .recommendation-container {
        flex-direction: column;
    }

}