/* ------------------------------
       DEFAULT CSS  
------------------------------ */
body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'Zen Antique', serif;
    box-sizing: border-box;
}

del {
    color: rgb(168, 164, 164);
    font-size: 11px;
}

a:hover {
    text-decoration: none;
    color: rgb(129, 20, 129);
    opacity: 0.8;
}

a {
    color: black;
}

.bg-main-light {
    background: rgb(241, 196, 241);
}

.bg-main {
    background: rgb(129, 20, 129);
}

.text-main {
    color: rgb(129, 20, 129);
}

.hr-main {
    border-top: 2px solid rgb(129, 20, 129);
    margin-top: 5px;
}

.border-main {
    border: 2px solid rgb(129, 20, 129);
}

button {
    border-radius: 5px;
    background-color: rgb(129, 20, 129);
    border: none;
    color: #FFFFFF;
    text-align: center;
    padding: 7px 10px;
    width: 140px;
    transition: all 0.5s;
    cursor: pointer;
}

button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

button:hover span {
    padding-right: 25px;
}

button:hover span:after {
    opacity: 1;
    right: 0;
}

.slick-next {
    right: -10px !important;
}

.slick-prev {
    left: -10px !important;
}

/* ------------------------------
       PRELOADER
------------------------------ */
.loader-bg {
    position: fixed;
    z-index: 99;
    background: #ffffff;
    width: 100%;
    height: 100%;
}

.loader-bg .loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before,
.loader:after {
    content: "";
    border: 1em solid rgb(129, 20, 129);
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0px;
    left: 0px;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: 0.5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

/* ------------------------------
       SCROLL TO TOP
------------------------------ */
#scroll-button {
    display: inline-block;
    background-color: rgb(109, 25, 109);
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s;
    opacity: 0.5s, visibility .5s;
    opacity: 0;
    z-index: 50;
}

#scroll-button i {
    font-size: 30px;
    color: white;
}

#scroll-button.show {
    opacity: 1;
}



/* ------------------------------
       HEADER 
------------------------------ */
.header-top a,
.header-top a:hover {
    color: white;
}

.header-top img,
.mobile-list img {
    width: 50px;
    height: 30px;
}

.menu-logo,
.logo {
    height: 70px;
}

.menu-logo+p,
.logo+p {
    font-size: 1.75em;
}

.hm-button i {
    font-size: 1.3em;
}

.category-list>li>div>div {
    width: 65px;
    margin: auto;
    height: 54px;
    padding: 7px;
}

.category-list li img {
    width: 35px;
    height: 35px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: -50px;
}

.list .dropdown-content {
    left: 0px;
    right: 0px;
}

.dropdown-content a {
    padding: 8px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgb(129, 20, 129);
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger-slide-bar {
    width: 320px;
    position: absolute;
    top: 0px;
    right: 0px;
    overflow-y: auto;
    height: 100vh;
    background-color: whitesmoke;
    z-index: 2;
    box-shadow: 1px 1px 5px black
}

.close-menu {
    width: 40px;
}

.mobile-list .dropdown-content {
    width: 200px;
}

.mobile-list ul li img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

button.open-menu {
    width: 50px;
}

.icons a {
    margin: 2px 5px;
}

.copyright {
    margin-top: 2em;
    font-size: 0.8em;
    font-weight: 400;
    margin-bottom: 5em;
}

@media screen and (min-width:300px) and (max-width:425px) {
    .logo {
        height: 50px;
    }

    .logo+p {
        font-size: 1.3em;
    }

    /* .hm-button i {
        font-size: 1em;
    } */
}

/* ------------------------------
       FOOTER 
------------------------------ */

.footer-top {
    padding: 100px 10px 0px 10px;
    overflow-x: hidden;
    background-image: linear-gradient(-20deg, #616161 0%, #9bc5c3 100%);
}

.footer-top img {
    width: 100px;
    height: 100px;
    margin-left: 10px;
}

.footer-top .social-media ul li {
    background: white;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 1px solid rgb(108, 104, 104);
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 5px;
    padding: 4px
}

.footer-top .get-updates input {
    background: none;
    border: none;
    outline: none;
    padding: 5px 10px;
    color: rgb(56, 54, 54);
}

.footer-top .get-updates i {
    font-size: larger;
}

.footer-top .get-updates label {
    border-bottom: 2px solid white;
    margin-right: 10px;
    height: 32px;
}

.footer-top .updates-btn {
    outline: none;
    border: none;
    background: rgb(0, 0, 0, 0.7);
    width: auto;
    padding: 5px 10px;
    color: white;
    border-radius: 0px;
    font-size: small;
    height: 32px;
}

.app-link img {
    width: 85px;
    height: 30px;
    margin-left: 10px;
}

.footer-container {
    width: 100px;
}

.hr-foot {
    border-top: 3px solid rgb(129, 20, 129);
    margin: 5px 0px;
}

.foot-links,
.app-head,
address {
    margin: 10px;
}

address p {
    margin-bottom: 5px;
}

.bottom-left {
    text-align: left;
    color: white;
}

.bottom-left a {
    color: white;
}

.bottom-right ul {
    display: flex;
    justify-content: end;
}

.foot-links {
    border-bottom: 1.5px solid white;
    margin-bottom: 10px;
}

.foot-links a i {
    width: 30px;
    height: 23px;
    text-align: center;
    vertical-align: middle;
    font-size: small;
    background-color: rgb(255, 255, 255, 0.7);
    color: black;
    padding: 6px;
    margin-right: 5px;
    margin-bottom: -1px;
}

.foot-links img {
    width: 15px;
    height: 15px;
}


.foot-links a:hover {
    color: rgb(101, 100, 100);
    opacity: 1;
}

.payment-images {
    width: 50px;
    height: 30px;
    margin: 0px 10px;
}

.payment-images img {
    width: 100%;
    height: 100%;
}

.underline {
    width: 200px;
    height: 3px;
    background: rgb(46, 46, 46);
    position: absolute;
    top: 32px;
    left: 12px;
    border-radius: 5px;
    overflow: hidden;
}

.underline span {
    width: 10px;
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0px;
    left: 10px;
    animation: moving 5s linear infinite;
    border-radius: 5px;
}

@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

@media screen and (max-width:768px) {
    .bottom-left {
        text-align: center;
    }

    .bottom-right ul {
        justify-content: space-around;
    }
}

/* ------------------------------
       CAROUSEL
------------------------------ */
.carousel-item,
.carousel-inner {
    height: 350px;
}

.carousel-indicators {
    z-index: 1;
}

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

    .carousel-item,
    .carousel-inner {
        height: 300px;
    }
}

/* ------------------------------
       BRANDS SECTION
------------------------------ */
.brands {
    background: rgb(255, 255, 255);
}

.page-section {
    margin-bottom: 4rem;
}

.heading-hr {
    width: 20%;
    border-top: 3px solid rgb(129, 20, 129);
    margin-top: 0px;
}

.logo-slider img {
    width: 80px;
    margin: 0px auto;
}

.item {
    margin: 20px 2px;
    text-align: center;
}

.brand-item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    background-position: center;
    margin: 2px auto;
    overflow: hidden;
    background-size: contain;
}

.brand-item img {
    width: 100%;
    height: 100%;
}

/* --------------------------------------
       FEATURED PRODUCTS SECTION
-------------------------------------- */
.product-item,
.grocery-item {
    padding: 0.7rem;
    background: #ffffff;
    box-shadow: 0 0 2px rgb(197, 195, 195);
    margin: 5px 1rem;
    height: 400px;
    overflow-y: hidden;
}

.product-item img,
.grocery-item img {
    width: 100%;
    height: 250px;
    box-shadow: 0 0 1px grey;
}

.product-name,
.grocery-name {
    margin-bottom: 2px;
    margin-top: 8px;
}

.rating {
    color: rgb(223, 167, 26);
    font-size: 0.6rem;
}

.wishlist-btn {
    position: absolute;
    top: 25px;
    width: 60px;
    height: 25px;
    padding: 2px;
    text-align: center;
    vertical-align: middle;
    color: white;
    background: rgb(129, 20, 129);
    border-radius: 0%;
    font-size: 0.7rem;
}

.product-price {
    margin-bottom: 10px;
}

.variant-select {
    font-size: 0.65rem;
    width: 100%;
    height: 20px;
}

.cart-quantity {
    display: flex;
    justify-content: space-between;
}

.cart-quantity .input-group-sm>.input-group-prepend>.input-group-text,
.cart-quantity .input-group-sm>.form-control {
    font-size: 0.7rem;
    padding: 0.25rem;
    height: 100%;
}

.cart-quantity .input-group-sm>input.form-control:focus,
.cart-quantity .input-group-sm>input.form-control:focus-visible {
    outline: none;
    box-shadow: none;
}

.cart-quantity .card-quantity-bar {
    width: 65px;
}

.cart-quantity .card-cart-btn {
    width: 60px;
    font-size: 0.7rem;
}

/* ------------------------------
       DEAL OF THE DAY
------------------------------ */
.deal-section {
    border-radius: 15px;
}

.deal-item {
    background: white;
    border-radius: 10px;
    padding: 15px 10px;
    margin: 10px;
}

.deal-head {
    color: white;
    padding: 10px 15px;
}

.deal-img img {
    width: 70px;
    float: left;
    height: 85px;
    margin-right: 20px;
}

/* ------------------------------
       BANNER
------------------------------ */
.banner {
    height: 300px;
    background-repeat: no-repeat;
    width: 100%;
}

/* ------------------------------
       SELECTED PRODUCTS
------------------------------ */
.selected>div {
    background: white;
    margin: 30px 5px;
    padding: 10px;
    border-radius: 15px;

}

.selected-top {
    display: flex;
    justify-content: space-between;
}

.selected-container {
    padding: 5px 20px;
}

.selected-sub-container {
    padding: 20px;
}

.img-selected {
    border-radius: 20px;
}

.view-btn {
    width: 120px;
    font-size: small;
    margin-top: auto;
    margin-bottom: auto;
}

@media screen and (max-width:400px) {
    .selected-products {
        padding-right: 0px;
        padding-left: 0px;
    }
}

/* ------------------------------
       SHIPPING POLICY
------------------------------ */
.shipping-container {
    position: relative;
    top: 80px;
}

.shipping-policy {
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 0 5px rgb(153, 149, 149);
}

.shipping-detail {
    padding: 20px;
    overflow: hidden;
}

.shipping-detail img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: invert(1);
}


.shipping-policy img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.shipping-detail p {
    margin-bottom: 0px;
    color: white;
}

.shipping-policy p {
    margin-bottom: 0px;
}

.shipping-policy i {
    color: rgb(0, 0, 0);
}

@media screen and (max-width:480px) {
    .shipping-policy img {
        height: 50px;
        width: 50px;
    }

    .shipping-policy i {
        font-size: smaller;
    }
}

/* --------------------------------------
       FEATURED PRODUCTS SECTION
-------------------------------------- */
.client-item {
    padding: 0.7rem;
    background: #ffffff;
    box-shadow: 0 0 2px rgb(197, 195, 195);
    margin: 5px 1rem;
    border-radius: 20px;
    height: 180px;
}

.client-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;
}

.product-name {
    margin-bottom: 2px;
    margin-top: 8px;
}

@media screen and (max-width:480px) {
    .client-item {
        height: 250px;
    }
}

/* ------------------------------
       BREADCRUMB AREA
------------------------------ */
.breadcrumb-area {
    height: 200px;
    /* background-color: rgb(160, 77, 160); */
    background-image: url(https://images.unsplash.com/photo-1482686115713-0fbcaced6e28?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTR8fHB1cnBsZXxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=600&q=60);
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-area img {
    height: 45px;
    width: 45px;
    filter: invert(1);
}

@media screen and (max-width:468px) {
    .breadcrumb-area h1 {
        font-size: 1.8rem;
    }

    .breadcrumb-area img {
        height: 35px;
        width: 35px;
    }
}

/* ------------------------------
       WISHLIST AREA
------------------------------ */
.wishlist-area {
    margin: 50px auto;
    padding: 10px 0px;
}

.wishlist-area table img {
    width: 100px;
    height: 100px;
    border-radius: 9px;
    padding: 2px;
    border: 1px solid rgb(233 224 233);
}

.wishlist-area table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

/* ------------------------------
       CART AREA
------------------------------ */
.cart-area {
    margin: 50px auto;
    padding: 10px 0px;
}

.cart-area table img {
    width: 100px;
    height: 100px;
    border-radius: 9px;
    padding: 2px;
    border: 1px solid rgb(233 224 233);
}

.cart-area table td,
.cart-area table th {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

.clean-continue button {
    width: 200px;
    margin-bottom: 20px;
}

.cart-total {
    border-top: 2px solid rgb(129, 20, 129);
    border-bottom: 2px solid rgb(129, 20, 129);
}

@media screen and (min-width:440px) and (max-width:768px) {
    .clean-continue br {
        display: none;
    }

    .clean-continue {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width:440px) {
    .clean-continue br {
        display: block;
    }
}

/* ------------------------------
       COUNTER BUTTON
------------------------------ */
.counter {
    width: 150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter input {
    width: 50px;
    border: 0;
    line-height: 28px;
    text-align: center;
    appearance: none;
    outline: 0;
    border: 1px solid rgb(233 224 233);
}

.counter span {
    display: block;
    padding: 3px 10px;
    cursor: pointer;
    user-select: none;
    border: 1px solid rgb(233 224 233);
}

/* ------------------------------
       LOGIN AREA
------------------------------ */
.login-sidebar {
    padding: 20px 30px;
}

.login-sidebar h1 {
    font-size: 50px;
}

.login-sidebar:after {
    width: 250px;
    height: 2px;
    background: rgb(129, 20, 129);
    position: absolute;
    top: 85px;
    left: 30px;
    content: "";
}

.login-area {
    padding: 60px 0px;
}

.full-login-area {
    background: rgb(227 206 227 / 30%);
}

.input-area {
    width: 250px;
    height: 40px;
    border-radius: 25px;
    border: none;
    margin: 20px auto;
    padding: 5px 20px;
}

.form-area {
    background: rgb(255, 255, 255, 0.3);
    padding: 30px 20px;
    box-shadow: 0 0 3px rgb(202, 200, 200);
}

.inputs {
    text-align: center;
}

.input-area:focus-visible {
    border: none;
    outline: none;
}

.submit-btn {
    width: 250px;
    border-radius: 25px;
    margin: 20px auto;
}

.inputs .fa {
    padding: 13px;
    color: rgb(139, 136, 136);
    width: 45px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
    border: 1px solid rgb(179, 178, 178);
}

.inputs .fa:hover {
    background: rgb(129, 20, 129);
    color: white;
}

.form-remember {
    display: flex;
    justify-content: space-around;
}

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

@media screen and (max-width:500px) {
    .form-remember {
        flex-direction: column;
    }

    .client {
        justify-content: center;
        flex-direction: column;
    }
}

/* ------------------------------
       REGISTER AREA
------------------------------ */
.login-sidebar {
    padding: 20px 30px;
}

.login-sidebar h1 {
    font-size: 50px;
}

.login-sidebar:after {
    width: 250px;
    height: 2px;
    background: rgb(129, 20, 129);
    position: absolute;
    top: 85px;
    left: 30px;
    content: "";
}

.login-area {
    padding: 60px 0px 0px 0px;
}

.full-login-area {
    background: rgb(227 206 227 / 30%);
}

.register .input-area {
    width: 400px;
    height: 40px;
    border-radius: 25px;
    border: none;
    margin: 10px auto;
    padding: 5px 20px;
}

.form-area {
    background: rgb(255, 255, 255, 0.3);
    padding: 30px 20px;
    box-shadow: 0 0 3px rgb(202, 200, 200);
}

@media screen and (max-width:480px) {
    .register .input-area {
        width: 250px;
    }
}

/* ------------------------------
       PRODUCT LIST
------------------------------ */
.product-list {
    margin: 50px auto;
    padding: 10px 30px;
}

.list-sidebar {
    background-color: rgb(227 206 227 / 30%);
    padding: 20px 10px;
}

.list-search {
    border: none;
    border-radius: 20px;
    width: 100%;
    padding: 5px 20px;
}

.list-brands {
    box-shadow: 0 0 2px rgb(184, 182, 182);
    margin-bottom: 20px;
}

.list-brands ul {
    font-size: small;
    margin: 10px;
    height: 250px;
    overflow-y: auto;
}

.list-brands ul li {
    margin: 4px 1px;
    padding: 0px 5px;
}

.list-brands ul li:hover {
    margin: 4px 1px;
    background-color: white;
}

.filter-sort {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

button.open-filter,
button.close-filter {
    width: 80px;
    padding: 0px;
}

button.close-filter {
    position: absolute;
    top: 0px;
    right: 0px;
}

.sort-product {
    font-size: small;
}

.sort-product select:focus-visible {
    outline: none;
}

.pagination {
    border: 2px solid rgb(129, 20, 129);
    border-radius: 10px;
    padding: 10px;
    width: 250px;
    font-size: small;
}

.filter-bar {
    width: 250px;
    background: rgba(255, 255, 255);
    padding: 0px 15px;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow-y: auto;
    height: 100vh;
    box-shadow: 3px 0px 3px rgb(234, 231, 231);
}

@media screen and (max-width:768px) {
    .filter-sort {
        justify-content: space-between;
    }
}

/* -------------------------------
        PRODUCT DETAIL
------------------------------- */
.product-detail-area {
    padding: 40px 10px 30px 10px;
}

.tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    width: 80px;
    margin: 0px 5px;
}

.tab button:hover {
    opacity: 0.7;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    height: 300px;
    width: 300px;
    margin: 0px auto;
}

.tabcontent {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab .tablinks {
    border: 1px solid rgb(191, 188, 188);
}

.tab .tablinks img {
    width: 45px;
    height: 45px;
}

.tabcontent img {
    width: 100%;
    height: 100%;
}

.product-details {
    padding: 10px;
}

.product-details del {
    font-size: medium;
}

.product-details .offer {
    color: red;
    font-weight: 500;
    font-size: x-small;
}

.size-list {
    display: flex;
}

.size-list li {
    color: rgb(129, 20, 129);
    border: 1px solid rgb(129, 20, 129);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}

.size-list li:hover {
    color: white;
    background: rgb(129, 20, 129);
}

.product-detail-btn {
    font-size: x-small;
    width: 100px;
    margin-right: 10px;
}

small.product-size {
    font-size: 0.6rem;
}

.feedback-form {
    padding-top: 20px;
    padding-bottom: 0px;
}

.feedback-form input {
    border: none;
    height: 100%;
    box-shadow: 0 0 5px rgb(233, 231, 231);
    padding: 2px 10px;
    font-size: small;
    width: 100%;
}

.feedback-form input:focus-visible {
    outline: none;
}

.product-desc {
    padding: 20px 10px;
    color: rgb(91, 88, 88);
}


/* -------------------------------
       CONTACT US
------------------------------- */
.contact-container {
    padding: 10px 10px;
}

.map-area {
    padding: 60px 20px 10px 20px;
    height: 400px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
}

.contact-sidebar {
    padding: 20px 30px;
}

.contact-sidebar h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-sidebar p {
    font-size: small;
    color: #4b4b4b;
}

.contact-hr {
    border-top: 2px solid black;
}

.contact-sidebar:after {
    width: 250px;
    height: 2px;
    background: rgb(129, 20, 129);
    position: absolute;
    top: 75px;
    left: 30px;
    content: "";
}

.login-area {
    padding: 60px 0px 0px 0px;
}

.full-login-area {
    background: rgb(227 206 227 / 30%);
}

.contact-form-area .contact-input-area {
    width: 400px;
    height: 40px;
    border-radius: 25px;
    border: none;
    margin: 5px auto;
    padding: 5px 20px;
}

.contact-form-area .contact-input-area:focus-visible {
    outline: none;
}

.contact-form-area {
    background: rgb(255, 255, 255, 0.3);
    padding: 30px 20px;
    box-shadow: 0 0 3px rgb(202, 200, 200);
}

.contact-form-area textarea {
    height: 100px !important;
}


@media screen and (max-width:480px) {
    .contact-form-area .contact-input-area {
        width: 250px;
    }
}

/* -------------------------------
       ABOUT AREA
------------------------------- */
.about-area {
    padding: 40px 20px;
}

.about-content h2:after {
    width: 260px;
    height: 3px;
    position: absolute;
    top: 62px;
    left: 21px;
    content: "";
    background: rgb(129, 20, 129);
}

.about-content p {
    color: #909090;
}

.about-content {
    padding: 20px;
    margin-bottom: 20px;
}

.about-img {
    height: 400px;
    margin-bottom: 20px;
}

/* -------------------------------
       PROFILE AREA
------------------------------- */
.account-page {
    padding: 40px 20px;
}

.account-page .profile .profile-detail {
    width: 140px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
}

.account-page .profile .profile-detail img {
    height: 140px;
    width: 100%;
    border: 1px solid black;
    border-radius: 50%;
    box-shadow: 0 0 5px #646363;
    padding: 2px;
}

.account-page .profile ul {
    list-style-type: none;
    padding: 10px;
}

.account-page .profile ul li {
    margin-bottom: 10px;
}

.account-page .profile ul li a {
    border: 1px solid black;
    display: block;
    padding: 5px 20px;
}

.account-page .profile ul li a span {
    float: right;
}

.edit-detail {
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
}

.edit-detail button {
    width: 200px;
}

.account-page .edit-detail button a:hover {
    color: white !important;
    opacity: 1;
}

.account-detail table tr {
    padding: 5px 0px;
}

.account-detail table th {
    width: 30%;
}

.account-detail table td {
    width: 70%;
}

@media screen and (max-width:550px) {
    .edit-detail {
        flex-direction: column;
    }

    .edit-detail button {
        margin-bottom: 10px;
    }

    .account-page {
        font-size: 0.8rem;
    }
}

/* ORDER SECTION */
.account-order .order-element {
    padding: 5px;
    border-radius: 10px;
    height: 230px;
    font-size: 0.7rem;
    border: 1px solid black;
    margin-bottom: 10px;
}

.account-order .order-element img {
    height: 155px;
    border-radius: 10px;
    width: 100%;
}

/* EDIT PROFILE */
.profile-form {
    padding: 10px 20px;
}

.input-box {
    border-radius: 10px;
    /* position: absolute; */
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border-radius: 20px;
    border: 1px solid black;
    margin-bottom: 10px;
}

.input-box input {
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 0px 20px;
}

.input-box input:focus-visible {
    border: none;
    outline: none;
}

.input-box .input-box-textContain {
    width: 150px;
    text-align: center;
    padding: 2px 20px;
    display: flex;
    justify-content: space-between;
}

.update-detail {
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
}

.update-detail button {
    width: 200px;
}

.account-page .update-detail button a:hover {
    color: white !important;
    opacity: 1;
}

@media screen and (max-width:550px) {
    .update-detail {
        flex-direction: column;
    }

    .update-detail button {
        margin-bottom: 10px;
    }

    .account-page {
        font-size: 0.8rem;
    }

    .input-box .input-box-textContain {
        width: 130px;
    }

    .input-box input {
        padding: 0px 2px;
    }

    .profile-form {
        padding: 10px 5px;
    }
}

@media screen and (max-width:468px) {
    .input-box .input-box-textContain {
        width: auto;
        padding: 2px 5px;
    }

    .input-box {
        font-size: 0.7rem;
    }
}

/* -------------------------------
       CHECKOUT PAGE
------------------------------- */
.checkout-area {
    padding: 40px 30px;
}

.billing-detail {
    padding: 15px 10px;
}

.checkout-order {
    padding: 15px 10px;
    box-shadow: 0 0 3px rgb(205, 200, 200);
    background: transparent;
}

.checkout-order-table table tr {
    padding: 5px 0px;
}

.checkout-order-table table th {
    width: 30%;
}

.checkout-order-table table td {
    width: 70%;
}

.billing-detail .edit-detail {
    justify-content: end;
}

.billing-detail .input-group-append {
    width: 150px;
    height: 31px;
}

.billing-form input:focus {
    box-shadow: none;
}

.add-address-btn,
.add-address-btn:hover {
    cursor: pointer;
}

/* -------------------------------
       ADDRESS POPUP
------------------------------- */

.address-popup-btn {
    outline: none;
    border: none;
    padding: 5px 0px;
    float: right;
    background: none;
    font-size: x-small;
    color: #000000;
    width: auto;
}

.address-form input {
    width: 100%;
    box-shadow: 0 0 2px rgb(194, 191, 191);
    border-radius: 20px;
    border: none;
    padding: 4px 15px;
    margin: 10px 0px;
}

.del-address {
    width: 30px !important;
    outline: none;
    background: none;
    color: black;
    border: none;
    padding: 0px;
    text-align: left;
}

.del-address:hover {
    color: rgb(109, 25, 109);
}

/* -------------------------------
       CATEGORY BANNERS
------------------------------- */
.category-banner {
    padding: 5px 10px;
}

.categoryImg {
    width: 100%;
    height: 250px;
}

.categoryImg img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.8;
}

.categoryImg-content {
    position: absolute;
    top: 0px;
    padding: 20px 40px;
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: 0 0 1px white;
}

.category-banner .category-page {
    position: absolute;
    bottom: 0px;
    padding: 20px 40px;
    /* font-size: 30px; */
    right: 0px;
}