@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
    font-style: "Poppins";
}

:root {
    --dark: #C9755C;
    --gray: rgb(30, 30, 30);
    --light: white;
    --drk-light: #ce826b;
    --dark-gray: rgb(36, 36, 36);
    --body-text-clr: #3c3c46;
    --lg-p-size: 17px;
    --md-p-size: 16px;
    --sm-p-size: 15px;
}

html {
    font-size: 62.5%;
}

/* start navbar area  */
.offer-top {
    background-color: var(--dark);
}

.offer-top p {
    color: var(--light);
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 1rem 0;
    text-align: center;
    animation: showDiscount 1s infinite;
    opacity: 1;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.offer-top p span {
    font-weight: 400;
    letter-spacing: 0.4rem;
}

@keyframes showDiscount {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

nav {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* top: 0;
    left: 0; */
    height: 12.5rem;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    background-color: var(--light);
    z-index: 100;

}

.top_nav_box {
    position: sticky;
    top: -0.1rem;
    left: 0;
    z-index: 100;

}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
    gap: 3rem;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.suggestion-box {
    width: 100%;
    list-style: none;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 105;
    padding: 0 0.5rem;
    background-color: #f0f0f0;
    display: none;
}

.suggestion-box li {
    padding: 1.5rem;
    background-color: #d5d3d3;
    margin: 1rem 0;
    font-size: 1.6rem;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 0.5rem;
}

.suggestion-box li:hover {
    background-color: #c7c5c5;
}

.search-bar {
    width: 50%;
    flex-grow: 1;
    display: flex;
}

.search-bar a {
    display: inline-block;
    margin: 0rem 1rem;
    padding: 1.2rem 2.8rem;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 450;
    transition: all 0.4s;
    border: 2px solid var(--dark);
}

.search-bar a:hover {
    background-color: var(--light);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.search-bar input {
    padding: 1.6rem;
    width: 50%;
    font-size: 1.6rem;
    background-color: #bdbdbd7e;
    border: none;
    flex-grow: 1;

}

.auth-box a {
    display: inline-block;
    margin: 0rem 1rem;
    padding: 1.2rem 2.8rem;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 450;
    transition: all 0.4s;
    border: 2px solid var(--dark);
}

.auth-box a:hover {
    background-color: var(--light);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.auth-box a:last-child {
    margin: 0;
    margin-right: 1rem;
}

nav .logo {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 5rem;
    transform: translate(0, -50%);
}
nav .logo img {
    width: 15rem;
    height: 7.5rem;
}

nav .cart {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 2.8rem;

}

nav .cart::after {
    position: absolute;
    top: 0.7rem;
    left: 90%;
    content: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
    z-index: 2;

}

nav .cart.added::after {
    content: "";
}



nav .nav-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;

}

.nav-items li {
    list-style: none;
}

.nav-items li a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.5rem;
    color: var(--dark);
    position: relative;
}

.nav-items li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: .2rem;
    width: 0%;
    background: var(--dark);
}

.nav-items li a:hover::before {
    width: 100%;
    transition: all 0.4s ease;
}

.nav-items li a:focus::before {
    width: 100%;
    transition: all 0.4s ease;
}


.menubar {
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    display: none;

}

/* .no-scroll{
    overflow: hidden;
} */
/* end navbar area  */


/* header section start  */
.header {
    width: 100%;
}

.header .header-container {
    width: 100%;
    aspect-ratio: 16/8;
    background: url(../images/headerimage3.jpg) no-repeat top;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.34); */
}

.header-content {
    width: 60%;
    text-align: center;
    position: relative;
    margin-top: 8rem;
    display: none;

}

.header-content h1 {
    font-family: "Pacifico", cursive;
    font-size: 4.5rem;
    text-transform: capitalize;
    color: var(--dark);
    line-height: 4.1rem;
    font-weight: 550;
}

.header-content p {
    font-size: 1.9rem;
    color: var(--light);
    margin: 1rem auto;
    font-weight: 450;
    width: 65%;

}

.header-content a {
    text-decoration: none;
    color: var(--light);
    background-color: var(--dark);
    padding: 1.2rem 2.8rem;
    border: 2px solid var(--dark);
    font-size: 1.6rem;
    display: inline-block;
    margin: 1.5rem 0;
    font-weight: 450;
    text-transform: capitalize;
    transition: all 0.4s;
}

.header-content a:hover {
    background-color: var(--drk-light);
    color: var(--light);
    border: 2px solid var(--drk-light);
}

/* header section end  */


/* new collection start  */
.new-collection {
    width: 100%;
}

.headline {
    text-align: center;
    margin: 3rem 0;
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 550;
    color: var(--dark);
}

.new-collection-container {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3.5rem 0;
    margin: 0 auto;
    gap: 1rem;
}

.collection-box {
    width: 30rem;
    aspect-ratio: 16/17;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;

}

.collection-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;

}

.collection-box a {
    position: relative;
    display: block;
    width: 85%;
    padding: 1rem 0;
    background-color: var(--light);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 550;
    margin-bottom: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.4s;
    border-radius: 0.4rem;

}

.collection-box a:hover {
    background-color: var(--dark);
    color: var(--light);
    box-shadow: none;
}

/* new collection end  */





/* our story start  */
.our-story {
    width: 100%;
}

.story-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.story-container .image-box-container {
    width: 50%;
    overflow: hidden;
}

.story-container .image-box {
    width: 65%;
    aspect-ratio: 9/12;
    position: relative;


}

.story-container .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}

.story-container .image-box .sub-image-box {
    width: 100%;
    aspect-ratio: 16/10;
    position: absolute;
    left: 50%;
    top: 45%;


}

.story-container .image-box .sub-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-container .story-content {
    width: 40%;



}

.story-content>a {
    display: inline-block;
    margin: 1.5rem 1rem;
    padding: 1.2rem 2.8rem;
    background-color: var(--dark);
    color: var(--light);
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 450;
    transition: all 0.4s;
    border: 2px solid var(--dark);
}

.story-content>a:hover {
    background-color: var(--drk-light);
    border: 2px solid var(--drk-light);

}

.story-container .story-content .paragraph {
    font-size: var(--lg-p-size);
    color: var(--body-text-clr);
    line-height: calc(var(--lg-p-size) * 1.5);
    margin: 1.5rem 0;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.story-data-container {
    width: 98%;
    display: flex;
    justify-content: space-between;
    margin: 1.5rem auto;

}

.story-data-container .story-data-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.story-data-container .story-data-box h1 {
    font-size: 2.5rem;
    color: var(--dark);

}

.story-data-container .story-data-box p {
    font-size: var(--lg-p-size);
    text-transform: capitalize;
    font-weight: 500;
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

/* our story end  */


/* sale section start  */
.sale {
    width: 100%;

}

.sale-container {
    width: 80%;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.sale-container .sale-box {
    width: 30rem;
    aspect-ratio: 16/16;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sale-container .sale-box::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    position: absolute;
    top: 100%;
    left: 0%;
    transition: all 0.4s;
}

.sale-container .sale-box:hover::before {
    top: 0%;
}

.sale-tag {
    width: fit-content;
    padding: 0.3rem 1.3rem;
    background-color: var(--dark);
    color: white;
    text-transform: uppercase;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    border-radius: 1rem;

}

.off-tag {
    position: absolute;
    left: 1rem;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    display: none;

}

.off-tag h2 {
    color: var(--dark);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 450;
    line-height: 1.7rem;
}

.off-tag h2 span {
    font-size: 1.7rem;
}

.off-tag a {
    font-size: 1.2rem;
    color: var(--light);
    font-weight: 500;
    background-color: var(--dark);
    text-decoration: none;
    padding: 0.5rem 1.8rem;
    display: inline-block;
    text-transform: uppercase;
    margin-right: 2rem;



}

.sale-content {
    width: 70%;
    text-align: center;
    position: relative;
    display: none;
    transition: all 0.5s 0.3s linear;
}

.sale-container .sale-box:hover .sale-content {
    display: block;
}

.sale-content h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--light);
    line-height: 2.3rem;
}

.sale-content h1 span {
    font-size: 2rem;
}

.sale-content p {
    color: var(--light);
    font-size: 1.6rem;
    text-transform: capitalize;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.sale-content a {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.7rem 2rem;
    border: 2px solid var(--light);
    color: var(--light);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 470;
    text-decoration: none;
    transition: all 0.3s;
}

.sale-content a:hover {
    background-color: var(--dark);
    color: var(--light);
    border: 2px solid var(--dark);

}

.sale-container .sale-box:nth-child(1) {
    background: url(../images/fabric-design-sale.jpg) no-repeat top;
    background-size: cover;
}

.sale-container .sale-box:nth-child(2) {
    background: url(../images/stitching-service-sale.jpg) no-repeat top;
    background-size: cover;
}
/* sale section end  */


/* deal section start  */
.deal {
    width: 100%;
}

.deal-container {
    width: 100%;
    aspect-ratio: 16/4;
    background: url(../images/dealbanner2.jpg) no-repeat bottom;
    background-size: cover;
    display: flex;
    align-items: center;
}

.deal-headline {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 550;
    color: var(--dark);
}

.deal-data-box {
    width: 50%;
    margin-left: 5rem;
}

.deal-text {
    font-size: var(--lg-p-size);
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    line-height: calc(var(--lg-p-size) * 1.5);

}

.counter {
    display: flex;
    gap: 2.5rem;
    margin: 1rem 0;
}

.count {
    text-align: center;
    border: 2.5px solid var(--dark);
    width: 7rem;
    height: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--light);
}

.count h1 {
    font-size: 2rem;
    font-weight: 520;
    line-height: 1.8rem;
    color: var(--dark);
}

.count p {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.deal-data-box a {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 1.2rem 2.8rem;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 450;
    transition: all 0.4s;
    border: 2px solid var(--dark);
}

.deal-data-box a:hover {
    background-color: var(--drk-light);
    border: 2px solid var(--drk-light);

}

/* deal section end  */




/* prodcut section start  */
.product-section {
    width: 100%;
}

.catelog {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;


}

.catelog p {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 0;
    cursor: pointer;
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.text-bold {
    font-weight: 630 !important;
    font-size: 1.45rem;
}

.category-dropdown-cover{
    width: 93%;
    margin: 0 auto;
    display: none;
    justify-content: space-between;
    align-items: center;
}
.category-dropdown-cover label{
    font-weight: 500;
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    font-size: var(--lg-p-size);
}
.category-dropdown-cover select{
    padding: 1rem 1.5rem;
    border: 2px solid var(--dark);
    color: var(--dark);
    border-radius: .5rem;
    font-size: 16px;
}
.product-container {
    width: 85%;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-content: center;
    gap: 3.5rem 2rem;

}

.product-catelog-box {
    width: 100%;
}

.product-container .product-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--dark);


}

.product-image-link .img-box {
    width: 100%;
    aspect-ratio: 16/16;
}

.product-image-link .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#price-list {
    width: 100%;
    text-decoration: none;
    margin-top: -0.5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1rem;

}

#price-list .product-title {
    font-size: 1.4rem;
    text-transform: capitalize;
    font-weight: 470;

}

.price-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    margin-top: 1.3rem;

}

.price-list p {
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    display: none;
}

.price-list p span {
    color: var(--gray);
    text-decoration: line-through;
    padding-left: 0.5rem;
}

.price-list a {
    color: var(--dark);
    font-weight: 450;
    text-transform: capitalize;
    padding-right: 0.5rem;
    cursor: pointer;
    text-decoration: underline;

}

.more {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 1.2rem 2.8rem;
    width: fit-content;
    background-color: var(--dark);
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 450;
    transition: all 0.4s;
    border: 2px solid var(--dark);
}

.more:hover {
    background-color: var(--drk-light);
    border: 2px solid var(--drk-light);
}

.more-box {
    text-align: center;
}

/* prodcut section end  */

/* footer section start  */
footer {
    width: 100%;
}

footer hr {
    width: 100%;
    margin: 2rem 0;
    border-bottom: 3px solid var(--drk-light);
}

.footer-container {
    color: var(--dark-gray);
    width: 80%;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-columns: 1fr auto auto auto;
    justify-items: start;
    gap: 2rem 2.5rem;
}
.footer-box{ 
    width: 100%;
    
}


.footer-box h2 {
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--dark);
}

.footer-box li {
    font-size: var(--lg-p-size);
    list-style: none;
    font-weight: 470;
    padding: 0.4rem 0;
    color: var(--body-text-clr);
}

.footer-box li a {
    text-decoration: none;
    color: var(--body-text-clr);
}
.footer-box li > i{
    margin-right: 1rem;
}

.footer-box:nth-child(4) ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-down {
    display: flex;
    padding: 2rem 0;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light);
}

.footer-content {
    margin-left: 2.5rem;
}

.footer-content p {
    font-size: var(--lg-p-size);
    font-weight: 480;
    color: var(--body-text-clr);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    line-height: calc(var(--lg-p-size) * 1.5);
}

.footer-content p a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
}

.footer-form {
    margin-right: 2.5rem;
}

.footer-form input[type="text"] {
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
}

.footer-form input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 2px solid var(--dark);
    width: 25rem;
}

.footer-form input[type="submit"] {
    padding: 1rem 2rem;
    font-size: 1.3rem;
    border: 2px solid var(--dark);
    color: var(--light);
    text-transform: uppercase;
    background-color: var(--dark);
    cursor: pointer;
    font-weight: 500;
}

.footer-form input[type="submit"]:hover {
    background-color: var(--light);
    color: var(--dark);
}


.move-top {
    border: none;
    outline: none;
    font-size: 4.5rem;
    cursor: pointer;
    position: fixed;
    bottom: 10rem;
    right: 1.5rem;
    background-color: transparent;
    display: block;
}

/* footer section end  */

/* popup section start  */
.popup-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-container .popup {
    width: 40%;
    aspect-ratio: 16/16;
    overflow: hidden;
    position: relative;


}

.popup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup button {
    padding: 1.1rem;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup i {

    font-size: 4rem;

}

/* popup section end  */

/* home page design end------------------------- */



/* about page design start---------------------- */
.breadcrumb {
    width: 100%;
}

.banner-container {
    width: 100%;
    aspect-ratio: 16/3;
    background: url(../images/banerheader.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner-data {
    width: 90%;
    text-align: center;
    margin-bottom: 2rem;


}

.banner-data h1 {
    color: var(--light);
    font-size: 3.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 4rem;
    font-weight: 500;
}

.banner-data p {
    font-size: 1.7rem;
    color: var(--light);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.banner-data p a {
    text-decoration: none;
    color: var(--light);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;

}

/* paper banner start  */
.paper-bg {
    aspect-ratio: 16/3;
    background: url(../images/paper-bg.jpg) no-repeat center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 4rem auto;


}

.paper-bg h1 {
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    font-weight: 550;
    font-size: 2.8rem;
    width: 65%;
}

/* paper banner end  */

/* about us section part two start */
.about-container {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 2rem auto;
}

.image-cover {
    width: 35%;
    aspect-ratio: 16/10;
    border-top-left-radius: 8.5rem;
    border-bottom-right-radius: 8.5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    overflow: hidden;
}

.image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-data-content p {
    font-size: var(--lg-p-size);
    font-weight: 480;
    padding: 0.5rem 0;
    color: var(--body-text-clr);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    line-height: calc(var(--lg-p-size) * 1.5);

}

.about-data-content {
    width: 50%;
}

/* about us section part two end */

/* -------------------testimonial start--------------------- */
.testimonial-headline {
    text-align: center;
    text-transform: capitalize;
    font-size: 3.5rem;
    color: var(--dark);
    padding: 2rem 0;

    font-weight: 550;
}

.testimonial-container {
    position: relative;
    width: 100%;
    overflow: hidden;

    background-color: var(--light);
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    margin: 3rem auto;
}

.swiper-button-next {
    color: var(--dark);
    top: 45%;

}

.swiper-button-prev {
    color: var(--dark);
    top: 45%;
}
.swiper{
    padding: 0 4.2rem;
    width: 90%;
    margin: 0 auto;
}
.swiper-slide {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 50%;
    /* height: 40rem;  */
    position: relative;
    overflow: hidden;
    gap: 3rem;
    align-items: center;
    justify-content: center;

}

.testimonial-image {
    width: 23rem;
    height: 23rem;
    position: relative;
    border: 2px solid #fff;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

}

.testimonial-image img {
    width: 100%;
    height: 100%;
    /* position: absolute;
    top: 0;
    left: 0; */
    object-fit: cover;
}

.testimonial-content {
    width: 60%;
    text-align: center;

}

.testimonial-content h2 {
    font-size: 3rem;
    color: var(--dark);
    text-transform: capitalize;
    padding: 0.5rem 0;
    font-weight: 400;
}

.testimonial-content p {
    font-size: var(--lg-p-size);
    padding: 0.5rem 0;
    color: var(--body-text-clr);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
    line-height: calc(var(--lg-p-size) * 1.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 1rem 0.5rem;
    background-color: var(--dark);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}

.slider-button-left {
    left: 10px;
}

.slider-button-right {
    right: 10px;
}

.quote h1 {
    font-size: 3rem;
}

.review {
    padding: 2rem 0;
}

.review .fa-star {
    color: rgb(255, 208, 0);
    margin: 0 1.2rem;
    font-size: 1.8rem;
}

.review-div {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: var(--dark);
    display: flex;
    justify-content: end;
    gap: 2rem;
    align-items: center;
}

.review-div p {
    font-size: 1.7rem;
    font-weight: 480;
    text-transform: uppercase;
    padding: 1rem 0;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.review-div a {
    display: inline-block;
    margin: 1rem 0;
    text-decoration: none;
    padding: 1.2rem 2.7rem;
    border: 2px solid var(--dark);
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 480;
    background-color: var(--dark);
    transition: 0.4s;
}

.review-div a:hover {
    background-color: var(--light);
    color: var(--dark);
    border: 2px solid var(--dark)
}

/* -------------------testimonial end--------------------- */

/* about page design end---------------------- */







/* contact page design start--------------------- */
.contacts {
    width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.c-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.c-data h2 {
    font-size: 2rem;
    font-weight: 550;
    color: var(--dark);
}

.c-data p {
    font-size: var(--lg-p-size);
    color: var(--body-text-clr);
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.contact-form input {
    display: block;
}

.contact-form>form>input[type="submit"] {
    display: block;
    width: 100%;
    margin: 1.5rem 0;
    padding: 1.3rem 0;
    text-transform: uppercase;
    background-color: var(--dark);
    outline: none;
    border: none;
    box-shadow: rgba(137, 44, 88, 0.35) 0px 5px 15px;
    color: var(--light);
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;

}

.contact-form>h2 {
    font-size: 2rem;
    font-weight: 550;
    text-transform: capitalize;
    color: var(--dark);
    margin: 1.5rem 0;
}

.contact-form>form>input[type="submit"]:hover {
    background-color: var(--drk-light);

}

.contact-form textarea {
    resize: none;
    overflow: auto;
    display: block;
    padding: 1.5rem;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 15rem;
    width: 100%;
}

.contact-container {
    width: 90%;
    margin: 3rem auto;
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.contact-form {
    width: 45rem;
}

.contact-form .flex-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;

}

.contact-form .flex-input input {
    padding: 1.5rem;
    width: 48%;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-form .phone {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* map section start  */
.map {
    width: 100%;
}

.map iframe {
    width: 100%;
    aspect-ratio: 16/4;
}

/* map section end  */
strong a {
    color: var(--body-text-clr);
}

/* contact page design end--------------------- */









/* collection page design start--------------------- */
section {
    width: 100%;
}

.category-box .img-container {
    width: 17rem;
    aspect-ratio: 16/16;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.category-box .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    cursor: pointer;

}

.category-box p {
    font-size: 1.4rem;
    font-weight: 550;
    text-transform: uppercase;
    color: var(--dark);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";

}

.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 90%;
    flex-wrap: wrap;
    margin: 1.5rem auto;
}

/* our products section start  */
.price-list .buy-btn {
    margin: 1rem 0;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light);
    background-color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--dark);
    transition: all 0.4s;
    display: none;
}

.price-list .buy-btn:hover {
    background-color: var(--drk-light);
    border: 2px solid var(--drk-light);
}

/* our products section end  */
/* collection page design end--------------------- */



/* cart page design start  */
.cart-section {
    width: 100;
    padding-top: 5rem;
}

.cart-section>h1 {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 500;
    align-items: center;
    width: 80%;
    margin: auto;

}

.cart-section>h1 i {
    padding: 0 1rem;
}

.cart-parent-container {
    width: 80%;
    padding: 3rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.cart-container {
    width: 60%;
    padding: 0 2rem;
    border-right: 1.5px solid rgba(132, 132, 132, 0.514);
    overflow-y: auto;
    aspect-ratio: 16/10;
}

.cart-container::-webkit-scrollbar {
    width: 1rem;
}

.cart-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.cart-container::-webkit-scrollbar-thumb {
    background-color: var(--dark);
    border-radius: 1.5rem;
}

.cart-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark);
}

.cart-container>h2,
.order-container>h2 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize;
    padding: 1.5rem 0;
}

.order-container {
    width: 35%;
    border: 3px solid #6969697c;
    padding: 2rem;
    border-radius: 1.5rem;
}

.order-container .order-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;


}

.order-container .order-box p {
    font-size: 1.6rem;
    text-transform: capitalize;
    letter-spacing: 0.05rem;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.order-container>a {
    display: block;
    padding: 1.1rem;
    color: var(--light);
    background-color: var(--dark);
    border-radius: 0.4rem;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-top: 2.5rem;
    transition: all 0.5s;
}

.order-container>a:hover {
    background-color: var(--dark-gray);
}

.order-container .order-box:nth-child(6) p {
    font-size: 1.6rem;
    text-transform: capitalize;
    letter-spacing: 0.05rem;
    font-weight: 550;
}

.order-container .order-box:nth-child(5) {
    display: none;
}

.order-container .order-box.shown:nth-child(5) {
    display: flex;
}

.cart-container .product-box {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
    border: 0.4px solid var(--gray);
    padding: 1rem;
}

.cart-container .product-box>button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;

}

.product-box .cart-product-image {
    width: 10rem;
    height: 10rem;
    overflow: hidden;

}

.product-box .cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.cart-product-content p {
    font-size: 1.6rem;
    text-transform: capitalize;
    font-weight: 460;
}

.qty-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.qty-container span {
    font-size: 1.6rem;
}

.qty-container span:nth-child(1),
.qty-container span:nth-child(3) {
    padding: 0.5rem 1.2rem;
    background-color: #e8e8e8;
    cursor: pointer;
}

.qty-container span:last-child {
    font-weight: 470;
}

.coupon-container input {
    padding: 1.3rem;
    width: 60%;
    border-radius: 0.5rem;
    border: 0.5px solid var(--dark);
    font-size: 1.6rem;
    letter-spacing: 0.6rem;

}

.coupon-container button {
    padding: 1.3rem 2rem;
    font-size: 1.4rem;
    color: var(--light);
    background-color: var(--dark);
    border: none;
    outline: none;
    border-radius: .6rem;
    cursor: pointer;
    transition: 0.4s;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.coupon-container button:hover {
    background-color: var(--dark-gray);
}

.coupon-error-message {
    display: none;
}

/* cart page design end  */


/* service page design start  */
.service {
    width: 85%;
    margin: 0 auto;
    padding: 5rem 0;
}

.service-container {
    width: 100%;
    margin: 3rem 0;

}

.service-container>h1 {
    text-transform: capitalize;
    font-size: 3.5rem;
    font-weight: 550;
    color: var(--dark);
    line-height: calc(3.5rem * 1.2);
}

.services-desc {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
    margin-top: 4rem;
}

.services-desc .img-wraper {
    width: 45%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;

}

.services-desc .img-wraper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.services-desc p {
    font-size: 18px;
    line-height: calc(18px * 1.5);
    width: 45%;
    color: var(--body-text-clr);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";

}

.service-image-catalog {
    margin: 5rem auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;

}

.service-image-catalog .service-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column;
}

.service-img-container .service-image-box {
    width: 100%;
    aspect-ratio: 16/16;
    overflow: hidden;
    border-radius: 50%;
}

.service-img-container .service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-img-container p {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 450;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

/* service page design end  */

/* privacy policy page design start  */
.privacy {
    width: 100%;
    padding: 5rem 0;
}

.privacy>h1 {
    color: var(--dark);
    text-align: center;
    font-weight: 550;
    text-transform: uppercase;
    font-size: 3rem;
}

.privacy-container {
    width: 75%;
    margin: 2rem auto;
}

.privacy-box {
    width: 100%;
    margin: 1.5rem 0;
}

.privacy-box h2 {
    font-size: 2.8rem;
    color: #151515;
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--dark), transparent);
    padding: 1.5rem;
    font-weight: 500;
}

.privacy-box p {
    margin: 1.5rem 0;
    padding: 0 1.5rem;
    font-size: var(--lg-p-size);
    color: var(--body-text-clr);
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.privacy-box ul {
    margin: 1.5rem 0;
    padding: 0 1.5rem;
    list-style-type: none;
}

.privacy-box ul li {
    font-size: var(--lg-p-size);
    color: var(--body-text-clr);
}

/* privacy policy page design end  */

/* external pages start  */
.seo-container {
    width: 75%;
    padding: 5rem 0;
    margin: 4rem auto;
}

.seo-container>h1 {
    font-size: 2.8rem;
    font-weight: 550;
    text-transform: capitalize;
    color: var(--dark);
}

.seo-container>p {
    font-size: var(--lg-p-size);
    line-height: calc(var(--lg-p-size) * 1.6);
    color: var(--body-text-clr);
    margin: 1rem 0;
    font-family: "Josefin Sans", sans-serif;
    font-style: "Josefin Sans";
}

.seo-image {
    width: 75%;
    padding-bottom: 3rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.seo-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* external pages end  */