/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");

/* Color Variables */
:root {
    --black: #222;
    --white: #fff;
    --grey1: #2a2828;
    --yellow: #ffcc00;
    --grey2: #2a2828;
}

/* Basic Reset */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    background-color: var(--white);
    color: var(--black);
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
    color: var(--black);
}

li {
    list-style: none;
}

.container {
    /* max-width: 114rem; */
    max-width: 140rem;
    /* min-width: 140rem; */
    margin: 0 auto;
    padding: 0 3rem;
}

.d-flex {
    display: flex;
    align-items: center;
}

/*
=================
Header
=================
*/

.header {
    position: relative;
    overflow: hidden;
}

.top-nav {
    min-height: 6.5rem;
    max-height: 6.5rem;

    background-color: var(--yellow);

    font-size: 1.32rem;
    color: var(--grey1);
}

.top-nav div {
    padding: 1.75rem 0;
    justify-content: space-between;
}

.top-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-nav ul li {
    margin-right: 10px;
}

.top-nav-languages {
    font-size: 16px;
    font-weight: bold;
}
.top-nav-languages li a:hover {
    cursor: pointer;
    color: #fff;
}
/*
=================
Navigation
=================
*/
.navigation {
    min-height: 10rem;
    max-height: 10rem;
    line-height: 6rem;
}

.nav-center {
    justify-content: space-between;
}

.nav-center .nav-item:not(:last-child) {
    margin-right: 0.5rem;
}

.nav-center .nav-link {
    font-size: 2rem;
    padding: 1rem;
}

.nav-center .nav-link:hover {
    color: var(--yellow);
}

.nav-center .hamburger {
    display: none;
    font-size: 2.3rem;
    color: var(--black);
    cursor: pointer;
}

.img-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;
    max-width: 200px;

    min-height: 70px;
    max-height: 70px;
}

.nav-item a img {
    display: none;
}

.lang {
    display: none;
}

#company-logo-sidebar {
    display: none !important;
}

/* @media only screen and (max-width: 768px) { */
@media only screen and (max-width: 950px) {
    .nav-list {
        position: fixed;
        top: 6.5rem;
        left: -35rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
        background-color: white;
        height: 100%;
        width: 0%;
        /* max-width: 35rem; */
        max-width: 28rem;
        z-index: 100;
        transition: all 300ms ease-in-out;
    }

    #company-logo-sidebar {
        display: block !important;
    }

    .nav-list.open {
        left: 0;
        width: 100%;
    }

    .nav-list .nav-item {
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .nav-list .nav-link {
        font-size: 2rem;
        color: var(--black);
    }

    .nav-center .hamburger {
        display: block;
        color: var(--black);
        font-size: 3rem;
    }

    .top-nav ul {
        display: none;
    }

    .top-nav div {
        justify-content: center;
    }

    .top-nav div h1 {
        text-align: center;
    }

    .img-logo {
        display: none !important;
    }
    .nav-item a img {
        display: block !important;
    }
    .lang {
        display: block !important;
    }

    #company-logo {
        display: block !important;
    }
    .nav-list.scrolled {
        top: 0;
    }
}

@media only screen and (max-width: 320px) {
    .top-nav h1 {
        font-size: 24px;
    }
    .nav-list {
        max-width: 25rem;
        overflow: scroll;
    }
}

/* _________________________________________________________________________________________________________________________________________________________________________ */
/*                                                          Infinte Top carousel                                                                                              */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.carousel-top {
    overflow: hidden;
    /* padding: 35px 0; */
    padding: 15px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.carousel-top:before,
.carousel-top:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.carousel-top:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.carousel-top:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.carousel-top:hover .carousel-top-slide {
    animation-play-state: paused;
}

.carousel-top-slide {
    display: inline-block;
    animation: 60s slide infinite linear;
}

.carousel-top-slide img {
    height: 120px;
    width: 150px;
    margin: 0 25px;
}

/* ________________________________________________________________________________________________________________________________________________________________________ */

/* Category Section */
.section {
    padding: 5rem 0 5rem 0;
    overflow: hidden;
}

.cat-center {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 140rem;
    margin: auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 5rem;
}

.cat-center .cat {
    max-width: 35rem;
    /* max-width: 60rem; */
    height: 25rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-align: center;
}

/* .cat-center .cat:not(:last-child) {
    margin-right: 3rem;
} */

.cat-center .cat img {
    /* width: 40rem; */
    width: 35rem !important;
    height: 100%;
    margin: auto;
    /* object-fit: cover; */
    /* object-fit: fill; */
    transition: all 2s ease;
}
/*
.cat-center .cat:hover img {
    transform: scale(1.1);
} */

.cat-center .cat div {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    width: 18rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

@media only screen and (max-width: 1200px) {
    .cat-center .cat img {
        width: 30rem;
        /* width: 35rem; */
    }
}

@media only screen and (max-width: 967px) {
    .cat-center .cat {
        max-width: 25rem;
        height: 20rem;
    }

    .cat-center .cat img {
        width: 25rem;
    }
}

@media only screen and (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .cat-center {
        flex-direction: column;
        padding: 3rem;
    }

    .cat-center .cat {
        max-width: 100%;
        height: 30rem;
    }

    .cat-center .cat:not(:last-child) {
        margin-right: 0rem;
        margin-bottom: 5rem;
    }

    .cat-center .cat img {
        width: 100%;
    }
}

/* New Arrivals */
.title {
    text-align: center;
    margin-bottom: 5rem;
}

.title h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-item {
    /* box-shadow: 3px 3px 3px #ffcc00; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    width: 32rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.product-thumb img {
    width: 100%;
    height: 31rem;
    /* object-fit: fill; */
    /* object-fit: cover; */
    /* transition: all 500ms linear; */
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-info span {
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-info a {
    height:40px;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1.2rem;
    transition: all 300ms ease;
}

.product-info a:hover {
    color: var(--yellow);
}

.product-item .overlay {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.product-item .overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 300ms ease-out;
}

/* .product-item:hover .overlay::after {
    visibility: visible;
    opacity: 1;
} */

.product-item .discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--yellow);
    padding: 0.5rem 1rem;
    color: var(--white);
    border-radius: 2rem;
    font-size: 1.5rem;
}

@media only screen and (max-width: 567px) {
    .product-center {
        max-width: 100%;
        padding: 0 1rem;
    }

    .product-item {
        width: 40%;
        margin-bottom: 3rem;
    }

    .product-thumb img {
        height: 20rem;
    }

    .product-item {
        margin-right: 2rem;
    }
}

.load-more {
    padding: 8px 16px;
    max-width: fit-content;
    margin: auto;
    border-radius: 6px;
    font-size: 18px;
    background-color: #ffcc00;
}

.load-more a :link,
.load-more a:visited {
    color: #2a2828;
}

.load-more a:hover,
.load-more a:active {
    color: #fff;
}

/* _______________________________________________________________________________________________________________________________________________________ */

/* Footer */

.footer {
    padding: 7rem 1rem;
    background-color: var(--grey1);
}

footer .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 99.6rem;
    margin: 0 auto;
}

.footer .col {
    flex-direction: column;
    color: var(--white);
    align-items: flex-start;
}

.footer .col:last-child {
    flex-direction: row;
    justify-content: center;
}

.footer .col:last-child span {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    color: var(--white);
}

.footer .col a {
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem;
    font-weight: 300;
}

.footer .col h4 {
    color: #ffcc00;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 567px) {
    footer .row {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }
}

.copy-right {
    background-color: #ffcc00;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.right-content {
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.right-content h1 {
    font-size: 4rem;
    color: #000;
    margin-bottom: 1.6rem;
}

.right-content h1 span {
    color: var(--yellow);
}

.right-content p {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 1.6rem;
}

/* All Products */
/* _________________________________________________________________________________________________________________________________________________ */
.section .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.all-products .top select {
    overflow: hidden;
    width: 12rem;
    padding: 0.5rem;
    border: 0.5px solid #ccc;
    appearance: none;
    outline: none;
}

.all-products .top select option {
    overflow-x: hidden !important;
    font-size: 12px;
}

form {
    position: relative;
    z-index: 1;
}

form span {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 2rem;
    z-index: 0;
}

@media only screen and (max-width: 768px) {
    .all-products .top select {
        width: 15rem;
    }
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    padding: 3rem 0 5rem 0;
}

.pagination span {
    display: inline-block;
    padding: 1rem 1.5rem;
    border: 1px solid var(--yellow);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.pagination span:hover {
    border: 1px solid var(--yellow);
    background-color: var(--yellow);
    color: #fff;
}

/* Product Details */
/* ________________________________________________________________________________________________________________________________ */

/* about us */
/* ________________________________________________________________________________________________________________________________ */
.about-heading {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.about-heading h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.about-heading h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #ffcc00;
}
.about-heading p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.about-container {
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* transition: 0.5 ease; */
}

.about-about-content {
    flex: 1;
}
.about-about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}
.about-about-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

@media screen and (max-width: 768px) {
    .about-heading {
        padding: 0 20px;
    }
    .about-heading h1 {
        font-size: 36px;
    }
    .about-heading p {
        font-size: 17px;
        margin-bottom: 0;
    }
    .about-container {
        padding: 0;
    }
    .about-about {
        padding: 20px;
        flex-direction: column;
    }
    .about-about-image {
        margin-bottom: 20px;
        margin-right: 0px;
    }
    .about-about-content p {
        font-size: 16px;
        padding: 0;
    }
}
/* ________________________________________________________________________________________________________________________________________________ */

/* CONTACT US */
#contact-section-wrapper {
    width: 100%;
    padding: 10px;
}

.contact-box-wrapper {
    position: relative;
    display: table;
    max-width: 1350px;
    margin: auto;
    margin-bottom: 55px;
    border-radius: 8px;
}

.contact-info-wrap {
    width: 40%;
    height: 642px;
    padding: 30px;
    padding-left: 35px;
    float: left;
    display: block;
    border-radius: 8px 0px 0px 8px;
    background-color: #ffcc00;
    color: #282828;
}

.contact-info-title {
    text-align: left;
    font-size: 28px;
    letter-spacing: 0.5px;
    /* color: white; */
}

.contact-info-sub-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}

.contact-info-details {
    list-style: none;
    margin: 60px 0px;
}

.contact-info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: #282828;
}

.contact-info-details li i {
    background: #282828;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.contact-info-details li a {
    /* color: #fff; */
    color: #2a2828;
    text-decoration: none;
}

.contact-social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}

.contact-social-icons li {
    display: inline-block;
}

.contact-social-icons li i {
    background: #282828;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.contact-social-icons li i:hover {
    background: #fff;
    color: #000000;
}

.contact-form-wrap {
    width: 60%;
    float: right;
    /* padding: 40px 25px 35px 25px; */
    padding: 30px 25px 45px 25px;
    border-radius: 0px 8px 8px 0px;
    background: #282828;
}

.contact-form-title {
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #fff;
}

.contact-form-fields {
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}

.contact-form-fields input,
.contact-form-fields textarea {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: #fff;
    padding: 20px 10px 20px 5px;
    width: 100%;
}

.contact-form-fields textarea {
    height: 150px;
    resize: none;
}

.contact-form-group {
    width: 46%;
    float: left;
    padding: 0px 8px;
    margin: 14px 12px;
    border-radius: 8px;
    box-shadow: inset 3px 3px 3px #fff, inset -3px -3px 3px #fff;
}

.contact-form-fields .contact-form-group:last-child {
    width: 96%;
}

.contact-submit-button {
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: #282828;
    box-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
    transition: 0.5s;
}

.contact-submit-button:hover {
    color: #ffcc00;
}

/* Responsive css */

@media only screen and (max-width: 885px) {
    .contact-box-wrapper {
        width: 100%;
    }

    .contact-info-wrap,
    .contact-form-wrap {
        width: 100%;
        height: inherit;
        float: none;
    }

    .contact-info-wrap {
        border-radius: 8px 8px 0px 0px;
    }

    .contact-form-wrap {
        border-radius: 0px 0px 8px 8px;
    }

    .contact-form-group {
        width: 100%;
        float: none;
        margin: 25px 0px;
    }

    .contact-form-fields .contact-form-group:last-child,
    .contact-submit-button {
        width: 100%;
    }

    .contact-submit-button {
        margin: 10px 0px;
    }
}
/*______________________________________________________________________________________________________________________________  */
/* Default styles for larger screens */
.wrapper {
    margin-top: -4.5rem;
    display: grid;
    grid-template-columns: 15% 85%;
}
.col-1 {
    display: inline-block;
    border-radius: 5px;
}

.Lsidebar {
    padding: 10px;
    border-radius: 5px;
    background-color: var(--yellow);
    padding-left: 20px;
    /* /////////////// */
}

h2 {
    text-align: center;
}

.sidebarUL {
    list-style: none;
    padding: 0;
    width: 100%;
}

.sidebarULLI {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #000000; /* Add a border between list items */
    /* gap: 10px; */
}

.cat-link {
    text-decoration: none;
    color: #333; /* Adjust the link color */
}
.cat-link a {
    transition: ease-in-out 0.2s;
}
.cat-link a:hover {
    color: white;
}

.item-nb {
    background-color: #000000; /* Adjust the background color of the number container */
    padding: 6px;
    border-radius: 3px;
    color: white;
}
.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-right: 15px solid #fc0;
    border-left: 10px solid #3e00e800;
    border-bottom: 10px solid #3330;
    border-top: 10px solid #ff00;
    margin-bottom: -4px;
    margin-left: -10px;
}

/* Media query for smaller screens (less than 1200px) */
@media (max-width: 1200px) {
    .center-links {
        font-size: 15px; /* Decrease font size */
    }
    .sidebar h2 {
        font-size: 18px;
    }
}

/* Media query for smaller screens (less than 650px) */
@media (max-width: 950px) {
    .wrapper {
        grid-template-columns: 100%; /* Make the entire column disappear */
    }
    .col-1 {
        display: none;
    }
}

@media (min-width: 950px) {
    .section.category {
        display: none;
    }
}
