 

 

 .menu-container {
    display: flex;
    align-items: center;
    gap: 50px;
 }
 

.shopcats {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
 }

 .shopcats ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
 }

 .shopcats li {
    position: relative;
    padding: 10px 15px;
 }

 .shopcats li a {
    color: #313030c7;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease-in-out;
    padding: 10px;
 }

 .shopcats ul ul {
    display: block;
    position: absolute;
    top: 100%;
    right: 10;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    border-radius: 3px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.shopcats ul ul li {
    padding: 8px 12px;
    margin: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.shopcats ul ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.shopcats ul ul li a::after { 
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #b9b9b9;
    transform: scaleX(0);
    transition: width 0.3s ease;
}

.shopcats ul ul li a:hover::after {
    width: 60%;
}

.shopcats ul ul li a:hover {
    color: #d35400;
}

/* ANIMATION  shopcats*/

.shopcats li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

/* menus */
 

/* sous menus */

.menus ul ul {
    display: block;
    position: absolute;
    top: 100%;
    right: 10;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    border-radius: 3px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menus ul ul li {
    padding: 8px 12px;
    margin: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.menus ul ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.menus ul ul li a::after { 
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #b9b9b9;
    transform: scaleX(0);
    transition: width 0.3s ease;
}

.menus ul ul li a:hover::after {
    width: 60%;
}

.menus ul ul li a:hover {
    color: #d35400;
}

/* ANIMATION */

.menus li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}



.linkimg {
    position: relative;
    display: inline-block;
    width: 100%; /* Ajuste selon le besoin */
}

.linkimg img {
    width: 100%; /* Pour s'assurer que l'image prend toute la largeur */
    height: 250px; /* Garde le ratio de l'image */
    display: block;
    object-fit: cover;
}

.titre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5);  */
    padding: 10px 20px;
    border-radius: 10px;
}

.spanlitle {
    font-size: 1rem;
    font-weight: 400;
}

.heading {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 30px;
    margin-top: 10px;
}

.boutique {
    font-size: 18px;
}

#show {
    width: 40%;
    font-size: 14px;
}

#sorting {
    font-size: 14px;
}
.filtrer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-left: 10px;
}

select {
    font-family: 'Karla', sans-serif;
}

/* main content */

main {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 20px;
    padding-left: 2px;
    padding-right: 2px;
    margin-top: -10px;
    justify-content: start;
}
.form-filtrer-pc {
    min-width: 270px; 
    max-width: 270px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(42, 42, 42, 0.1);
    display: flex;
    border: 1px solid lightgray;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 85px;
}

.txtfilter {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.priceselect,
.selectcats,
.taille
{    width: 80%;
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background: white;
    margin-top: 5px;
}

.taille .size-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.size {
    font-size: 17px;
    font-weight: 500;
}
.size-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid GRAY;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #bf5723;
}

.checkmark {
    font-size: 1rem;
    font-weight: bold;
}

.button {
    width: 100%;
}

.button button {
    padding: 10px;
    width: 50%;
    background-color: #d35400;
    color: #fff;
    border: none;
    cursor: pointer;
}



  /* PAGINATION */

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
    font-size: 15px;
    font-weight: bold;
}


.page, .next {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.page {
    color: black;
}

.page:hover, .next:hover {
    color: #005f86;
}



