/* show comande start textarea */

.home .product-list .product .sec_only p {
    padding: .3rem .5rem;
    display: none;
}

.home .product-list .product .sec_only textarea {
    padding: .3rem .5rem;
    display: none;
}

.home .product-list .product .sec_only.active textarea {
    display: inline-block;
}

.home .product-list .product .sec_only input {
    padding: .3rem .5rem;
    display: none;
}

.home .product-list .product .sec_only.active input {
    display: inline-block;
}

.home .product-list .product .sec_only.active p {
    display: inline-block;
}

.home .product-list .product .sec_only button {
    padding: .3rem .5rem;
    display: none;
}

.home .product-list .product .sec_only.active button {
    display: inline-block;
}

/* show comande end */

.error-message {

    color: red;
    font-size: 1rem;
    margin-top: 5px;
    display: none;

}

/* for the size of img start */
.product {
    /* width: 150px;
        height: 100%; */
    flex-shrink: 0;
    background-color: #e9ecef;
    overflow: hidden;
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product img:hover {
    transform: scale(1.05);
}

/* for the size of img end */












.boxsearch {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.boxsearch input {
    width: 127rem;
    padding: 8px 12px;
    border-radius: 20px;
    border-top: 1px solid #e5e5e5;
    background-color: #f0f2f5;
    outline: none;
    font-size: 1.7rem;
    display: flex;
}

/* ///////////////////////// */

:root {
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    --section-padding: 50px;
    --shadow-1: 0px 4px 8px var(--black_10);
    --shadow-2: 0px 30px 10px -20px var(--smocky-black_30);
    --shadow-3: 0px 15px 10px -20px var(--smocky-black_30);

}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

header .logo {
    color: var(--black);
    font-size: 3.5rem;
    font-weight: bolder;
}

header .logo i {
    color: var(--green);
}

header .logo img {
    max-width: 100px;
    height: auto;
}




































@media (max-width: 1250px) {
    .boxsearch input {
        width: 110rem;
    }
}

@media (max-width: 1116px) {
    .boxsearch input {
        width: 100rem;
    }
}

@media (max-width: 1000px) {
    .boxsearch input {
        width: 80rem;
    }
}

@media (max-width: 846px) {
    .boxsearch input {
        width: 65rem;
    }
}

@media (max-width: 682px) {
    .boxsearch input {
        width: 50rem;
    }
}

@media (max-width: 530px) {
    .boxsearch input {
        width: 40rem;
    }
}

@media (max-width: 430px) {
    .boxsearch input {
        width: 30rem;
    }
}

@media (max-width: 350px) {
    .boxsearch input {
        width: 25rem;
    }
}