/*---------------------------------------------------- Font------------------------- ------------*/

@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/*---------------------------------------------------- Color------------------------- ------------*/
:root {
    --color_white: #fff;
    --color_black: #2f2f2f;
    --primary: #ff6c3f;
    --secondary: #8e2a2a;
    --primary_light: #f5e0d5;
}

/*---------------------------------------------------- Text Selection------------------------- ------------*/
::-moz-selection {
    /* Code for Firefox */
    background-color: var(--primary);
    color: var(--color_white);
}

::selection {
    background-color: var(--primary);
    color: var(--color_white);
}

/*---------------------------------------------------- Universal selector ------------------------- ------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--color_white);
    color: var(--color_black);
}

* {
    padding: 0;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Caveat", cursive; */
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
    font-family: "Plus Jakarta Sans", sans-serif;
}

button {
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.btn {
    border: none;
    outline: none !important;
    background-color: var(--secondary);
    color: var(--color_white);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s linear;
    word-spacing: 3px;
}

.btn:hover {
    background-color: var(--color_black);
}

/* ::-webkit-scrollbar {
    display: none;
} */

::-webkit-scrollbar {
    width: 5px;
    display: none;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.conSection {
    display: flex;
    justify-content: center;
}

.container {
    width: 1200px;
}

h6 {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Position above */
    left: 120%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    white-space: nowrap;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ------------------------ Header ------------------------------ */

/* ------------------------ Topbar ------------------------------ */

.topbar {
    background-color: var(--secondary);
    /* background-color: #8e2a2a; */
    color: var(--color_white);
    text-align: center;
    padding: 10px 0;
}

/* ------------------------ main header ------------------------------ */

.stickyHeader {
    transition: all 0.3s ease-in-out;
}

.stickyHeader.is-sticky {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional for sticky effect */
}

.mainHeader {
    border-bottom: 1px solid #ddd;
}

.header {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    align-items: center;
}

.headerIcon img {
    width: 24px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.headerIcon img:hover {
    transform: scale(1.1);
}

.headCenter {
    display: flex;
    justify-content: center;
    padding: 16px 0 8px;
}

.headCenter .logo {
    height: 84px;
}

.headRight {
    display: flex;
    justify-content: end;
    column-gap: 30px;
}

.menuBtn {
    display: none;
}

.mobileMenuShow {
    display: none;
}

/* ------------------------ navbar ------------------------------ */
.navbar {
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 9;
}

.navbar .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 52px;
}

.navbar .menu li {
    list-style: none;
    font-size: 13px;
    font-weight: 400;
    color: var(--color_black);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
    padding: 17px 0 15px;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.navbar .menu li:hover {
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
}

.shopMenu {
    position: relative;
}

.shopMenu .shopSubmenus {
    position: absolute;
    top: 100%;
    left: -272px;
    width: 600px;
    background-color: var(--color_white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    margin-top: 2px;
    transition: all 0.5s ease-in-out;
    transform: translateY(0);
    animation: slideUp 0.5s 1;
}

.shopMenu:hover .shopSubmenus {
    display: block;
}

@keyframes slideUp {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.shopSubmenus .shopSubmenuCon {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shopSubmenuCon .sectionTitle {
    margin-bottom: 1rem;
}

.shopSubmenuCon .sectionTitle h2 {
    font-size: 24px;
}

.submenuCollectionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
}

.submenuCollectionGrid .collectionBoxHome {
    position: relative;
}

.submenuCollectionGrid .collectionBoxHome .collectionBoxImg {
    height: 200px;
}

.submenuCollectionGrid .collectionBoxHome p {
    font-size: 13px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 8px);
    padding: 8px 4px;
    z-index: 3;
    color: var(--color_black);
    backdrop-filter: blur(6px);
}

.shopSubmenuCon .btn {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 13px;
    background-color: transparent;
    color: var(--color_black);
    border: 1px solid var(--secondary);
    margin-top: 10px;
}

/*---------------------------------------------------- Banner Section ------------------------- ------------*/

.bannerSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner {
    min-width: 100%;
    height: 90vh;
    display: inline-block;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bannerSlider .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.bannerSlider .prev,
.bannerSlider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--color_white);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.bannerSlider .prev:hover,
.bannerSlider .next:hover {
    background-color: var(--color_black);
}

.bannerSlider .prev {
    left: 30px;
}

.bannerSlider .next {
    right: 30px;
}

.bannerImage {
    width: 100%;
    height: 100%;
}

.bannerImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerLink {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.bannerLink .btn {
    background-color: #ffffff5f;
    color: var(--color_black);
    border: 1px solid var(--color_black);
    backdrop-filter: blur(3px);
    font-weight: 600;
}

.bannerLink .btn:hover {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--color_white);
}

/* -- --------------------- Featured Product ------------------------------ -- */

.featuredSection {
    padding: 3rem 0;
}

.sectionTitle {
    margin-bottom: 2rem;
}

.sectionTitle h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: fit-content;
    font-family: "Alegreya", serif;
}

.sectionTitle h2:before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--color_black);
    position: absolute;
    left: -50px;
    top: 40%;
}

.sectionTitle h2:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--color_black);
    position: absolute;
    right: -50px;
    top: 40%;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary);
    top: 180px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color_black);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--color_white);
    font-size: 10px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 20px !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 20px !important;
}

.productBox {
    width: 100%;
}

.productBox .productImg {
    width: 100%;
    height: 266px;
    background-color: #ddd;
    border: 1px solid #ddd;
    overflow: hidden;
    position: relative;
}

.productBox .productImg .statusTag {
    font-size: 14px;
    padding: 3px 12px;
    border-radius: 500px;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
}

.productBox .productImg .statusTag.sale {
    background-color: var(--secondary);
    color: var(--color_white);
}

.productBox .productImg .statusTag.sold {
    background-color: #ddd;
    color: var(--color_black);
}

.productBox .productImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.productBox:hover .productImg img {
    transform: scale(1.04);
}

.productDes {
    text-align: center;
    margin-top: 20px;
}

.productDes p {
    font-size: 16px;
    font-family: "Alegreya", serif;
    transition: all 0.3s ease-in-out;
    color: var(--color_black);
    font-weight: 500;
}

.productBox:hover .productDes p {
    /* color: var(--secondary); */
    font-weight: 700;
}

.productDes .price {
    margin-top: 8px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.productDes .price b {
    font-weight: 500;
}

.productDes .price .orginalPrice {
    color: var(--secondary);
}

.featureViewall {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* - --------------------- Top ads section ------------------------------ - */
.topAdsSection {
    padding: 3rem 0;
}

.topAdsGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.topAdsGrid .topAdsImg {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.topAdsGrid .topAdsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.topAdsGrid .topAdsImg:hover img {
    transform: scale(1.02);
}

/* -- --------------------- Collection section ------------------------------ -- */
.collectionSection {
    padding: 3rem 0;
}

.collectionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.collectionBoxHome {
    width: 100%;
    cursor: pointer;
}

.collectionBoxHome .collectionBoxImg {
    width: 100%;
    height: 548px;
    overflow: hidden;
    margin-bottom: 16px;
}

.collectionBoxHome .collectionBoxImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
}

.collectionBoxHome:hover .collectionBoxImg img {
    transform: scale(1.02);
}

.collectionBoxHome p {
    text-align: center;
    color: #5b5b5b;
    font-size: 14px;
    align-items: center;
    display: flex;
    column-gap: 10px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    font-family: "Alegreya", serif;
    font-size: 20px;
    padding: 0 10px;
    font-weight: 600;
}

.collectionBoxHome:hover p {
    /* color: var(--secondary); */
    font-weight: 800;
}

.collectionBoxHome p i {
    transition: all 0.2s ease-in-out;
}

.collectionBoxHome:hover p i {
    margin-left: 10px;
}

/* -- ---------------------About section ------------------------------ -- */

.aboutSec {
    padding: 3rem 0;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
}

.aboutGrid .aboutImg {
    width: 100%;
    height: 90vh;
    position: relative;
}

.aboutGrid .aboutImg img {
    height: 100%;
    width: 90%;
    object-fit: cover;
}

.aboutImg .aboutSmallImg {
    position: absolute;
    right: -15%;
    bottom: 5%;
    width: 50%;
    height: 70%;
    z-index: 2;
    border-radius: 500px;
    overflow: hidden;
}

.aboutImg .aboutSmallImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutGrid .aboutText {
    padding-left: 10vw;
}

.aboutGrid .aboutText h6 {
    color: var(--primary);
}

.aboutGrid .aboutText h2 {
    font-size: 50px;
    margin: 10px 0 40px;
    line-height: 50px;
    font-weight: 700;
    font-family: "Alegreya", serif;
}

.aboutGrid .aboutText p {
    margin-bottom: 40px;
    font-size: 14px;
    color: #5b5b5b;
}

/* -- --------------------- Achivement section ------------------------------ -- */

.achivementSec {
    padding: 3rem 0;
}

.achivementGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.achivementBox {
    display: flex;
    align-items: center;
    column-gap: 20px;
    border: 1px solid var(--primary);
    padding: 24px 16px;
}

.achivementBox img {
    height: 48px;
}

.achivementBox h6 {
    font-size: 16px;
    font-family: "Alegreya", serif;
    font-weight: 800;
}

.achivementBox p {
    font-size: 13px;
    margin-top: 2px;
}

/* - --------------------- Top ads section ------------------------------ - */
.bottomAdsSection {
    padding: 3rem 0;
}

.bottomAdsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.bottomAdsGrid .bottomAdsImg {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.bottomAdsGrid .bottomAdsImg img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.bottomAdsGrid .bottomAdsImg:hover img {
    transform: scale(1.02);
}

/* - --------------------- Footer section ------------------------------ - */

footer {
    background-color: var(--primary_light);
    margin-top: 100px;
    position: relative;
    width: 100%;
}

footer .patternLeft {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

footer .patternLeft img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.footerTop {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 2fr;
    gap: 60px;
    padding: 120px 0 48px;
    position: relative;
    z-index: 3;
}

.footerAbout h2 {
    font-size: 48px;
    line-height: 25px;
    font-family: "Alegreya", serif;
    margin-bottom: 14px;
}

.footerAbout h4{
    margin-bottom: 20px;
}

.socialIcons {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-top: 24px;
}

.socialIcons a {
    width: 40px;
    height: 40px;
    background-color: var(--color_black);
    color: var(--color_white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.socialIcons a:hover {
    background-color: var(--primary);
}

.footerAbout p {
    display: flex;
    column-gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #5b5b5b;
}

.footerMenu {
    display: flex;
    flex-direction: column;
}

.footerAbout h5,
.footerMenu h5 {
    font-size: 14px;
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footerMenu a {
    margin-bottom: 16px;
    color: var(--color_black);
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    padding-bottom: 4px;
    font-size: 15px;
    color: #5b5b5b;
}

.footerMenu a:hover {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

.fotterBottom {
    border-top: 1px solid #ddd;
    padding: 40px 0 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5b5b5b;
    font-size: 14px;
    position: relative;
    z-index: 3;
}

.footerBottomIcons {
    display: flex;
    align-items: center;
    column-gap: 56px;
}

.footerBottomIcons img {
    height: 18px;
    opacity: 0.8;
}

/* -- --------------------- Shop section ------------------------------ -- */

.shopSection {
    padding: 3rem 0;
}

.filterSort {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 14px;
    font-weight: 600;
}

.filterSort .sort {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.filterSort .sort select {
    border: none;
    outline: none;
    cursor: pointer;
}

.filterSort .sort select option {
    font-size: 14px;
}

.filterSort .filterBtn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}

.filterSort .filterBtn img {
    height: 16px;
    object-fit: contain;
}

.shopGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.page-button,
.prev-button,
.next-button {
    padding: 5px 10px;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    border: none;
}

.page-button.active {
    background-color: var(--secondary);
    color: var(--color_white);
    cursor: default;
}

.prev-button:disabled,
.next-button:disabled {
    background-color: #ddd;
    color: #949494;
}

.page-button:hover,
.prev-button:hover,
.next-button:hover {
    background-color: var(--primary);
    color: white;
}

.prev-button:disabled:hover,
.next-button:disabled:hover {
    background-color: #ddd;
    color: #949494;
    cursor: default;
}

.filterpanel {
    width: 100%;
    position: fixed;
    z-index: 5;
    height: 100vh;
    top: 0;
    right: -100%;
    overflow: hidden;
    transition: 0.1s;
    display: grid;
    grid-template-columns: 3fr 1fr;
    z-index: 10;
}

.filterpanel .filterClose {
    width: 100%;
    height: 100%;
    background-color: #00000072;
}

.filterpanel .filterCon {
    height: 100%;
    background-color: var(--color_white);
    position: relative;
}

.filterCon .filterHead {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.filterCon .filterHead h4 {
    font-size: 20px;
    color: var(--color_black);
    letter-spacing: 1px;
}

.filterCon .filterHead img {
    height: 20px;
    cursor: pointer;
}

.filterBody {
    padding: 24px;
    height: 65vh;
    overflow: auto;
}

.filterType {
    margin-bottom: 3rem;
}

.filterType div {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 8px;
}

.filterType label {
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.filterType h5 {
    font-size: 16px;
    margin-bottom: 12px;
}

.filterFooter {
    position: absolute;
    width: calc(100% - 48px);
    padding: 24px;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    border-top: 1px solid #ddd;
    background: var(--color_white);
}

.filterFooter a {
    color: var(--secondary);
}

/* - --------------------- Product section ------------------------------ */

.singleProductSec {
    margin: 3rem 0;
}

.singleProductGrid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
}

.singleProductsImagesGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
}

.singleProductsImagesGrid img {
    width: 100%;
    height: 108px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer;
}

.singleProductImages .showImage {
    width: 100%;
    height: 394px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.singleProductImages .showImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* animation: slideInProduct 0.3s ease-out; */
}

@keyframes slideInProduct {
    from {
        transform: translateX(50%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.singleProductImages .showImage:hover img {
    transform: scale(1.5);
    /* Scales the image for the zoom effect */
    cursor: crosshair;
    /* Changes cursor to indicate zoom functionality */
}

.singleProductAbout h6 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.singleProductAbout h6.stock {
    color: var(--primary);
}

.singleProductAbout h6.outOfStock {
    color: rgb(255, 75, 75);
}

.singleProductAbout h2 {
    font-size: 48px;
    font-family: "Alegreya", serif;
    font-weight: 500;
    color: #2f2f2f;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.singleProductAbout .price {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin: 16px 0;
}

.singleProductAbout .price del {
    color: #949494;
}

.singleProductAbout .price h3 {
    font-size: 24px;
}

.singleProductAbout p {
    font-size: 14px;
    margin: 16px 0;
}

.singleProductAbout h5 {
    font-size: 16px;
    color: #2f2f2f;
}

.productTypes {
}

.productTypes fieldset {
    border: 0;
    margin: 24px 0;
}

.productTypes fieldset .optionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 8px;
}

.productTypes h6 {
    margin-bottom: 10px;
}

fieldset .button-group input[type="radio"] {
    display: none;
}

fieldset .button-group label {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: transparent;
    color: var(--color_black);
    border-radius: 2px;
    transition: all ease 0.2s;
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
    width: 90px;
    font-size: 13px;
    box-shadow: 0px 0px 50px -15px #000000;
    font-weight: 600;
}

fieldset .button-group input[type="radio"]:checked + label {
    background-color: var(--color_black);
    color: var(--color_white);
    border: 1px solid var(--color_black);
}

.quentitySubmit {
    display: grid;
    grid-template-columns: 1fr 6fr;
    gap: 16px;
}

.quentity {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 100px;
}

.quentity span {
    cursor: pointer;
}

.quentity input {
    background-color: transparent;
    border: none;
    width: 36px;
    text-align: center;
    font-weight: bold;
}

.quentitySubmit button {
    background-color: var(--secondary);
    color: var(--color_white);
    border: none;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.quentitySubmit button:hover {
    background-color: var(--primary);
}

.productFullDesHeading {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 24px;
    padding: 10px 0;
    margin-top: 32px;
    margin-bottom: 16px;
}

.singleProductSec p {
    font-size: 14px;
    margin-bottom: 16px;
}

/* - --------------------- Cart section ------------------------------ */
.cartProduct {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.cartProduct .cartProductImg {
    width: 80px;
    height: 75px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.cartProduct .cartProductImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cartProductDes {
    width: 65%;
}

.cartProductDes h5 {
    font-size: 16px;
    font-family: "Alegreya", serif;
}

.cartProductDes .price {
    font-size: 14px;
    font-weight: 600;
    margin: 2px 0 1px;
}

.cartProductDes a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.cartQuantity {
    display: flex;
    align-items: center;
    font-size: 12px;
    column-gap: 8px;
}

.cartQuantity select {
    border: none;
    outline: none;
    cursor: pointer;
}

.cartProduct .remove {
    color: rgb(255, 64, 64);
    cursor: pointer;
}

.cartFooter {
    width: 100%;
}

.cartFooter .totalPrice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cartFooter .totalPrice h4 {
    font-size: 20px;
}

.cartFooter .btn {
    width: 100%;
}

.emptyCart {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
    position: relative;
}

.emptyCart h3 {
    font-weight: 400;
    font-size: 24px;
}

.emptyCart .closeBtn {
    position: absolute;
    right: 24px;
    top: 24px;
}

.emptyCart .closeBtn img {
    height: 20px;
    object-fit: contain;
    cursor: pointer;
}

/* .--------------------- Checkout section ------------------------------  */

.checkoutSec {
    margin: 3rem 0;
}

.checkoutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.checkoutGrid .checkoutRight {
    border: 3px solid var(--primary);
    padding: 24px;
    height: fit-content;
    border-radius: 4px;
}

.checkoutGrid h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

form .myinput {
    margin-bottom: 16px;
}

form .myinput label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: bold;
}

form .myinput input {
    width: calc(100% - 40px);
    padding: 10px 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

form .input3Flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

form .myinputRadio {
    margin-bottom: 16px;
}

form .myinputRadio label {
    font-size: 14px;
    font-weight: bold;
}

form .myinputCheckbox {
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    column-gap: 10px;
}

.checkoutRight .priceCon {
    margin: 32px 0;
}

.checkoutRight .priceCon .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #b9b9b9;
}

.checkoutRight .priceCon .price.finalPrice {
    color: var(--color_black);
    font-size: 18px;
}

.checkoutRight .priceCon .price.finalPrice h6 {
    font-size: 24px;
}

.checkoutRight .priceCon .price h6 {
    font-weight: 900;
    letter-spacing: 0px;
    color: var(--color_black);
}

.checkoutRight .btn {
    width: 100%;
}

/* --------------------- Login Section ------------------------------  */

.loginSec {
    background-color: var(--primary_light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.logonCon {
    height: 100%;
    width: 372px;
}

.logonCon img {
    width: 100%;
    margin-bottom: -5px;
}

.loginBox {
    background-color: var(--color_white);
    padding: 48px 32px;
    width: calc(100% - 64px);
    height: calc(100% - 48px);
}

.loginBox h3 {
    font-family: "Alegreya", serif;
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 700;
}

.loginBox p {
    font-size: 12px;
    color: #5b5b5b;
}

.loginBox form {
    margin-top: 2rem;
}

form .iconinput {
    border: 1px solid #ddd;
    padding: 0 10px;
    display: flex;
    align-items: center;
    width: calc(100% - 20px);
    margin-bottom: 1rem;
    column-gap: 10px;
}

form .iconinput i {
    color: #ddd;
    font-size: 12px;
}

form .showPassword {
    cursor: pointer;
    margin-bottom: 2px;
}

form .showPassword i {
    color: var(--color_black);
}

form .iconinput input {
    border: none;
    background-color: transparent;
    font-size: 14px;
    outline: none;
    width: 554px;
    padding: 10px 0;
}

.loginBox h6 {
    letter-spacing: 0;
    font-weight: 400;
    color: #5b5b5b;
    font-size: 12px;
}

.loginBox h6 span {
    font-weight: 700;
    color: var(--primary);
}

form .btn.loginBtn {
    width: 100%;
    margin: 1rem 0;
    border-radius: 0;
    background-color: var(--primary);
}

.loginBox .myinputCheckbox label {
    letter-spacing: 0;
    font-weight: 400;
    color: #5b5b5b;
    font-size: 12px;
    cursor: pointer;
}

.loginBox .myinputCheckbox label span {
    font-weight: 700;
    color: var(--primary);
}

/* --------------------- Profile page ------------------------------ */

.profileSec {
    margin: 3rem 0;
}

.profileCon {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
}

.profileMenu {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 16px 24px;
    border: 1px solid #ddd;
    color: #949494;
    font-weight: 600;
}

.profileMenu.active {
    background-color: var(--primary_light);
    color: var(--primary);
    border-color: var(--primary);
}

.profileBox {
    border: 3px solid var(--primary);
    padding: 24px;
    height: fit-content;
    border-radius: 4px;
}

.profileBox h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.profileBox .btn {
    width: 100%;
}

.profileBox .checkoutProduct {
    max-height: 80vh;
    overflow: auto;
}

.successFullSec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.successFullCon {
    width: 60vw;
    border: 1px solid #ddd;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.successFullCon h2 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.successFullCon p {
    margin-bottom: 2rem;
    font-size: 14px;
    color: #5b5b5b;
}

.successFullCon .btn {
    border-radius: 0;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    margin: 0 10px;
}

.successFullCon .btn.orderbtn {
    background-color: transparent;
    border: 1px solid #ddd;
    color: var(--color_black);
}
