@font-face {
    font-family: iransans;
    src: url(../IRANSans.ttf);
}

body {
    font-family: iransans;
}

:root {
    --color-1: #1A237E;
    --color-2: #303F9F;
    --color-3: #0288D1;
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}


.nav-style {
    box-shadow: 0px 4px 8px 0px #6666661A;
    background-color: white;
}

.nav-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
}

.nav-icons {
    font-size: 20px;
    margin: 0 8px;
    color: var(--color-1);
    transition: all 0.2s ease-in;
}

    .nav-icons:hover {
        color: var(--color-3);
    }

.nav-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

    .logo-container img {
        width: 39px;
        object-fit: contain;
        scale: 1.7;
    }

.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons a {
        font-size: 20px;
        transition: color 0.3s;
    }

/* .social-icons a:hover {
    color: #007bff;
}  */

.cart-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    color: var(--color-1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--color-1);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

    .cart-button:hover {
        background-color: var(--color-1);
        color: white;
    }



/* header banner slider  */

.header-slider {
    max-width: 1300px;
    width: 100%;
    height: 100%;
    margin-top: 25px;
}

    .header-slider .owl-nav {
        position: absolute;
        bottom: 0px;
        right: 20px;
        scale: 1.5;
    }

        .header-slider .owl-nav .owl-prev {
            margin-left: 3px;
            transition: all 200ms linear;
        }

        .header-slider .owl-nav .owl-next {
            margin-right: 3px;
            transition: all 200ms linear;
        }

        .header-slider .owl-nav .owl-prev:hover {
            background-color: transparent;
            scale: 1.09;
        }

        .header-slider .owl-nav .owl-next:hover {
            background-color: transparent;
            scale: 1.09;
        }

@media screen and (max-width:576px) {
    .header-slider .owl-nav .owl-prev {
        scale: 0.8;
    }

    .header-slider .owl-nav .owl-next {
        scale: 0.8;
    }

    .header-slider .owl-nav .owl-prev:hover {
        scale: 0.81;
    }

    .header-slider .owl-nav .owl-next:hover {
        scale: 0.81;
    }
}


/* products slider  */

.card {
    /* border-radius: 1.5rem; */
    max-width: 280px;
    width: 100%;
    /* background-color: #fff; */
    padding: 1.5rem;
    /* border: none; */
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-top: 0;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-1);
    text-align: center;
    margin-bottom: 2rem;
}

.off-price1 {
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 700;
    color: #BDBDBD;
    margin-bottom: -15px;
    margin-left: 19px;
}

.btn-custom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

    .btn-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        background-color: #2196F3;
        color: white;
    }

.btn-cart {
    background-color: #E0F7FA;
    color: #007bff;
}

.products-slider .owl-nav button {
    background: none !important;
    color: var(--color-1) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.products-slider .owl-prev {
    right: -20px;
    left: auto;
    transition: all 350ms linear;
    scale: 1.3;
}

.products-slider .owl-next {
    left: -20px;
    right: auto;
    transition: all 350ms linear;
    scale: 1.3;
}

    .products-slider .owl-next:hover {
        color: #1976D2 !important;
    }

.products-slider .owl-prev:hover {
    color: #1976D2 !important;
}

@media screen and (max-width:576px) {
    .products-slider .owl-prev {
        right: 15px;
        left: auto;
        transition: all 350ms linear;
        scale: 1;
    }

    .products-slider .owl-next {
        left: 15px;
        right: auto;
        transition: all 350ms linear;
        scale: 1;
    }

        .products-slider .owl-next:hover {
            color: #1976D2 !important;
            scale: 1.1;
        }

    .products-slider .owl-prev:hover {
        color: #1976D2 !important;
        scale: 1.1;
    }
}

.off-percent1 {
    position: absolute;
    justify-content: center;
    display: flex;
    background: linear-gradient(264.86deg, #000000 0%, var(--color-3) 100%);
    color: white;
    font-size: 13px;
    width: 45px;
    border-radius: 9px;
    padding: 2px 2px 2px 2px;
    top: 5px;
    right: 5px;
    z-index: 100;
}

.line-after-text {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-2);
    margin-right: 0.5rem;
    align-self: center;
}

.header-container {
    font-size: 25px !important;
    text-align: start;
}

@media screen and (max-width:576px) {
    .header-container {
        font-size: 19px !important;
        text-align: start;
    }
}



/* Categories Section */
.app-container {
    max-width: 1200px; /* Max width for better control on large screens */
}

/* New class for h1 styling */
.app-title {
    font-weight: 800; /* Bolder title */
    color: #2c3e50; /* Darker heading color */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle text shadow */
}

/* Category buttons container - no background or shadow */
.category-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between image buttons */
    margin-bottom: 3rem; /* More space below buttons */
}

/* Individual category image button styling */
.category-image-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    border-radius: 15px; /* Slightly rounded container for hover effect */
    background-color: transparent; /* Default transparent background */
    position: relative;
}

    .category-image-button:hover {
        background-color: #f0f0f0; /* Light background on hover */
        transform: translateY(-5px); /* Slight lift on hover */
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow on hover */
    }

    /* Active category image button styling */
    .category-image-button.active {
        background-color: transparent; /* No background-color change on active */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Stronger shadow for active */
    }

    .category-image-button img {
        width: 100px; /* Small image size */
        height: 80px; /* Small image size */
        object-fit: cover; /* Ensure image covers the area */
        border: 3px solid transparent; /* Default border */
        transition: all 0.3s ease-in-out; /* Transition for image scale and border */
    }

    .category-image-button.active img {
        /* border-color: #37474F; Removed border color */
        transform: scale(1.15); /* Make image slightly larger when active */
    }

    .category-image-button span {
        margin-top: 8px;
        font-size: 1rem;
        font-weight: 600;
        color: #555; /* Default text color */
        transition: color 0.3s ease-in-out;
    }

    .category-image-button.active span {
        color: #37474F; /* Dark blue-gray text for active button */
    }

/* New class for card styling */
.app-card {
    border-radius: 20px; /* More rounded corners for cards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none; /* Remove default card border */
    background-color: #ffffff;
    overflow: hidden; /* Ensure content stays within rounded corners */
}

    .app-card:hover {
        transform: translateY(-5px); /* Lift card on hover */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Even stronger shadow on hover */
    }

.card-title {
    font-weight: 700; /* Bolder card titles */
    color: #2c3e50;
}

.card-text {
    color: #6c757d; /* Muted text color */
    line-height: 1.6; /* Better readability */
}

/* Category tag styling */
.category-tag {
    background-color: #e0f7fa; /* Lighter blue for tags */
    color: #007bff; /* Bootstrap primary blue */
    border-radius: 50px;
    padding: .4em 1em; /* More padding for tags */
    font-size: 0.9em; /* Slightly larger tag font */
    font-weight: 600; /* Bolder tag text */
    margin-top: 15px; /* More space above tag */
    display: inline-block; /* Ensure padding works */
}

/* No cards message styling */
#no-cards-message {
    font-size: 1.2rem;
    color: #888;
    font-style: italic;
    margin-top: 2rem;
}


/* footer */
.the-footer {
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 20px 0px rgba(76, 86, 134, 0.15);
    padding: 5rem 5rem 0rem 3rem;
}

.footer-col1 {
    padding: 0 1rem;
    height: max-content;
}

    .footer-col1 p {
        text-align: justify;
        font-size: 15px;
        line-height: 25px;
    }

.footer-title {
    font-size: 15px;
    font-weight: bold;
}

    .footer-title::after {
        content: "";
        display: block;
        border-radius: 5px;
        background: var(--color-1);
        width: 55px;
        height: 4px;
        margin-top: 10px;
    }

.contact-us-icon {
    color: var(--color-1);
    font-size: 18px;
    margin-left: 8px;
}

.contact-us span {
    color: #545454;
    font-size: 16px;
}

.footer-col2 ul {
    padding: 0 2px;
    width: auto;
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

    .footer-col2 ul li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .footer-col2 ul li a {
            color: #505050;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.1s ease-in;
        }

            .footer-col2 ul li a:hover {
                color: #101010;
            }

        .footer-col2 ul li::before {
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            background: #b8bdd7;
            border-radius: 8px;
        }

.col3-container {
    display: flex;
    gap: 14px;
}

.col3-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
}

.col3-content {
    width: auto;
    display: grid;
    gap: 3px;
}

    .col3-content span {
        color: #fff;
        font-size: 13px;
        font-weight: bold;
    }

.fs-p3-content p span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.col4 {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.col4-img-container {
    width: 77px;
    height: 87px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cadr {
    width: 77px;
    height: 80px;
    box-shadow: 0 10px 59px -20px rgba(4, 10, 31, 0.763);
    border-radius: 10px;
    background: #ffffff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 1rem;
}

.copyright {
    padding: 16px 8%;
    color: white;
    padding: 1 6px 8%;
    background: linear-gradient(90.06deg, var(--color-3) .05%, var(--color-2) 54.75%, var(--color-1) 109.45%);
}

.copyright-display {
    justify-content: space-between;
}

@media (max-width: 990px) {
    .copyright-display {
        justify-content: center !important;
        flex-direction: column;
        align-items: center;
    }

    .the-footer {
        padding: 1.7rem 2rem 2rem 2rem;
    }

    .mt-small-3 {
        margin-top: 1rem;
    }

    .copyright {
        padding-bottom: 80px !important;
    }
}

/* bottom-menu */

.bottom-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #fff;
    width: 60% !important;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.21);
    z-index: 99;
    justify-content: space-around;
}

.menu-item {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--color-1);
    color: var(--color-1);
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    position: relative;
}

.menu-item-active {
    background-color: var(--color-1) !important;
    border: 1px solid transparent !important;
    color: white !important;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-3);
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
}

@media (min-width: 768px) {
    .bottom-menu {
        display: none;
    }
}








/* product-page */
.page-link {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-decoration: none;
}

    .page-link p {
        color: rgba(4, 10, 31, 0.38);
        margin: 0 8px !important;
    }

    .page-link a {
        color: rgba(4, 10, 31, 0.38);
        margin: 0 8px !important;
        text-decoration: none;
    }

.page-link-icon {
    font-size: 10px;
    color: rgba(4, 10, 31, 0.315);
}

.page-link .des {
    color: rgba(0, 0, 0, 0.804);
    margin: 0 8px !important;
}

@media (max-width: 768px) {
    .page-link p {
        margin: 0 2px !important;
    }

    .page-link a {
        margin: 0 2px !important;
    }

    .page-link .des {
        margin: 0 2px !important;
    }
}

.all-images {
    display: flex;
    flex-direction: column;
}

@media (max-width: 990px) {
    .all-images {
        display: flex;
        flex-direction: row;
    }
}

.all-images img {
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.all-images-container {
    margin: 10px;
    width: 88px;
    height: 84px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.375);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.big-image {
    box-shadow: 0px 4px 8px 0px #6666661A;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid #6666661A;
}

.big-image-container {
    height: 340px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-image img {
    border-radius: 12px;
    object-fit: contain;
    width: 340px;
    height: 340px;
}

.description-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: max-content;
}

.product-title {
    font-size: 25px;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.description-container .description {
    color: #333333;
    font-size: 14px;
    padding: 2px 0px 0px 16px;
    text-align: justify;
}

.description-info {
    font-size: 14px;
    text-align: justify;
    padding-left: 16px;
    display: flex;
    gap: 6px;
}

    .description-info .title {
        color: #4e4e4e;
    }

    .description-info .description {
        color: #333333;
    }

.description-container-cadr {
    border-radius: 16px;
    border: 1px solid #3333330a;
    box-shadow: 0px 4px 8px 0px #6666661A;
    padding: 20px;
    position: relative;
    width: 100%;
    /* width: 90% !important; */
    /* margin: 0 auto; */
}

    .description-container-cadr .quantity {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

        .description-container-cadr .quantity span {
            font-size: 16px;
            color: #666666;
        }

.quantity-butinp {
    width: 100px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #3333332b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.quantity-butinp-min {
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    color: gray;
    border: none;
}

.quantity-butinp-plus {
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    color: var(--color-1);
    border: none;
}

.quantity-butinp input {
    border: none;
    text-align: center;
    width: 32px;
    height: 32px;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: gray;
    padding: 0px;
}

.price-title {
    font-size: 16px;
    color: #666666;
}

.price-container {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.description-container-cadr .product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.product-price .off-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    text-decoration: line-through !important;
    color: #B3B3B3;
    display: flex;
    align-items: center;
}

.product-price .off-percent {
    font-size: 13px;
    line-height: 12px;
    color: #ffffff;
    width: fit-content;
    height: 25px;
    box-shadow: 0px 4px 8px 0px #0000007d;
    background: linear-gradient(264.86deg, var(--color-1) 0%, var(--color-2) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    /*  padding-top: 8px; */
    margin: 0 5px 2px 0px;
}

.product-price .the-price {
    font-size: 21px;
    font-weight: 700;
    line-height: 22.4px;
    color: var(--color-1);
}

.product-price span {
    font-size: 12px !important;
}

.cardbtn2 {
    background: linear-gradient(264.86deg, var(--color-1) 0%, var(--color-2) 100%);
    border: 1px solid white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 19.6px;
    color: white;
    border-radius: 9px;
    width: 100%;
    transition: all 0.2s ease-in;
    text-decoration: none;
}

    .cardbtn2:hover {
        background: transparent !important;
        border: 1px solid var(--color-1);
        color: var(--color-1);
    }

/* .product-info{
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #62626267;
  
} */
.flex-respons {
    flex-direction: row;
}

@media (max-width: 1200px) {
    .flex-respons {
        flex-direction: column;
    }

    .flex-respons-colum {
        flex-direction: column-reverse;
    }
}

.tab-pane p {
    text-align: justify;
}
/* botton info */
.nav-link {
    color: #333333c3;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--color-1) !important;
}

.b-bottom {
    border-bottom: 1px solid rgba(65, 65, 65, 0.168);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.b-bottom2 {
    border-bottom: 1px solid rgba(65, 65, 65, 0.168);
    margin-top: 12px !important;
}

    .b-bottom2 p {
        margin: 9px !important;
    }

.More-details .title {
    color: #333333;
    font-size: 23px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-1);
    width: fit-content;
}

.More-details .description {
    color: #4e4e4e;
    font-size: 15px;
    justify-content: center;
    line-height: 29px;
}

.subtitle {
    color: #2a2a2a;
    font-size: 17px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-1);
}

/* .................... */
/* register */
.login-items-box1 {
    width: 100%;
    border-radius: 25px;
    opacity: 0.7;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    padding: 42px;
    color: #414a75;
}

.login-items-box2 {
    width: 100%;
    border-radius: 25px;
    opacity: 0.7;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    padding: 42px;
}

    .login-items-box2 > .img-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

.login-items-box-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 13px;
    color: #4b4b4b;
    font-size: 18px;
    line-height: 32px;
}

.login-form {
    width: 100%;
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.forms-container {
    color: #4b4b4b;
    padding: 20px 25px;
    background-color: #929ac122;
    border-radius: 14px;
}

.forms-container2 {
    position: relative;
    color: #414a75;
    padding: 55px 25px 20px 25px;
    background-color: #929ac10a;
    border-radius: 14px;
    border: 1px solid #dee1ed;
    display: none;
}

.forms-container2-title {
    position: absolute;
    top: -20px;
    right: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    color: #414a75;
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 14px;
}

.radio-group {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3d79fc;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    input[type="radio"]:checked {
        background-color: #3d79fc;
        border: 5px solid white;
        box-shadow: 0 0 0 2px #3d79fc;
    } */

.input-contaner-register {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 10px;
}

.checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-1);
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

    .checkbox input[type="checkbox"]:checked {
        border: 1px solid var(--color-1);
        background-color: var(--color-1);
    }

        .checkbox input[type="checkbox"]:checked::after {
            content: '✔';
            color: white;
            font-size: 14px;
            position: absolute;
            left: 4px;
            top: 1px;
        }


@media (max-width: 767px) {
    .input-contaner-register {
        grid-template-columns: 1fr;
    }

    .tamas-item-container {
        grid-template-columns: 1fr;
    }
}

.login-form-input {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    border: 1px solid #dee1ed;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    display: flex;
}

.login-form-textarea {
    width: 100%;
    min-height: 50px;
    border-radius: 7px;
    border: 1px solid #dee1ed;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    display: flex;
    padding: 12px 16px;
    outline: none;
    min-height: 100px;
}

.login-form-input-input {
    width: calc(100% - 50px);
    height: 50px;
    padding: 0 16px;
    border: transparent;
    background: transparent;
    color: #292929;
    font-size: 15px;
    outline: none;
}

.login-form-input-span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c76ab;
    font-size: 23px;
}

.login-items-box3 {
    border-radius: 25px;
    opacity: 0.7;
    background: #ffffffc9;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
    padding: 42px;
    text-align: center;
}

@media (max-width: 768px) {
    /* .login-items-box3 {
        width: 90%;
    } */

    .login-items-box3 {
        border-radius: 25px;
        opacity: 0.7;
        background: #ffffffc9;
        box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
        padding: 23px;
    }

    .login-form {
        padding: 0;
    }
}

.input-contaner-login {
    width: 100%;
    margin-top: 10px;
}

.btn-login {
    text-align: center;
    text-decoration: none;
    margin: 3px 8px;
    padding: 16px 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    border-radius: 10px;
    background-color: var(--color-1);
    border: 1px solid var(--color-1);
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    color: #fff;
    transition: all 0.4s;
}

    .btn-login:hover {
        background-color: transparent;
        border: 1px solid var(--color-1);
        box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
        color: var(--color-1);
    }

.a-login {
    width: fit-content;
    color: #8285a0;
    font-size: 16px;
    font-weight: 500;
}

.not-register {
    color: #4f4f4f;
    font-size: 16px;
    /* font-weight: bold; */
}

.go-to-register {
    color: var(--color-1);
    font-size: 16px;
    font-weight: bold;
    margin: 0 8px;
}

.register-form-input-span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-1);
    ;
    font-size: 19px;
}

.register-form-input-btn {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-1);
    color: white;
    font-size: 14px;
    border-radius: 7px 0 0 7px;
    /* padding: 0 10px; */
}

    .register-form-input-btn div {
        cursor: pointer;
        width: 70px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
/* order-register */
.form-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* max-width: 700px; */
    margin: auto;
}

.label-custom {
    font-weight: bold;
    color: #606060;
    margin-bottom: 0.5rem;
    font-size: 12px;
    display: block;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border-radius: 7px;
    border: 1px solid #dee1ed;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(76, 86, 134, 0.1);
    overflow: hidden;
    transition: border 0.3s;
}

    .input-wrapper:focus-within {
        border-color: var(--color-1);
    }

.custom-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

    .custom-input::placeholder {
        color: #bcbcbc;
        font-size: 14px;
    }

    .custom-input::-webkit-input-placeholder {
        color: #bcbcbc;
        font-size: 14px;
    }

    .custom-input:-moz-placeholder {
        color: #bcbcbc;
        font-size: 14px;
    }

    .custom-input::-moz-placeholder {
        color: #bcbcbc;
        font-size: 14px;
    }

    .custom-input:-ms-input-placeholder {
        color: #bcbcbc;
        font-size: 14px;
    }

.input-icon {
    padding: 0.75rem 1rem;
    color: var(--color-1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-row-custom {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-col-custom {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 150px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.order-container {
    padding: 1rem 1rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
}

.product-card-order {
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 1rem;
    background-color: #fff;
    /* max-width: 700px; */
    margin: auto;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}


    .product-card-order .product-image {
        width: 100px !important;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
    }

    .product-card-order .product-info {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin: 0 1rem;
        width: 100%;
    }

@media (max-width: 768px) {
    .product-card-order .product-info {
        margin: 0;
    }
}

.product-card-order .product-title {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    border: none;
    /* display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal; */
}

.product-card-order .price-box {
    text-align: left;
}

.product-card-order .discounted-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-1);
}

.trash .icon {
    color: #939393 !important;
    cursor: pointer !important;
}

.product-card-order .original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.8rem;
}

.product-card-order .discount-percent {
    color: #dc3545;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
    background-color: var(--color-1);
    color: white;
    padding: 6px;
}

.quantity-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    max-width: 120px;
    padding: 0.3rem 0.6rem;
    gap: 10px;
    background-color: #f8f9fa57;
}

    .quantity-box .icon {
        cursor: pointer;
        font-size: 1rem;
    }

.quantity-number {
    font-weight: bold;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.price-details {
    padding: 1.5rem;
    /* border: 1px solid #dee2e6; */
    /* border-radius: 15px; */
    background-color: #fff;
}

    .price-details h5 {
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #333;
    }

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 1rem;
}

    .price-row + .price-row {
        border-top: 1px solid #eee;
    }

.price-label {
    color: #555;
}

.price-value {
    font-weight: bold;
    color: #333;
}

.continue-btn {
    background-color: var(--color-1);
    color: white;
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 7px;
    border: 1px solid var(--color-1);
    transition: all 0.2s ease-in-out;
}

    .continue-btn:hover {
        border-color: var(--color-1) !important;
        background-color: transparent !important;
        color: var(--color-1) !important;
    }

.flex-md-r-sm-col {
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .flex-md-r-sm-col {
        flex-direction: column;
        gap: 10px;
    }
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}
