/*   ======================================================================   */
/*   |                                                                    |   */
/*   |                                                                    |   */
/*   |                              DEVELOPER                             |   */
/*   |                            AYESHA ASHFAQ                           |   */
/*   |                                                                    |   */
/*   |                                                                    |   */
/*   ======================================================================   */


/* CSS Reset */


/* CSS Variables */
:root {
    --primary-color: #4b1e02;
    /* Color in logo */
    --secondary-color: #A77426;
    --secondary-color: #c8a165;

    --gradient-color: linear-gradient(90deg, #4b1e02, #92651d, rgb(182, 149, 99));
    --gradient-color1: linear-gradient(90deg, #583101, #8B5E34, #E7BC91);

    /* --background-color: #dddddd62; */
    --background-color: #dddddd9b;
    --font-color: black;
    --font-family: 'Belleza', sans-serif;

    --large-font-size: 4rem;
    --medium-font-size: 3rem;
    --small-font-size: 1.2rem;
    --btn-font-size: 1rem;

    @media only screen and (max-width: 850px) {
        --large-font-size: 3rem;
        --medium-font-size: 2rem;
        --small-font-size: 0.9rem;
        --btn-font-size: 0.7rem;
    }

    @media only screen and (max-width: 420px) {
        --large-font-size: 2rem;
        --medium-font-size: 1.4rem;
        --small-font-size: 0.6rem;
        --btn-font-size: 0.5rem;
    }
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    color: var(--font-color);
    background-color: var(--background-color);
    font-weight: 200;
}

input {
    font-family: var(--font-family);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

button {
    border: none;
    outline: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

/* ================= UTILITY CLASSES =================== */

/*#region */


.btn {
    padding: 0.8rem 1.4rem;
    font-size: var(--btn-font-size);
    width: 10rem;
    height: 3rem;
    background: transparent;
}

.btn:hover {
    cursor: pointer;
}

.main-heading {
    font-size: var(--medium-font-size);
    font-weight: bold;
    text-align: center;
    margin: 1.5rem 0 1.6rem;
}


/*#endregion */


/* ================= INDEX PAGE =================== */

/*#region */

/* ==================================================================== */
/*                                Image Slider                         */
/* ==================================================================== */


.img-slider {
    /* display: none; */
    position: relative;
    width: 100%;
    height: 38rem;
    overflow: hidden;
}

.slider-one,
.slider-two,
.slider-three {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: slider-one 12s linear infinite;
    animation: slider-one 12s linear infinite;
}

.slider-one .slider-one-image,
.slider-one .slider-two-image,
.slider-one .slider-three-image,
.slider-two .slider-one-image,
.slider-two .slider-two-image,
.slider-two .slider-three-image,
.slider-three .slider-one-image,
.slider-three .slider-two-image,
.slider-three .slider-three-image {
    width: 110%;
    height: 100%;
    background-image: url('../img/backgrounds/bg1.jpg');
    background-color: #959595;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: zoom-out 3s linear infinite;
    animation: zoom-out 3s linear infinite;
}

.slider-one .slider-one-image .slider-text,
.slider-one .slider-two-image .slider-text,
.slider-one .slider-three-image .slider-text,
.slider-two .slider-one-image .slider-text,
.slider-two .slider-two-image .slider-text,
.slider-two .slider-three-image .slider-text,
.slider-three .slider-one-image .slider-text,
.slider-three .slider-two-image .slider-text,
.slider-three .slider-three-image .slider-text {
    position: absolute;
    top: 45%;
    left: 50%;
    color: #ffffff;
    width: 600px;
    text-transform: capitalize;
    -webkit-animation: text-up 12s linear infinite;
    animation: text-up 12s linear infinite;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.slider-one .slider-one-image .slider-text h1,
.slider-one .slider-two-image .slider-text h1,
.slider-one .slider-three-image .slider-text h1,
.slider-two .slider-one-image .slider-text h1,
.slider-two .slider-two-image .slider-text h1,
.slider-two .slider-three-image .slider-text h1,
.slider-three .slider-one-image .slider-text h1,
.slider-three .slider-two-image .slider-text h1,
.slider-three .slider-three-image .slider-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.slider-one .slider-one-image .slider-text p,
.slider-one .slider-two-image .slider-text p,
.slider-one .slider-three-image .slider-text p,
.slider-two .slider-one-image .slider-text p,
.slider-two .slider-two-image .slider-text p,
.slider-two .slider-three-image .slider-text p,
.slider-three .slider-one-image .slider-text p,
.slider-three .slider-two-image .slider-text p,
.slider-three .slider-three-image .slider-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.slider-two {
    -webkit-animation: slider-two 12s linear infinite;
    animation: slider-two 12s linear infinite;
}

.slider-two .slider-two-image {
    background-image: url('../img/backgrounds/bg2.jpg');
    background-color: #959595;
    background-blend-mode: multiply;
}

.slider-two .slider-two-image .slider-text {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.slider-three {
    -webkit-animation: slider-three 12s linear infinite;
    animation: slider-three 12s linear infinite;
}

.slider-three .slider-three-image {
    background-image: url('../img/backgrounds/bg3.jpg');
    background-color: #959595;
    background-blend-mode: multiply;
}

.slider-three .slider-three-image .slider-text {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}


@-webkit-keyframes text-up {
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes text-up {
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes zoom-out {
    100% {
        width: 100%;
    }
}

@keyframes zoom-out {
    100% {
        width: 100%;
    }
}

@-webkit-keyframes slider-one {
    0% {
        visibility: visible;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

@keyframes slider-one {
    0% {
        visibility: visible;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

@-webkit-keyframes slider-two {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes slider-two {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

@-webkit-keyframes slider-three {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes slider-three {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}


/* ==================================================================== */

nav {
    z-index: 20;
    top: 0;
    position: fixed;
    width: 100%;
    height: 4.15rem;
    display: flex;
    align-items: center;
    /* background-color: #FFFFFF80; */
    background-color: #FFFFFFad;
}

nav .logo {
    width: 87%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo img {
    width: 22%;
}

.hamburger {
    width: 6%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    margin: 2.5px auto;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: black;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navMenu {
    position: fixed;
    left: -100%;
    /* top: 11%; */
    top: 4.15rem;
    display: flex;
    flex-direction: column;
    /* background-color: #ffffff6a;
    -webkit-backdrop-filter: blur(10px); */
    /* background-color: #FFFFFF80; */
    background-color: #ffffffad;
    text-align: center;
    width: 20%;
    height: 100vh;
    transition: 0.5s;

    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nav-item {
    cursor: pointer;
    font-size: var(--small-font-size);
    font-weight: 500;
    /* margin: 15px auto; */
    padding: 10px 0;
    margin: 6px 0;
    height: 50px;
    transition: all 0.1s ease-in-out;
    /* border-radius: 0 30px; */
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.nav-item a {
    color: var(--primary-color);
}

.nav-item:nth-child(2) {
    margin-top: 0 !important;
}

.navMenu.active {
    left: 0;
}

.company-logo img {
    width: 45%;
    margin: 0 10px !important;
}

.search {
    margin-right: -1.7rem;
}

.cart {
    margin-right: -1rem;
}

.search img {
    width: 40%;
    cursor: pointer;
}

.cart img {
    width: 40%;
    cursor: pointer;
}


/* ========== Shop (Sub-Menu Dropdown) ================= */

.shop:hover .shop-dropdown {
    display: initial;
}

.shop {
    color: var(--primary-color);
}

.shop span {
    font-size: 1.5rem;
    transition: all 0.4s;
    color: var(--primary-color);
}

.shop:hover span {
    margin-left: 13px;
}

.shop-dropdown {
    width: 10rem;
    height: 14rem;
    position: absolute;
    left: 100.3%;
    top: 30%;
    display: none;
    background-color: #cfcfcf;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.shop-dropdown li {
    font-size: var(--small-font-size);
    font-weight: 500;
    padding: 10px 0;
    /* margin: 2px 0; */
    height: 50px;
    transition: all 0.2s ease-in-out;
}


.shop-dropdown li:nth-child(1):hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-top-right-radius: 15px;
}

.shop-dropdown li:hover {
    background-color: rgba(255, 255, 255, 0.7);
}


/* ==================================================================== */

.website-intro {
    margin: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 8rem;
}

.website-intro .text {
    margin-right: 5rem;
}

.website-intro .text span {
    font-size: var(--medium-font-size);
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: var(--secondary-color);
}

.website-intro .text h1 {
    font-size: var(--large-font-size);
    margin-bottom: 0.5rem;
}

.website-intro .text p {
    font-size: var(--small-font-size);
}

.website-intro .intro-img {
    display: flex;
}

.website-intro .intro-img .img1 {
    width: 45%;
    margin: 2rem;
}

.website-intro .intro-img .img2 {
    width: 35%;
    margin: 5rem 0;
}

/* ==================================================================== */

.way-of-thinking {
    margin: 9rem 6rem;
    display: flex;
    align-items: center;
    /* padding-left: 8rem; */
}


.way-of-thinking .text {
    width: 55%;
}


.way-of-thinking .text span {
    font-size: var(--medium-font-size);
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: var(--secondary-color);
}

.way-of-thinking .text h1 {
    font-size: var(--large-font-size);
    /* margin-bottom: 0.2rem; */
}

.way-of-thinking .text p {
    margin: 0.5rem 0;
    font-size: var(--small-font-size);
    line-height: 1.2;
}

.way-of-thinking .text p span {
    font-size: var(--small-font-size);
    color: #865416;
}

.way-of-thinking .text button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.way-of-thinking .text button {
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.way-of-thinking .text button:hover a {
    color: #fff;
}

.way-of-thinking .text button:hover {
    background-color: var(--secondary-color);
}

.way-of-thinking .side-img img {
    width: 85%;
}

/* ==================================================================== */

.products-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-intro .text {
    display: flex;
    flex-direction: column;
    width: 30rem;
}

.products-intro .text span {
    line-height: 0.3;
    font-size: var(--medium-font-size);
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: var(--secondary-color);
}

.products-intro .text h1 {
    text-align: center;
    font-size: var(--large-font-size);
}

.products-intro .products-grid {
    margin-top: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 6rem 4rem;
}

.products-intro .products-grid .product {
    height: 400px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.products-grid .img1 {
    transition: all 0.3s ease-in-out;
}

.products-grid .product:hover .img1 {
    -webkit-filter: brightness(60%);
}

.products-grid .product:hover .toggle-info {
    animation: upwards 5s;
}

.products-intro .product .toggle-info {
    display: none;
    position: relative;
    top: -55%;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
}


@keyframes upwards {
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.products-intro .products-grid .product:hover .toggle-info {
    display: block;
}

.products-intro .product .toggle-info p {
    color: #fff;
    text-align: center;
    font-size: var(--small-font-size);
    cursor: pointer;
}

.products-intro .product .toggle-info p:hover {
    text-decoration: underline;
}

.products-intro .product .toggle-info .img {
    display: flex;
    justify-content: space-evenly;
    margin-top: 8rem;
}

.products-intro .product .toggle-info img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.products-intro .products-grid img {
    width: 300px;
    height: 360px;
}

.products-grid .product:nth-child(2),
.products-grid .product:nth-child(5) {
    /* border: 1px solid red; */
    position: relative;
    top: -22%;
}

.products-grid .product .info {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.products-grid .product .info p {
    font-size: var(--small-font-size);
}

.products-grid .product .info .price {
    color: #686868c5;
}

.products-intro button {
    margin: 3rem 0;
    border: 1px solid var(--secondary-color);
    transition: all 0.5s ease-in-out;
}

.products-intro button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.products-intro button:hover a {
    color: #fff;
}

.products-intro button:hover {
    background-color: var(--secondary-color);
}


/* ==================================================================== */

.partners {
    margin: 2rem 0;
    padding-left: 3rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.partners .text h1 {
    /* text-align: center; */
    font-size: var(--large-font-size);
}

.partners .text h1 span {
    color: var(--secondary-color);
    font-family: 'Dancing Script', cursive;
    font-style: italic;
}

.partners .partners-grid {
    margin: 3rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* grid-template-rows: 1fr; */
    grid-gap: 7rem;
}

.partners .partners-grid img {
    width: 80%;
    transition: all 0.5s ease-in-out;
}

.partners .partners-grid img:hover {
    transform: scale(1.2);
}

/* ==================================================================== */

footer {
    color: #fff;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    background-color: #bd9667;
}

footer .info {
    padding: 3rem 5rem;
    display: flex;
    /* align-items: center; */
}

footer .info .logo-detail {
    padding-right: 1rem;
    width: 33%;
    display: flex;
    flex-direction: column;
}

footer .info .logo-detail img {
    width: 40%;
}

footer .info .logo-detail p {
    font-size: var(--small-font-size);
}


footer .social-links {
    padding-top: 2rem;
    padding-left: 3rem;
    width: 33%;
    display: flex;
    flex-direction: column;
}

footer .social-links .link-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer .social-links div {
    display: flex;
    margin: 0.4rem 0;
}

footer .social-links div p {
    font-size: var(--small-font-size);
}

footer .social-links img {
    width: 22px;
    height: 22px;
    margin-right: 0.8rem;
}

footer .contact-us {
    padding-top: 2rem;
    width: 33%;
    display: flex;
    flex-direction: column;
}

footer .contact-us .contact-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer .contact-us img {
    width: 25px;
    height: 25px;
    margin-right: 0.8rem;
}

footer .contact-us div {
    display: flex;
    margin: 0.4rem 0;
}

footer .copyright {
    padding: 1rem;
    background-color: #242424;
    color: #fff;
    text-align: center;
}


/*#endregion */


/* ================= Shop Products Page =================== */

/*#region */


.shop-bg {
    background: url('../img/shop-bg2.jpg') no-repeat center center/cover;
    background-color: rgba(50, 50, 50, 0.3);
    background-blend-mode: multiply;
    margin-top: 4.15rem;
    height: 20rem;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-bg p {
    color: #fff;
    font-size: var(--medium-font-size);
    font-weight: 900;
}

/* ======================== SubMenu ============================= */

#filters {
    display: flex;
    align-items: center;
    margin: 3.5rem 3rem;
}

#filters nav#menu-area {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #fff;
    padding-left: 2rem;
    position: relative;
    height: 50px;
}

#filters nav#menu-area ul li {
    float: left;
    position: relative;
    font-size: 15px;
    list-style: none;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
}

#filters nav#menu-area ul li a {
    color: #a8a8a8;
    color: #8f8f8f;
    text-decoration: none;
    line-height: 45px;
}

#filters nav#menu-area ul li:hover>a {
    color: #b28450;
}

#filters nav#menu-area ul li ul.categories-submenu,
#filters nav#menu-area ul li ul.price-submenu,
#filters nav#menu-area ul li ul.color-submenu {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 1.4rem;
    padding-bottom: 1rem;
    list-style: none;
    text-align: left;
    position: absolute;
    top: 47px;
    background: #d5d5d5;
    width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.1s 0.1s linear;
}

#filters nav#menu-area ul li ul.categories-submenu li,
#filters nav#menu-area ul li ul.price-submenu li,
#filters nav#menu-area ul li ul.color-submenu li {
    font-size: 14px;
    display: flex;
    align-items: center;
    width: 160px;
    transition: opacity 0.15s 0.15s ease-out, margin 0.3s 0.1s ease-out;
}

#filters nav#menu-area ul li ul.color-submenu li span {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(1) span {
    background: white;
    border: 1px solid #242424;
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(2) span {
    background: rgb(207, 136, 112);
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(3) span {
    background: lightblue;
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(4) span {
    background: burlywood;
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(5) span {
    background: black;
}

#filters nav#menu-area ul li ul.color-submenu li:nth-child(6) span {
    background: #997245;
}

#filters nav#menu-area ul li:hover ul.categories-submenu,
#filters nav#menu-area ul li:hover ul.price-submenu,
#filters nav#menu-area ul li:hover ul.color-submenu {
    opacity: 1;
    visibility: visible;
    background: #fff;
    color: #997245;
}

#filters nav#menu-area ul li:hover ul.categories-submenu li,
#filters nav#menu-area ul li:hover ul.price-submenu li,
#filters nav#menu-area ul li:hover ul.color-submenu li {
    margin-top: 0;
    opacity: 1;
}

/* ========================================== */

.shop-products-grid {
    margin: 1rem 6rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap: 4rem 6rem;
}

.shop-products-grid .product {
    height: 400px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.shop-products-grid .img1 {
    transition: all 0.3s ease-in-out;
}

.shop-products-grid .product:hover .img1 {
    -webkit-filter: brightness(60%);
}

.shop-products-grid .product:hover .toggle-info {
    animation: upwards 5s;
}

.shop-products-grid .product .toggle-info {
    display: none;
    position: relative;
    top: -55%;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
}


@keyframes upwards {
    10% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.shop-products-grid .product:hover .toggle-info {
    display: block;
}

.shop-products-grid .product .toggle-info p {
    color: #fff;
    text-align: center;
    font-size: var(--small-font-size);
    cursor: pointer;
}

.shop-products-grid .product .toggle-info p:hover {
    text-decoration: underline;
}

.shop-products-grid .product .toggle-info .img {
    display: flex;
    justify-content: space-evenly;
    margin-top: 8rem;
}

.shop-products-grid .product .toggle-info img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.shop-products-grid img {
    width: 300px;
    height: 360px;
}

/* 
.shop-products-grid .product:nth-child(2),
.shop-products-grid .product:nth-child(5) {
    border: 1px solid red;
    position: relative;
    top: -22%;
} */

.shop-products-grid .product .info {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.shop-products-grid .product .info p {
    font-size: var(--small-font-size);
}

.shop-products-grid .product .info .price {
    color: #686868c5;
}


/* ==================================================================== */
/*                          Pagination                                  */
/* ==================================================================== */

/* Import Google font - Poppins */

.container,
.button,
.links,
.link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 0 2rem;
    padding: 20px;
    /* padding: 15px; */
    border-radius: 8px;
    column-gap: 12px;
    /* background: #fff; */
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 7px rgba(92, 92, 92, 0.1); */
}

.button {
    border: none;
}

.button i {
    pointer-events: none;
}

.button:disabled {
    color: #7e7e7e;
    color: #b3b3b3;
    pointer-events: none;
}

.button,
.link {
    height: 45px;
    width: 45px;
    /* height: 40px;
    width: 40px; */
    font-size: 20px;
    color: #666666;
    background-color: #f2f2f2;
    background-color: rgb(248, 248, 248);
    border-radius: 6px;
    cursor: pointer;
}

.links {
    column-gap: 12px;
}

.link {
    font-weight: 500;
    text-decoration: none;
}

.button:hover,
.link:hover {
    color: #fff;
    /* background: #4070f4; */
    background: var(--secondary-color);
}

.link.active {
    color: #fff;
    /* background: #4070f4; */
    background: var(--secondary-color);
}



/*#endregion */


/* ================= Shop ==> Cart Page =================== */

/*#region */


.cart-container {
    background-color: #fff;
    margin: 5rem 3rem;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.cart-header {
    margin: 1rem 2rem;
    padding: 0.7rem 4rem;
    padding-left: 9rem;
    background-color: #F6F6F6;
    display: flex;
    justify-content: space-between;
}

.cart-items {
    margin: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap: 1.5rem;
    align-items: center;
}

.cart-items .img-detail {
    display: flex;
}

.cart-items .img-detail img {
    width: 110px;
    height: 105px;
}

.cart-items .img-detail .detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1.3rem;
}

.cart-items .img-detail .detail .name {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #808080;
}

.cart-items .detail .color,
.cart-items .detail .size {
    line-height: 1.2;
    font-size: 0.8rem;
    color: #6e6e6e;
}

.cart-items .quantity span {
    cursor: pointer;
}

.quantity .minus,
.quantity .plus {
    font-size: 20px;
    height: 28px;
    width: 30px;
    background: #f6f6f6;
    padding: 2px;
    color: #7b7b7b;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
}

.quantity .minus:hover,
.quantity .plus:hover {
    color: var(--secondary-color);
}

.cart-items .quantity input {
    height: 28px;
    width: 33px;
    text-align: center;
    font-size: 16px;
    background: #f6f6f6;
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
}

.cart-items .total {
    margin-left: 2.5rem;

}

.cart-items .remove {
    margin-left: 4rem;

    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: 30px;
    background: #f6f6f6;
    font-size: 1.7rem;
    text-align: center;
    align-items: center !important;
    padding-bottom: 5px;

    transition: all 0.3s ease-in-out;
}

.cart-items .remove:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* ======================================================== */

.coupon-payment {
    margin: 5rem 2rem;
    display: flex;
}

.coupon,
.payment {
    width: 50%;
    margin: 0 1rem;
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.coupon .heading,
.payment .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 2;
}

.coupon .info {
    line-height: 3;
    color: #989898;
}

.coupon input {
    height: 2.2rem;
    padding: 0.4rem 0.8rem;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

.coupon button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.coupon button {
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.coupon button:hover a {
    color: #fff;
}

.coupon button:hover {
    background-color: var(--secondary-color);
}

.payment div {
    color: #989898;
    height: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.7px solid #c8c8c8;
}


.payment .orderTotal {
    color: #a16a26;
    border: none;
}


/*#endregion */


/* ================= Shop ==> Wishlist Page =================== */

/*#region */


.wishlist-container {
    background-color: #fff;
    margin: 6rem 3rem;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.wishlist-header {
    margin: 1rem 2rem;
    padding: 0.7rem 4rem;
    padding-left: 9.6rem;
    background-color: #F6F6F6;
    display: flex;
    justify-content: space-between;
}

.wishlist-items {
    margin: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap: 1.5rem;
    align-items: center;
}

.wishlist-items .img-detail {
    display: flex;
}

.wishlist-items .img-detail img {
    width: 110px;
    height: 105px;
}

.wishlist-items .img-detail .detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1.3rem;
}

.cart-items .img-detail .detail .name {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #7b7b7b;
    color: #808080;
}

.wishlist-items .detail .color,
.wishlist-items .detail .size {
    line-height: 1.2;
    font-size: 0.8rem;
    color: #6e6e6e;
}

.wishlist-items .addCart {
    cursor: pointer;
    margin-left: 2.5rem;

}

.wishlist-items .addCart img {
    width: 22%;

}

.wishlist-items .remove {
    margin-left: 4rem;

    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: 30px;
    background: #f6f6f6;
    font-size: 1.7rem;
    text-align: center;
    align-items: center !important;
    padding-bottom: 5px;

    transition: all 0.3s ease-in-out;
}

.wishlist-items .remove:hover {
    background: var(--secondary-color);
    color: #fff;
}


/*#endregion */


/* ================= Shop ==> Checkout Page =================== */

/*#region */


.billing-shipping {
    margin: 5rem 2rem;
    display: flex;
}

.billing,
.shipping {
    width: 50%;
    /* margin: 0 1rem; */
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.billing .heading,
.shipping .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 3.5;
}

.billing-shipping input,
.billing-shipping select {
    height: 2.5rem;
    padding: 0.7rem 0.8rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    display: none;
}

.billing button {
    margin-top: 1rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.billing button:hover {
    color: #fff;
    background-color: var(--secondary-color);
}

.shipping div {
    color: #989898;
    height: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.7px solid #c8c8c8;
}


.shipping .orderTotal {
    color: #a16a26;
    border: none;
}

/* ========================================================== */


.coupon-payment {
    margin: 5rem 2rem;
    display: flex;
}

.coupon,
.payment {
    width: 50%;
    margin: 0 1rem;
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.coupon .heading,
.payment .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 2;
}

.coupon .info {
    line-height: 3;
    color: #989898;
}

.coupon input {
    height: 2.2rem;
    padding: 0.4rem 0.8rem;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

.coupon button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.coupon button {
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.coupon button:hover a {
    color: #fff;
}

.coupon button:hover {
    background-color: var(--secondary-color);
}

.payment div {
    color: #989898;
    height: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.7px solid #c8c8c8;
}


.payment .orderTotal {
    color: #a16a26;
    border: none;
}

/*#endregion */


/* ================= Login/Signup Page =================== */

/*#region */

.login-signup {
    margin: 5rem 2rem;
    padding: 0 14rem;
    display: flex;
}

.login,
.signup {
    width: 100%;
    margin: 1rem 8rem;
    padding: 5rem 3rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.login-signup .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 2;
}

.login-signup .info {
    line-height: 3;
    color: #989898;
}

.login-signup input {
    height: 2.3rem;
    padding: 0.4rem 0.8rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

.login-signup button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.login-signup button {
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.login-signup button:hover a {
    color: #fff;
    font-weight: 600;
}

.login-signup button:hover {
    background-color: var(--secondary-color);
}



/*#endregion */


/* ================= Contact Page =================== */

/*#region */


/* Contact  Section*/

.contact-form {
    margin: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form .text {
    text-align: center;
    color: black;
    font-size: 2.8rem;
    font-weight: bold;
}

.contact-form span {
    font-size: var(--medium-font-size);
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: var(--secondary-color);
}

.contact-form .contact {
    width: 75%;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.contact-form .contact input,
.contact-form .contact textarea {
    height: 2.8rem;
    padding: 0.4rem 0.8rem;
    font-family: var(--font-family);
    font-size: 1rem;
    margin: 0.5rem 0;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

.contact-form .contact textarea {
    height: 15rem;
    padding: 1rem;
    resize: none;
}

.contact button a {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.contact-form .contact button {
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.contact-form .contact button:hover a {
    color: #fff;
}

.contact-form .contact button:hover {
    background-color: var(--secondary-color);
}


/*#endregion */


/* ================= FAQ Page =================== */

/*#region */

.faq-section {
    margin: 4rem 3rem;
    display: flex;
}

.procedure {
    margin: 0 1rem;
    padding: 0 4rem;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    transform: scale(0.8);
}

.procedure .step {
    height: 14rem;
    /* width: 10rem; */
    border-radius: 50%;
    background: var(--gradient-color);
    color: var(--primary-color);
    color: #e8e0d7;
    color: #2e1800;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0.9rem;
    width: 21%;
    text-transform: capitalize;
}

.procedure .step:nth-child(even) {
    margin-top: 8rem;
}

.topics,
.questions {
    margin: 0 2rem;
    /* padding: 1rem; */
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.topics {
    width: 30%;
    height: 22rem;
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.topics p {
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.topics p:hover {
    cursor: pointer;
    color: var(--secondary-color);
}

.questions {
    width: 70%;
}

.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.2s;
}

.accordion:after {
    content: '\02795';
    font-size: 10px;
    /* color: #777; */
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: "\2796";
}

.panel {
    display: none;
    line-height: 1.2;
    padding: 8px 10px;
    padding: 20px 18px;
    background-color: #EAEAEA;
    background-color: #f7f7f7;
    color: #444;
    font-size: 0.9rem;
    overflow: hidden;
    transition: 0.2s ease-out;
}


/*#endregion */

/* ================= Add Product Page =================== */

/*#region */


.addProduct {
    margin: 4rem 22rem;
    padding: 2rem 4rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.addProduct .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 2;
}

.addProduct input, .addProduct select {
    height: 2.5rem;
    padding: 0.7rem 0.8rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background-color: #F6F6F6;
    font-family: var(--font-family);
}

.addProduct select, .addProduct select option {
    color: #666666;
}

.addProduct button {
    margin-top: 1rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.addProduct button:hover {
    color: #fff;
    background-color: var(--secondary-color);
}


/*#endregion */

/* ================= Add Category Page =================== */

/*#region */

.addCategory {
    margin: 4rem 22rem;
    padding: 2rem 4rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.addCategory .heading {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: 2;
}

.addCategory input {
    height: 2.5rem;
    padding: 0.7rem 0.8rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background-color: #F6F6F6;
}

.addCategory button {
    margin-top: 1rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.addCategory button:hover {
    color: #fff;
    background-color: var(--secondary-color);
}


/*#endregion */


/* ================= Delete Product Page =================== */

/*#region */


.deleteProduct {
    background-color: #fff;
    margin: 5rem 3rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.deleteProduct-header {
    margin: 1rem 2rem;
    padding: 0.7rem 5rem;
    background-color: #F6F6F6;
    display: flex;
    justify-content: space-between;
}

.products {
    margin: 0 2rem;
    padding: 0.7rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr 1fr; */
    grid-gap: 2rem;
    align-items: center;

}

.products div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products .delete img {
    width: 15%;
    cursor: pointer;
}

/*#endregion */


/* ================= Delete Category Page =================== */

/*#region */


.deleteCategory {
    background-color: #fff;
    margin: 5rem 3rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.deleteCategory-header {
    margin: 1rem 2rem;
    padding: 0.7rem 0;
    background-color: #F6F6F6;
    display: flex;
    justify-content: space-around;
}

.category {
    margin: 0 2rem;
    padding: 0.7rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    align-items: center;

}

.category div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category .delete img {
    width: 7%;
    cursor: pointer;
}


/*#endregion */



/* ================= Responsiveness (IPad Air) =================== */

/*#region */


@media only screen and (max-width: 850px) {

    .btn {
        padding: 0.5rem 1.1rem;
        width: 8rem;
        height: 2rem;
    }

    .img-slider {
        height: 42rem;
    }

    .slider-one .slider-one-image .slider-text,
    .slider-one .slider-two-image .slider-text,
    .slider-one .slider-three-image .slider-text,
    .slider-two .slider-one-image .slider-text,
    .slider-two .slider-two-image .slider-text,
    .slider-two .slider-three-image .slider-text,
    .slider-three .slider-one-image .slider-text,
    .slider-three .slider-two-image .slider-text,
    .slider-three .slider-three-image .slider-text {
        width: 570px;
        top: 30%;
        left: 28%;
    }


    .slider-one .slider-one-image .slider-text h1,
    .slider-one .slider-two-image .slider-text h1,
    .slider-one .slider-three-image .slider-text h1,
    .slider-two .slider-one-image .slider-text h1,
    .slider-two .slider-two-image .slider-text h1,
    .slider-two .slider-three-image .slider-text h1,
    .slider-three .slider-one-image .slider-text h1,
    .slider-three .slider-two-image .slider-text h1,
    .slider-three .slider-three-image .slider-text h1 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .navMenu {
        width: 22%;
    }

    .shop-dropdown {
        top: 12.4%;
    }

    .website-intro {
        padding-left: 2rem;
    }

    .way-of-thinking {
        margin: 3rem;
    }

    .way-of-thinking .text {
        width: 65%;
    }

    .way-of-thinking .text h1 {
        font-size: 2.2rem;
    }

    .way-of-thinking .text button {
        margin-top: 0.4rem;
    }


    .website-intro .side-img {
        width: 35%;
    }


    .products-intro {
        margin-top: 5rem;
    }

    .products-intro .products-grid {
        grid-gap: 0 2rem;
    }

    .products-intro .products-grid img {
        width: 220px;
        height: 280px;
    }

    .products-intro .btn {
        /* margin: 0; */
        margin-top: -2rem;
    }


    .partners .partners-grid {
        margin: 1rem 3rem;
        grid-gap: 4.5rem;
    }

    .partners .partners-grid img {
        width: 90%;
    }


    .shop-products-grid {
        margin: 1rem 2rem;
        grid-gap: 2rem 3rem;
    }

    .shop-products-grid img {
        width: 220px;
        height: 280px;
    }

    .shop-products-grid .product {
        height: 340px;
    }

    .shop-products-grid .product .toggle-info .img {
        margin-top: 6rem;
    }

    /* ==================================================================== */

    .cart-container {
        margin: 5rem 2rem;
        padding: 2rem 0;
    }

    .cart-header {
        margin: 1rem 1.5rem;
        padding: 0.7rem 3rem;
        padding-left: 5rem;
    }

    .cart-items {
        margin: 0 1.5rem;
    }

    .cart-items .img-detail img {
        width: 95px;
        height: 90px;
    }

    .cart-items .img-detail .detail {
        margin-left: 0.6rem;
    }

    .cart-items .img-detail .detail .name {
        font-size: 0.7rem;
    }

    .cart-items .detail .color,
    .cart-items .detail .size {
        font-size: 0.5rem;
    }


    .quantity .minus,
    .quantity .plus {
        font-size: 16px;
        height: 22px;
        width: 24px;
        padding: 1px;
    }

    .cart-items .quantity input {
        height: 22px;
        width: 27px;
        font-size: 14px;
    }

    .cart-items .total {
        margin-left: 1.5rem;
    }

    .cart-items .remove {
        margin-left: 1.6rem;

        height: 22px;
        width: 25px;
        font-size: 1.2rem;
        padding-bottom: 4px;
    }

    /* ==================================================================== */

    .wishlist-container {
        margin: 5rem 2rem;
        padding: 2rem 0;
    }

    .wishlist-header {
        margin: 1rem 1.5rem;
        padding: 0.7rem 3rem;
        padding-left: 6rem;
    }

    .wishlist-items {
        margin: 0 1.5rem;
    }

    .wishlist-items .img-detail img {
        width: 95px;
        height: 90px;
    }

    .wishlist-items .img-detail .detail {
        margin-left: 0.6rem;
    }

    .wishlist-items .img-detail .detail .name {
        font-size: 0.7rem;
    }

    .wishlist-items .detail .color,
    .wishlist-items .detail .size {
        font-size: 0.5rem;
    }

    .wishlist-items .addCart {
        margin-left: 1rem;

    }

    .wishlist-items .remove {
        margin-left: 1.6rem;

        height: 22px;
        width: 25px;
        font-size: 1.2rem;
        padding-bottom: 4px;
    }

    .contact-form {
        margin: 4rem 2rem;
    }

    .contact-form .contact {
        width: 80%;
    }

    /* ==================================================================== */

    .login-signup {
        margin: 5rem 2rem;
        padding: 0 4rem;
    }


    .login,
    .signup {
        width: 100%;
        margin: 1rem 5rem;
        padding: 5rem 3rem;
    }

    /* ==================================================================== */


    .addProduct {
        margin: 4rem 12rem;
        padding: 2rem 3rem;
    }

    /* ==================================================================== */


    .addCategory {
        margin: 4rem 12rem;
        padding: 2rem 3rem;
    }

    /* ==================================================================== */


    .deleteProduct {
        margin: 5rem 3rem;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
    }

    .deleteProduct-header {
        padding: 0.7rem 2rem;
    }

    .products div {
        font-size: 0.8rem;
    }


    /* ==================================================================== */

    footer .info {
        padding: 2rem;
        display: flex;
        /* align-items: center; */
    }


    footer .social-links {
        padding-left: 1rem;
    }

}

/*#endregion */


/* ================= Responsiveness (IPhone 12 Pro) =================== */

/*#region */


@media only screen and (max-width: 420px) {

    .btn {
        padding: 0.3rem 0.9rem;
        width: 7rem;
        height: 1.8rem
    }

    .img-slider {
        height: 33rem;
    }

    .slider-one .slider-one-image .slider-text,
    .slider-one .slider-two-image .slider-text,
    .slider-one .slider-three-image .slider-text,
    .slider-two .slider-one-image .slider-text,
    .slider-two .slider-two-image .slider-text,
    .slider-two .slider-three-image .slider-text,
    .slider-three .slider-one-image .slider-text,
    .slider-three .slider-two-image .slider-text,
    .slider-three .slider-three-image .slider-text {
        width: 280px;
        top: 30%;
        left: 24%;
    }


    .slider-one .slider-one-image .slider-text h1,
    .slider-one .slider-two-image .slider-text h1,
    .slider-one .slider-three-image .slider-text h1,
    .slider-two .slider-one-image .slider-text h1,
    .slider-two .slider-two-image .slider-text h1,
    .slider-two .slider-three-image .slider-text h1,
    .slider-three .slider-one-image .slider-text h1,
    .slider-three .slider-two-image .slider-text h1,
    .slider-three .slider-three-image .slider-text h1 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }


    .slider-one .slider-one-image .slider-text p,
    .slider-one .slider-two-image .slider-text p,
    .slider-one .slider-three-image .slider-text p,
    .slider-two .slider-one-image .slider-text p,
    .slider-two .slider-two-image .slider-text p,
    .slider-two .slider-three-image .slider-text p,
    .slider-three .slider-one-image .slider-text p,
    .slider-three .slider-two-image .slider-text p,
    .slider-three .slider-three-image .slider-text p {
        font-size: 13px;
        font-weight: 300;
        line-height: 23px;
    }



    .hamburger {
        margin-left: 0.5rem;
    }


    nav .logo img {
        width: 40%;
    }

    .search,
    .cart {
        margin-right: -2.5rem;
    }

    .search img {
        width: 32%;
    }

    .cart img {
        width: 32%;
    }


    .navMenu {
        width: 25%;
    }

    .nav-item {
        font-weight: 500;
        padding: 8px 0;
        margin: 4px 0;
        height: 30px;
    }


    .shop span {
        font-size: 0.8rem;
    }

    .shop-dropdown {
        top: 13%;
        height: 9rem;
        width: 8rem;

    }

    .shop-dropdown li {
        padding: 10px 0;
        height: 32px;
        transition: all 0.2s ease-in-out;
    }

    .website-intro {
        margin: 4rem 2rem;
        padding-left: 2rem;
    }

    .website-intro .text {
        margin-right: 0;
    }

    .website-intro .intro-img .img1 {
        width: 45%;
        margin: 1rem;
    }

    .website-intro .intro-img .img2 {
        width: 35%;
        margin: 3rem 0;
    }


    .way-of-thinking {
        margin: 3rem;
    }


    .way-of-thinking .text {
        width: 95%;
    }

    .way-of-thinking .side-img {
        display: none
    }

    .products-intro {
        margin-top: 5rem;
    }

    .products-intro .text {
        width: 15rem;
    }

    .products-intro .products-grid .product {
        height: 230px;
    }

    .products-intro .products-grid {
        margin-top: 2rem;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-gap: 2.5rem 1.5rem;
    }

    .products-intro .product .toggle-info {
        top: -68%;
    }

    .products-intro .product .toggle-info .img {
        margin-top: 4.5rem;
    }

    .products-intro .product .toggle-info img {
        width: 15px;
        height: 15px;
    }

    .products-intro .products-grid img {
        width: 160px;
        height: 210px;
    }

    .products-grid .product:nth-child(2),
    .products-grid .product:nth-child(5) {
        top: 0;
    }

    .products-intro .btn {
        margin-top: 2rem;
    }


    .partners {
        margin: 1rem 0;
        padding-left: 1rem;
        padding: 2rem;
    }

    .partners .partners-grid {
        margin: 1.4rem 2rem 0rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* grid-template-rows: 1fr; */
        grid-gap: 2rem;
    }

    .partners .partners-grid img {
        width: 70%;
    }


    #filters {
        display: flex;
        align-items: center;
        margin: 2rem 1rem;
    }

    #filters nav#menu-area {
        padding-left: 1rem;
        height: 40px;
    }

    #filters nav#menu-area ul li {
        font-size: 10px;
        width: 80px;
    }

    .shop-products-grid {
        margin: 1rem 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 1rem 2rem;
    }

    .shop-products-grid img {
        width: 160px;
        height: 200px;
    }

    .shop-products-grid .product {
        height: 280px;
    }

    .shop-products-grid .product .toggle-info .img {
        margin-top: 5.5rem;
    }

    .container {
        margin: 0 1rem;
        padding: 15px;
        border-radius: 8px;
        column-gap: 8px;
    }


    .button,
    .link {
        height: 25px;
        width: 25px;
        font-size: 12px;
    }

    /* ========================================= */

    .cart-container {
        margin: 2rem 1rem;
        padding: 1rem 0;
    }

    .cart-header {
        margin: 1rem 1rem;
        padding: 0.7rem 1rem;
        /* padding-left: 2rem; */
        justify-content: space-between;
        font-size: 0.8rem;
    }


    .cart-items {
        margin: 0 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-gap: 1rem;
        align-items: center;
    }

    .cart-items .img-detail .detail {
        display: none;
    }

    .cart-items .img-detail img {
        width: 50px;
        height: 45px;
    }

    .cart-items .img-detail .detail .name {
        font-size: 0.6rem;
    }

    .cart-items .detail .color,
    .cart-items .detail .size {
        font-size: 0.4rem;
    }


    .quantity .minus,
    .quantity .plus {
        font-size: 10px;
        height: 16px;
        width: 18px;
        padding: 1px;
    }

    .cart-items .quantity input {
        height: 16px;
        width: 20px;
        font-size: 8px;
    }

    .cart-items .total,
    .cart-items .price {
        font-size: var(--small-font-size);
    }

    .cart-items .remove {
        margin-left: 0.7rem;

        height: 15px;
        width: 17px;
        font-size: 1rem;
        padding-bottom: 4px;
    }

    .coupon-payment {
        margin: 2rem 0rem;
        display: flex;
        flex-direction: column;
    }

    .coupon,
    .payment {
        width: 90%;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .coupon .heading,
    .payment .heading {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .coupon .info {
        line-height: 2;
        color: #989898;
    }

    .coupon input {
        height: 2rem;
        padding: 0.3rem 0.6rem;
    }

    .coupon button {
        margin-top: 0.7rem;
    }

    .payment div {
        font-size: var(--small-font-size);
        height: 2rem;
    }

    /* ========================================= */

    .wishlist-container {
        margin: 2rem 1rem;
        padding: 1rem 0;
    }

    .wishlist-header {
        margin: 1rem 1rem;
        padding: 0.7rem 1rem;
        /* padding-left: 2rem; */
        justify-content: space-between;
        font-size: 0.7rem;
    }


    .wishlist-items {
        margin: 0 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-gap: 0.7rem;
        align-items: center;
    }

    .wishlist-items .img-detail .detail {
        display: none;
    }

    .wishlist-items .img-detail img {
        width: 50px;
        height: 45px;
    }

    .wishlist-items .img-detail .detail .name {
        font-size: 0.6rem;
    }

    .wishlist-items .detail .color,
    .wishlist-items .detail .size {
        font-size: 0.4rem;
    }

    .wishlist-items .price,
    .wishlist-items .status {
        font-size: var(--small-font-size);
    }

    .wishlist-items .addCart {
        margin-left: 0rem;

    }

    .wishlist-items .addCart img {
        width: 25%;

    }

    .wishlist-items .remove {
        margin-left: 0.7rem;

        height: 15px;
        width: 17px;
        font-size: 1rem;
        padding-bottom: 4px;
    }

    /* ==================================================================== */


    .billing-shipping {
        margin: 3rem 1rem;
        display: flex;
    }

    .billing,
    .shipping {
        width: 50%;
        /* margin: 0 1rem; */
        padding: 2rem 1rem;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }

    .billing .heading,
    .shipping .heading {
        font-size: var(--small-font-size);
        font-weight: 600;
        line-height: 3.5;
    }

    .billing-shipping input,
    .billing-shipping select {
        height: 1.3rem;
        padding: 0.5rem 0.6rem;
        margin: 0.4rem 0;
        font-size: 0.5rem;
    }

    /* ==================================================================== */


    .login-signup {
        margin: 2rem 2rem;
        flex-direction: column;
        padding: 0 1rem;
    }

    .login,
    .signup {
        width: 100%;
        margin: 1rem 0;
        padding: 1.5rem;
    }

    .login-signup .heading {
        font-size: var(--small-font-size);
        font-weight: 600;
        line-height: 2;
    }

    .login-signup .info {
        font-size: 0.7rem;
        line-height: 3;
        color: #989898;
    }

    .login-signup input {
        height: 1.3rem;
        padding: 0.5rem 0.6rem;
        margin: 0.4rem 0;
        font-size: 0.5rem;
    }

    /* ==================================================== */


    .contact-form {
        margin: 3rem 1rem;
    }

    .contact-form .text {
        font-size: 2.2rem;
    }

    .contact-form .contact {
        width: 95%;
        padding: 1.5rem;
    }


    .contact-form .contact textarea {
        height: 10rem;
    }

    .contact-form .contact input,
    .contact-form .contact textarea {
        font-size: 0.9rem;
    }

    /* ==================================================================== */


    .faq-section {
        margin: 2rem 0;
        flex-direction: column;
    }

    .topics,
    .questions {
        width: 90%;
        margin: 1rem;
    }

    .accordion {
        padding: 15px;
    }


    .accordion:after {
        font-size: 7px;
        margin-left: 0;
    }


    .panel {
        padding: 16px 15px;
    }

    /* ==================================================================== */


    .addProduct {
        margin: 3rem 2rem;
        padding: 2rem;
    }

    /* ==================================================================== */


    .addCategory {
        margin: 3rem 2rem;
        padding: 2rem;
    }

    /* ==================================================================== */

    .deleteProduct {
        margin: 2rem 1rem;
        padding: 1rem 0;
    }

    .deleteProduct-header {
        margin: 0.5rem 1rem;
        padding: 0.6rem 0.7rem;
        font-size: 0.7rem;
        overflow: scroll;
    }

    .products {
        padding: 0.6rem 0;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 1rem;
        overflow: scroll;
    }

    .products div {
        font-size: 0.7rem;
    }


    .products .delete img {
        width: 35%;
    }

    /* ==================================================================== */


    .deleteCategory {
        margin: 4rem 2rem;
        padding: 1rem 0;
    }

    .deleteCategory-header {
        margin: 0.5rem 1rem;
        padding: 0.5rem 0;
    }

    .category {
        margin: 0 1rem;
        padding: 0.7rem 0;
        grid-gap: 1rem;
    }

    .category div {
        font-size: 0.7rem;
    }

    .category .delete img {
        width: 22%;
    }


    /* ==================================================================== */

    footer .info {
        padding: 2rem 1rem;
    }

    footer .info .logo-detail {
        padding-right: 0.5rem;
        width: 33%;
    }

    footer .info .logo-detail img {
        width: 50%;
    }

    footer .social-links {
        padding-left: 1rem;
    }

    footer .social-links .link-heading {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    footer .social-links div {
        margin: 0.4rem 0;
    }

    footer .social-links img {
        width: 12px;
        height: 12px;
        margin-right: 0.5rem;
    }

    footer .contact-us {
        margin-left: 0.5rem;
    }

    footer .contact-us .contact-heading {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    footer .contact-us img {
        width: 12px;
        height: 12px;
        margin-right: 0.5rem;
    }

    footer .contact-us div {
        margin: 0.4rem 0;
    }

    footer .contact-us div p {
        font-size: 0.5rem;
    }

}

/*#endregion */