:root {
    --container-width: 1170px;
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --orange: #fab500;
}

* {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

@media (max-width: 1400px) and (min-width: 1200px) {
     :root {
        --container-width: 1170px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
     :root {
        --container-width: 953px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
	}

.toggle-menu,
.mobile-menu-wrapper {
    display: none;
}

body {
    font-size: 16px;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.campaign-bar {
    text-align: center;
    background: var(--orange);
    font-weight: 700;
}

.campaign-bar a {
    color: #0776af !important;
    transition: 300ms;
    display: block;
    padding: 10px 0;
}

.campaign-bar a:hover {
    color: #fff !important;
}

.main-header {
    background: #fff;
    position: relative;
    z-index: 99;
}

.main-header .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 100px;
    padding: 20px 0;
}

.main-header .logo-wrapper .logo {
    width: 250px;
}

.main-header .logo-wrapper .actions {
    display: flex;
    column-gap: 30px;
    justify-content: flex-end;
    width: 270px;
    position: relative;
}

.main-header .logo-wrapper .actions a {
    display: block;
    text-align: center;
    position: relative;
}

.main-header .logo-wrapper .actions a>span.title {
    display: block;
    color: #000;
    opacity: 0.5;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    transition: 300ms;
}

.main-header .logo-wrapper .actions a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: 300ms;
    filter: brightness(0);
    opacity: 0.5;
}

.main-header .logo-wrapper .actions a .counter {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: 1;
    transition: 300ms;
    background-color: var(--orange);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 100%;
    left: calc(50% - 8px);
    top: 5px;
    color: #000;
}

.main-header .logo-wrapper .actions a:hover img {
    filter: brightness(1);
    opacity: 1;
}

.main-header .logo-wrapper .actions a:hover .title {
    color: var(--orange);
    opacity: 1;
}

.main-header .logo-wrapper .search {
    width: calc(100% - 720px);
}

.main-header .logo-wrapper .search .search-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: 1px solid #c0c0c0;
    border-radius: 30px;
    padding: 5px;
}

.main-header .logo-wrapper .search .search-form input {
    width: 100%;
    border: 0;
    font-size: 12px;
    padding: 5px;
    border-radius: 30px;
}

.main-header .logo-wrapper .search .search-form .submit-btn {
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #fff;
    transition: 300ms;
    cursor: pointer;
}

.main-header .logo-wrapper .search .search-form .submit-btn>i {
    font-weight: lighter;
}

.main-header .menu-wrapper {
    background: #f9f9f9;
    border-block: 1px solid #e5e5e5;
}

.main-header .menu-content>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .menu-content>ul>li {
    position: relative;
}

.main-header .menu-content>ul>li:has(ul)>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
}

.main-header .menu-content>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    transition: 300ms;
    white-space: nowrap;
    font-size: 14px;
    padding: 15px 0;
}

.main-header .menu-content>ul>li>a>img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.main-header .menu-content>ul>li>ul {
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    background: #e5e5e5;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
}

.main-header .menu-content>ul>li>ul>li>a {
    display: block;
    font-size: 14px;
    color: #000;
    padding: 8px 10px;
    white-space: nowrap;
    font-weight: 500;
    transition: 300ms;
}

.main-header .menu-content>ul>li>ul>li>a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
}

.main-header .menu-content>ul>li>a:hover {
    color: var(--orange);
}

.main-header .menu-content>ul>li>ul>li:hover>a {
    background-color: var(--orange);
    color: #fff;
}

.main-header .menu-content>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-sliders {
    margin-top: 50px;
}

.main-sliders img {
    border-radius: 15px;
}

.default-nav {
    position: relative;
}

.default-nav .owl-nav i {
    background: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    transition: 300ms;
    font-weight: lighter;
    z-index: 1;
}

.default-nav .owl-nav button {
    position: absolute;
    top: calc(50% - 25px);
}

.default-nav .owl-prev {
    left: -25px;
}

.default-nav .owl-next {
    right: -25px;
}

.default-nav button:hover>i {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.default-nav .disabled i {
    opacity: 0;
}

.main-categories {
    margin: 40px 0;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.categories-container .category {
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: 15px;
    height: 250px;
    display: flex;
    transition: 300ms;
    background-size: cover;
    background-position: center center;
}

.categories-container .category>.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 0 30px 30px;
}

.categories-container .category>.content>.title {
    display: block;
    color: #fff;
    font-size: 30px;
}

.categories-container .category>.content>.title>b {
    display: block;
}

.categories-container .category>.content>.read-more {
    background: #fff;
    margin-top: 30px;
    font-size: 14px;
    transition: 300ms;
    padding: 10px 30px;
    border-radius: 30px;
}

.categories-container .category:hover {
    transform: translateY(-10px);
}

.categories-container .category>.content>.read-more:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.product-item {
    border: 1px solid #808080;
    border-radius: 15px;
    padding: 15px;
    background: #fff;
    transition: 300ms;
}

.product-item .image {
    position: relative;
}

.product-item .image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.product-item .image .tags {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
}

.product-item .image .tags .tag {
    font-size: 13px;
    padding: 5px 8px;
    border-radius: 5px;
}

.product-item .image .tags .tag.tag-discount {
    background: #0c6ba3;
    color: #fff;
}

.product-item .image .tags .tag.tag-free-shipping {
    background: #f9595f;
    color: #fff;
}

.product-item .image .tags .tag.tag-fast-shipping {
    background: #7edb3b;
    color: #fff;
}

.product-item .image .add-favorite {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: #f9595f;
    cursor: pointer;
    transition: 300ms;
}

.product-item .image .add-favorite:hover {
    transform: scale(1.1);
}

.product-item .image .add-favorite:not(.added) i {
    font-weight: lighter;
}

.product-item .content {
    padding-top: 20px;
}

.product-item .content .meta {
    display: flex;
    column-gap: 10px;
    font-size: 14px;
    color: #808080;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-item .content .meta .stars i {
    font-weight: lighter;
    transition: 300ms;
}

.product-item .content .meta .stars {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.product-item .content .meta .stars.star-5 i:nth-child(-n + 5) {
    font-weight: bolder;
}

.product-item .content .meta .stars.star-4 i:nth-child(-n + 4) {
    font-weight: bolder;
}

.product-item .content .meta .stars.star-3 i:nth-child(-n + 3) {
    font-weight: bolder;
}

.product-item .content .meta .stars.star-2 i:nth-child(-n + 2) {
    font-weight: bolder;
}

.product-item .content .meta .stars.star-1 i:nth-child(-n + 1) {
    font-weight: bolder;
}

.product-item .content .brand {
    display: block;
    color: #808080;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms;
    font-size: 14px;
}

.product-item .content .title {
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.product-item .content .price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.product-item .content .price-wrapper .amount .discount-wrapper {
    display: flex;
    font-size: 13px;
}

.product-item .content .price-wrapper .amount .discount-wrapper .rate {
    font-weight: 700;
    color: #0c6ba3;
}

.product-item .content .price-wrapper .amount .discount-wrapper .off-price {
    padding-left: 5px;
    margin-left: 5px;
    border-left: 1px solid #808080;
    color: #808080;
    text-decoration: line-through;
}

.product-item .content .price-wrapper .amount .price {
    font-size: 22px;
    font-weight: 700;
}

.product-item .content .add-basket {
    font-size: 14px;
    color: #808080;
    border: 1px solid #808080;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    display: block;
}

.product-item .content .add-basket:hover,
.product-item .content .add-basket.added {
    background: #fab500;
    border-color: transparent;
    color: #fff;
}

.main-related-products {
    padding: 60px 0;
}

#productsTabContent .loading {
    height: 500px;
    overflow: hidden;
}

.main-title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-related-products ul {
    justify-content: center;
    margin-bottom: 30px;
    border: 0;
    column-gap: 10px;
}

.main-related-products ul .nav-link {
    border-radius: 30px;
    transition: 300ms;
    background: transparent;
    border: 1px solid #0c6ba3;
    font-weight: 500;
    color: #0c6ba3;
}

.main-related-products ul .nav-link:hover,
.main-related-products ul .nav-link.active {
    background: #0c6ba3;
    color: #fff;
}

.product-item:hover {
    border-color: #fab500;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.products-container .product-item {
    width: calc(25% - 30px);
    margin: 15px;
}

.main-products-layouts {
    padding: 60px 0;
    background: #fff;
}

.loading {
    position: relative;
}

.loading:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
}

.loading:after {
    content: "\f110";
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    z-index: 999;
    font-family: "Font Awesome 5 Pro";
    font-size: 50px;
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    animation: spin 1.2s linear infinite;
    color: #c2c2c2;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.main-widgets {
    padding: 60px 0;
    background: #fff;
}

.widgets-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.widgets-container .widget {
    width: calc(33.3% - 15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 20px;
    border-radius: 15px;
}

.widgets-container .widget .image {
    width: 90px;
}

.widgets-container .widget .content {
    width: calc(100% - 30px);
    padding-left: 20px;
}

.widgets-container .widget .image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.widgets-container .widget:nth-child(1) {
    background: #eefffb;
}

.widgets-container .widget:nth-child(2) {
    background: #f8eeff;
}

.widgets-container .widget:nth-child(3) {
    background: #ffffee;
}

.widgets-container .widget .content .title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.widgets-container .widget .content .description {
    margin: 0;
    font-size: 15px;
    opacity: 0.5;
    font-weight: 500;
}

.main-footer {
    background: #fff;
    padding-top: 60px;
    border-top: 5px solid #fab500;
}

.main-footer .logo-wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    margin-bottom: 50px;
}

.main-footer .logo-wrapper>div {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer .logo-wrapper>div:not(:first-child):before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #e5e5e5;
}

.main-footer .logo-wrapper>.logo img {
    width: 100%;
}

.main-footer .logo-wrapper>.socials {
    column-gap: 10px;
}

.main-footer .logo-wrapper>.socials .title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.main-footer .logo-wrapper>.socials nav {
    display: flex;
    column-gap: 10px;
}

.main-footer .logo-wrapper>.socials nav a {
    display: block;
    transition: 300ms;
    color: #0c6ba3;
    font-size: 28px;
}

.main-footer .logo-wrapper>.socials nav a:hover {
    opacity: 0.5;
}

.main-footer .logo-wrapper>.secure-shopping {
    column-gap: 15px;
}

.main-footer .logo-wrapper>.secure-shopping span {
    font-size: 18px;
    font-weight: 600;
    color: #00a861;
}

.main-footer .menu-container {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}

.main-footer .menu-container>div {
    flex: 1;
}

.main-footer .menu-container .menu-title {
    font-weight: 700;
    display: block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
}

.main-footer .menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .menu-container ul a {
    color: #000;
    display: block;
    padding: 5px 0;
    transition: 300ms;
}

.main-footer .menu-container ul a:hover {
    opacity: 0.5;
}

.main-footer .menu-container>div>a {
    display: block;
    color: #000;
    padding: 5px 0;
}

.main-footer .menu-container>div>p {
    margin: 5px 0;
}

.main-footer .menu-container>.newsletter-form {
    min-width: 440px;
}

.main-footer .menu-container>.newsletter-form .form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 30px;
}

.main-footer .menu-container>.newsletter-form .form input {
    width: 100%;
    padding: 15px;
    border: 0;
    background: transparent;
}

.main-footer .menu-container>.newsletter-form .form .submit-btn {
    background: #fab500;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
}

.main-footer .menu-container>.newsletter-form .form .submit-btn:hover {
    background: #000;
}

.main-footer .brands {
    padding: 10px 0;
    text-align: center;
    border-block: 1px solid #e5e5e5;
    margin: 30px 0;
}

.main-footer .copyright-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 30px;
}

.main-footer .copyright-bar p {
    margin: 0;
}

.main-footer .copyright-bar .powered {
    color: #de1a20;
    font-weight: 500;
}

.main-footer .copyright-bar .powered a {
    color: #de1a20;
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
    padding-right: 5px;
    /* border-right: 1px solid; */
}

.main-banner {
    padding: 60px 0;
    background: #fff;
}

.main-banner-2 {
    background: #fff;
}

.owl-carousel.default-dots .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 30px 0;
}

.owl-carousel.default-dots .owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #e1e1e1;
    transition: 300ms;
}

.owl-carousel.default-dots .owl-dots .owl-dot.active {
    background: #808080;
}

.page-header {
    background: #fff;
    padding: 20px 0 40px;
}

.page-header .breadcrumb {
    font-size: 13px;
}

.page-header .breadcrumb {
    margin-bottom: 20px;
}

.page-header .breadcrumb li:not(:first-child) a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    margin: 0 10px;
    font-weight: normal;
    color: #000;
}

.page-header .breadcrumb li a {
    display: block;
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.page-header .breadcrumb li:last-child a {
    font-weight: 600;
}

.page-header .breadcrumb li a:hover {
    color: #fab500;
}

.page-header .page-cover img {
    width: 100%;
}

.page-header .page-cover {
    position: relative;
}

.page-header .page-cover .page-title {
    position: absolute;
    left: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 47px;
    margin: 0;
    font-weight: 700;
}

.page-details {
    background: #fff;
}

.category-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.category-details .sidebar {
    width: 320px;
}

.category-details .sidebar .menu {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 10px;
}

.category-details .sidebar .menu .menu-title {
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.category-details .sidebar .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-details .sidebar .menu ul>li {
    margin-bottom: -1px;
}

.category-details .sidebar .menu ul>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 300ms;
    padding: 15px;
    border: 1px solid #e5e5e5;
    column-gap: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.category-details .sidebar .menu ul>li>a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.category-details .sidebar .menu ul>li.active>a,
.category-details .sidebar .menu ul>li:hover>a {
    background: #e5e5e5;
}

.category-details>.page-content {
    width: calc(100% - 360px);
    margin-bottom: 30px;
}

.category-details>.page-content .filter-bar {
    display: flex;
    border: 1px solid #e5e5e5;
    padding: 30px 20px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

.category-details>.page-content .filter-bar .options {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.category-details>.page-content .filter-bar .options .option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.category-details>.page-content .filter-bar .options label {
    transition: 300ms;
    cursor: pointer;
    font-size: 14px;
}

.category-details>.page-content .filter-bar .options input {
    cursor: pointer;
}

.category-details>.page-content .filter-bar .ranking {
    display: flex;
    align-items: center;
}

.category-details>.page-content .ranking .counter {
    margin: 0;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 500;
}

.category-details>.page-content .ranking select {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: transparent;
}

.page-details .products-container .product-item {
    width: calc(33.3% - 30px);
}

.product-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: -40px;
    column-gap: 50px;
    margin-bottom: 50px;
overflow: hidden;
}

.product-details>div {
    flex: 1;
}

.bg-gray {
    background: #f9f9f9;
}

.product-details>.image {
    background: #fff;
    border-radius: 20px;
text-align: center;
}

.product-details>.content .meta {
    display: flex;
    column-gap: 10px;
    color: #808080;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-details>.content .meta .stars i {
    font-weight: lighter;
    transition: 300ms;
}

.product-details>.content .meta .stars {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.product-details>.content .meta .stars.star-5 i:nth-child(-n + 5) {
    font-weight: bolder;
}

.product-details>.content .meta .stars.star-4 i:nth-child(-n + 4) {
    font-weight: bolder;
}

.product-details>.content .meta .stars.star-3 i:nth-child(-n + 3) {
    font-weight: bolder;
}

.product-details>.content .meta .stars.star-2 i:nth-child(-n + 2) {
    font-weight: bolder;
}

.product-details>.content .meta .stars.star-1 i:nth-child(-n + 1) {
    font-weight: bolder;
}

.product-details>.content .brand {
    display: block;
    color: #808080;
    text-transform: uppercase;
    transition: 300ms;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-details>.content .title {
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.product-details>.content .price-wrapper {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 30px;
}

.product-details>.content .price-wrapper .amount .discount-wrapper {
    display: flex;
    font-size: 18px;
}

.product-details>.content .price-wrapper .amount .discount-wrapper .rate {
    font-weight: 700;
    color: #0c6ba3;
}

.product-details>.content .price-wrapper .amount .discount-wrapper .off-price {
    padding-left: 5px;
    margin-left: 5px;
    border-left: 1px solid #808080;
    color: #808080;
    text-decoration: line-through;
    white-space: nowrap;
}

.product-details>.content .price-wrapper .amount .price {
    font-size: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.product-details>.content .add-basket {
    font-size: 16px;
    color: #808080;
    border: 1px solid #808080;
    padding: 15px 30px;
    border-radius: 30px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    display: block;
    font-weight: 600;
    margin-left: 26px;
}

.product-details>.content .add-basket:hover,
.product-details>.content .add-basket.added {
    background: #fab500;
    border-color: transparent;
    color: #fff;
}

.product-details>.content .title {
    display: block;
    font-weight: 600;
    font-size: 30px;
    max-width: 70%;
    margin-bottom: 30px;
}

.product-details>.content .price-wrapper .action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
}

.product-details>.content .price-wrapper .action .adet {
    border: 1px solid #808080;
    padding: 13px;
    border-radius: 32px;
}

.product-details>.content .price-wrapper .action .adet input {
    border: none;
    background: transparent;
    text-align: center;
    width: 70px;
    padding: 0;
    margin: 0;
    text-indent: 0px;
    font-weight: 600;
    font-size: 19px;
}

.product-details>.content .add-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
}

.product-details>.content .add-favorite i {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid #cd1f2e;
    color: #cd1f2e;
    transition: 300ms;
    font-weight: lighter;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.product-details>.content .add-favorite span {
    font-weight: 700;
    opacity: 0.5;
    transition: 300ms;
}

.product-details>.content .add-favorite:hover i {
    transform: scale(1.1);
}

.product-details>.content .add-favorite.added i {
    background: #cd1f2e;
    color: #fff;
    font-weight: bolder;
}

.related-products {
    background: #fff;
    padding: 50px 0;
}

.related-products-title,
.product-reviews-title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.auth-page {
    position: relative;
    margin-bottom: 50px;
}

.auth-page>.image {
    width: 40%;
}

.auth-page>.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-page>div>.content {
    width: 60%;
    display: flex;
    align-items: center;
    overflow: auto;
    margin: auto;
}

.auth-page>div>.content .form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

.auth-page>div>.content .form>.input {
    width: calc(50% - 10px);
}

.auth-page>div>.content .form .input-item {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.auth-page>div>.content .form textarea.input-item {
    height: 200px;
}

.auth-page>div>.content h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 30px;
}

.auth-page>div>.content .return-home {
    transition: 300ms;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    color: #000;
    transition: 300ms;
    font-weight: 600;
    font-size: 14px;
    color: #959595;
}

.auth-page>div>.content .return-home i {
    background: #d1d1d1;
    display: inline-flex;
    width: 20px;
    height: 20px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    line-height: 1;
    transition: 300ms;
}

.auth-page>div>.content .return-home:hover i {
    background: var(--orange);
    color: #fff;
}

.auth-page>div>.content .logo {
    max-width: 300px;
    margin: 30px 0 60px 0;
}

.auth-page>div>.content .submit-btn {
    font-size: 14px;
    color: #808080;
    border: 1px solid #808080;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    display: block;
}

.auth-page>div>.content .submit-btn:hover {
    background: #fab500;
    border-color: transparent;
    color: #fff;
}

.auth-page .auth-page-content.login {
    margin: auto;
    max-width: 500px;
}

.auth-page .login-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.auth-page .login-actions a {
    font-weight: 500;
    color: #000;
    transition: 300ms;
    opacity: 0.6;
}

.auth-page .login-actions a:hover {
    opacity: 1;
}

.auth-page .login-actions label {
    user-select: none;
    cursor: pointer;
    font-weight: 500;
    opacity: 0.6;
    transition: 300ms;
}

.auth-page .login-actions label:hover {
    opacity: 1;
}

.auth-page .no-account {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.auth-page .no-account p {
    font-size: 14px;
}

.auth-page .no-account p a {
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.auth-page .no-account p a:hover {
    color: var(--orange);
}

.page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.page-container>.content {
    width: calc(100% - 300px);
    padding: 0 100px 50px 0;
    background: #f9f9f9;
}

.page-container>.content h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

.page-container>.content h2:not(:first-child) {
    margin-top: 50px;
}

.page-container>.menu {
    width: 300px;
    padding-top: 40px;
}

.half-page {
    position: relative;
}

.half-page:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: #fff;
}

.page-container>.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-container>.menu ul>li>a {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    transition: 300ms;
    padding: 15px 30px 15px 50px;
    margin-left: -20px;
}

.page-container>.menu ul>li.active>a {
    background: var(--orange);
}

.page-container>.menu ul>li:not(.active)>a:hover {
    color: var(--orange);
}

.auth-page .menu-content {
    width: 120px;
    display: flex;
}

.auth-page .menu-content .menu-bar {
    background: var(--orange);
    display: flex;
    flex-direction: column;
    width: 120px;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.auth-page .menu-content .menu-bar .categories-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    user-select: none;
    transition: 300ms;
}

.auth-page .menu-content .menu-bar .categories-btn .title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 500;
    transform: rotate(180deg);
    padding-top: 20px;
    font-weight: 600;
}

.auth-page .menu-content .menu-bar .categories-btn:hover {
    opacity: 0.7;
}

.auth-page .menu-content .menu-bar .actions {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 35px;
}

.auth-page .menu-content .menu-bar .actions .action-btn {
    transition: 300ms;
    cursor: pointer;
    color: #000;
    text-align: center;
}

.auth-page .menu-content .menu-bar .actions .action-btn:hover {
    opacity: 0.7;
}

.auth-page .menu-content .menu-bar .contact a {
    font-size: 45px;
    color: #000;
    transition: 300ms;
    display: block;
}

.auth-page .menu-content .menu-bar .contact a>i {
    font-weight: bolder;
}

.auth-page .menu-content .menu-bar .contact a:hover {
    opacity: 0.6;
}

.auth-page-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #e4e4e4;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.auth-page-content-header .logo {
    width: 300px;
}

.auth-page-content-header .header-content {
    width: calc(100% - 300px);
    padding-left: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-page-content-header .header-content .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}

.auth-page-content-header .header-content .actions .auth-card {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    height: 64px;
}

.auth-page-content-header .header-content .actions .auth-card .icon i {
    font-size: 25px;
    font-weight: normal;
    padding-top: 5px;
    opacity: 0.7;
}

.auth-page-content-header .header-content .actions .auth-card:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    background: #f3f3f3;
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.auth-page-content-header .header-content .actions .auth-card:hover:after {
    background: var(--orange);
    color: #fff;
}

.auth-page-content-header .header-content .actions .auth-card .welcome {
    margin: 0;
    font-size: 13px;
}

.auth-page-content-header .header-content .actions .auth-card .auth-name {
    margin: 0;
    font-weight: 500;
}

.auth-page-content-header .header-content .actions .auth-card:hover .icon i {
    opacity: 1;
}

.auth-page-content-header .header-content .actions .auth-card-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 25px 20px 20px 20px;
    min-width: 100%;
    border-radius: 15px;
    z-index: 1;
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
}

.auth-page-content-header .header-content .actions .auth-card-menu:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    height: calc(100% - 5px);
    background: #fff;
    z-index: -1;
    border-radius: 15px;
}

.auth-page-content-header .header-content .actions .auth-card-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-page-content-header .header-content .actions .auth-card-menu .divider {
    height: 1px;
    background: #cdcdcd;
    margin: 10px 0;
}

.auth-page-content-header .header-content .actions .auth-card-menu ul li>a {
    display: block;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    padding: 5px 0;
}

.auth-page-content-header .header-content .actions .auth-card-menu ul li>a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
}

.auth-page-content-header .header-content .actions .auth-card-menu ul li>a:hover {
    color: var(--orange);
}

.auth-page-content-header .header-content .actions .auth-card:hover .auth-card-menu {
    opacity: 1;
    visibility: visible;
}

.auth-page-content-header .header-content>h2 {
    margin-bottom: 0;
    font-weight: 600;
}

.auth-page-content-header .header-content .actions .card-btn {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    height: 64px;
    color: #000;
    font-weight: 600;
    transition: 300ms;
}

.auth-page-content-header .header-content .actions .card-btn .counter {
    position: absolute;
    background: #e4e4e4;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    left: 10px;
    top: 10px;
    color: #000;
}

.auth-page-content-header .header-content .actions .card-btn:hover {
    color: var(--orange);
}

.auth-page-content-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.auth-page-content-details .page-menu {
    width: 270px;
}

.auth-page-content-details .page-menu .menu {
    border-radius: 15px;
    background: #fff;
}

.auth-page-content-details .page-menu .menu ul {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.auth-page-content-details .page-menu .menu ul a {
    display: block;
    font-weight: 600;
    color: #000;
    padding: 10px 20px;
    transition: 300ms;
    border-radius: 10px;
}

.auth-page-content-details .page-menu .menu ul a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: lighter;
    margin-right: 10px;
}

.auth-page-content-details .page-menu .menu ul a:hover {
    color: var(--orange);
    background: #f4f4f4;
}

.auth-page-content-details .details {
    width: calc(100% - 270px);
    padding-left: 50px;
}

.auth-page-content-details .details h2 {
    font-size: 35px;
    font-weight: 700;
}

.auth-page-content-details .details .form-content>p {
    max-width: 80%;
    margin-bottom: 30px;
}

.auth-page-content-details .details .form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.auth-page-content-details .details .form .input {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.auth-page-content-details .details .form .input .input-item {
    width: 100%;
    padding: 15px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #ddd;
}

.auth-page-content-details .details .form .submit-btn {
    font-size: 14px;
    color: #808080;
    border: 1px solid #808080;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    display: block;
}

.auth-page-content-details .details .form .submit-btn:hover {
    background: #fab500;
    border-color: transparent;
    color: #fff;
}

.categories-menu {
    position: absolute;
    top: 0;
    left: 120px;
    background: var(--orange);
    z-index: 99;
    width: 300px;
    height: 100%;
    padding: 30px;
    transform: translateX(-100px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
}

.categories-menu .menu-title {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.7;
}

.categories-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-menu ul>li>a {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    padding: 10px 0;
    transition: 300ms;
}

.categories-menu ul>li>a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
}

.categories-menu ul>li>a:hover {
    opacity: 0.5;
}

.categories-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.categories-menu ul>li.divider {
    margin: 30px 0;
}

.categories-menu ul>li.divider+li>a {
    font-size: 16px;
}

.address-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.address-list .address {
    width: calc(33% - 30px);
    margin: 15px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}

.address-list .address .title {
    font-size: 20px;
    font-weight: 600;
}

.address-list .address .actions {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.address-list .address .actions span {
    padding: 10px 20px;
    border-radius: 8px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
}

.address-list .address .actions span>i {
    font-weight: lighter;
}

.address-list .address .actions .delete-btn {
    background: #ff4947;
    color: #fff;
}

.address-list .address .actions .edit-btn {
    background: var(--orange);
    color: #fff;
}

.address-list .address .actions span:hover {
    filter: brightness(0.9);
}

.main-header .logo-wrapper .actions .header-auth-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    transition: 300ms;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
}

.main-header .logo-wrapper .actions .header-auth-dropdown:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: calc(100% - 10px);
    background: #fff;
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.main-header .logo-wrapper .actions .header-auth-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    padding: 10px 0;
}

.main-header .logo-wrapper .actions .header-auth-dropdown ul a {
    text-align: left;
    padding: 5px 20px;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    font-size: 14px;
}

.main-header .logo-wrapper .actions .header-auth-dropdown ul .divider {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #eee;
}

.main-header .logo-wrapper .actions .header-auth-dropdown ul a:hover {
    color: var(--orange);
}

.main-header .logo-wrapper .actions .header-auth-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.product-details>.content .meta .comment-btn {
    user-select: none;
    cursor: pointer;
    transition: 300ms;
}

.product-details>.content .meta .comment-btn>i {
    font-weight: lighter;
}

.product-details>.content .meta .comment-btn:hover>i {
    font-weight: bolder;
}

.product-details>.content .meta .comment-btn:hover {
    color: var(--orange);
}

.product-reviews {
    background: #fff;
    padding: 50px 0;
}

.product-reviews-sup-title {
    margin-top: -25px;
    font-weight: lighter;
    font-size: 20px;
    text-align: center;
}

.product-review {
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-review .user-letter {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.product-review .review-content {
    width: calc(100% - 70px);
    padding-left: 30px;
}

.product-review .review-content .review-meta {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-review .review-content .review-meta p {
    margin: 0;
}

.product-review .review-content .review-meta p>i {
    font-weight: lighter;
}

.product-review .review-content .review-meta .stars i {
    font-weight: lighter;
    transition: 300ms;
    opacity: 0.6;
}

.product-review .review-content .review-meta .stars {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.product-review .review-content .review-meta .stars.star-5 i:nth-child(-n + 5) {
    font-weight: bolder;
}

.product-review .review-content .review-meta .stars.star-4 i:nth-child(-n + 4) {
    font-weight: bolder;
}

.product-review .review-content .review-meta .stars.star-3 i:nth-child(-n + 3) {
    font-weight: bolder;
}

.product-review .review-content .review-meta .stars.star-2 i:nth-child(-n + 2) {
    font-weight: bolder;
}

.product-review .review-content .review-meta .stars.star-1 i:nth-child(-n + 1) {
    font-weight: bolder;
}

.review-form {
    position: relative;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
}

.review-form h3 {
    font-weight: 700;
}

.review-form .form-content {
    display: flex;
    align-items: flex-start;
}

.review-form .form-content input:not([type="radio"]),
.review-form .form-content textarea {
    border: 1px solid #eee;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
    margin-bottom: 20px;
}

.review-form .form-content textarea {
    height: 46px;
}

.review-form .form-content .left {
    width: 30%;
}

.review-form .form-content .left input:last-child {
    margin-bottom: 0;
}

.review-form .form-content .right {
    width: 100%;
    padding-left: 0px;
    display: flex;
    justify-content: space-between;
}

.review-form .form-content .right .inputs {
    width: calc(100% - 150px);
}

.review-form .form-content .right .stars {
    display: flex;
    column-gap: 20px;
    align-items: center;
    height: 35px;
}

.review-form .form-content .right .stars p {
    margin: 0;
}

.review-form .form-content .right .stars .options {
    display: flex;
    column-gap: 5px;
}

.review-form .form-content .right .stars .options .option {
    position: relative;
}

.review-form .form-content .right .stars .options .option input {
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.review-form .form-content .right .stars .options .option label {
    cursor: pointer;
    user-select: none;
}

.review-form .form-content .right .stars .options .option label i {
    font-weight: lighter;
}

.review-form .form-content .right .stars .options .option.active i {
    color: var(--orange);
    font-weight: bolder;
}

.review-form .form-content .right .submit-btn {
    width: 120px;
    background: #eee;
    display: flex;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    color: #727272;
    text-transform: uppercase;
    font-size: 14px;
    transition: 300ms;
}

.review-form .form-content .right .submit-btn:hover {
    background: var(--orange);
    color: #fff;
}

.user-select-none {
    user-select: none;
}

.orders {
    background: #fff;
    margin-top: 30px;
    border-radius: 15px;
}

.orders .orders-category {
    padding: 30px;
    margin-top: -30px;
    border-radius: 15px;
    transition: 300ms;
}

.orders .orders-category:first-child {
    margin-top: 0;
}

.orders .orders-category .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee;
    padding: 15px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.orders .orders-category .category-header p {
    margin: 0;
}

.orders .orders-category .category-header .title {
    font-size: 20px;
    font-weight: 600;
    color: #5d5d5d;
}

.orders .orders-category .category-header .content {
    text-align: right;
}

.orders .orders-category .category-header .content .price {
    font-size: 18px;
    font-weight: 700;
}

.orders .order {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 300ms;
}

.orders:hover>*:not(:hover) {
    opacity: 0.5;
}

.orders .order:not(.active):hover {
    border-color: #c4c4c4;
}

.orders .order .order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 80px 15px 30px;
    user-select: none;
    position: relative;
    transition: 300ms;
}

.orders .order .order-header:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.orders .order .order-header p {
    margin: 0;
}

.orders .order .order-header p>i {
    font-weight: lighter;
    margin-right: 5px;
}

.orders .order .order-header .info {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-weight: 500;
}

.orders .order .order-header .info>.status {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.orders .order .order-details {
    display: none;
    padding: 15px 30px;
}

.orders .order .order-details .addresses {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
}

.orders .order .order-details .addresses>div {
    flex: 1;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 30px 20px;
}

.orders .order .order-details .addresses>div .title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #7f7f7f;
}

.orders .order .order-details .addresses>div .address-title {
    font-size: 13px;
    font-weight: 600;
    color: #7f7f7f;
}

.orders .order .order-details .addresses>div .address-details {
    font-size: 13px;
    color: #7f7f7f;
    margin: 0;
}

.orders .order:last-child {
    margin-bottom: 0;
}

.orders .order .order-header .payment {
    text-align: right;
    font-weight: 500;
}

.orders .order .order-header .payment .price {
    font-size: 20px;
    font-weight: 600;
}

.orders .order .order-header .payment .payment-type {
    font-size: 14px;
}

.orders .order .products {
    margin-top: 20px;
}

.orders .order .products .product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 5px 15px;
}

.orders .order .products .product .image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.orders .order .products .product .discount-wrapper {
    display: flex;
    text-align: right;
    justify-content: flex-end;
}

.orders .order .products .product .discount-wrapper .rate {
    font-weight: 700;
    color: #0c6ba3;
    font-size: 13px;
}

.orders .order .products .product .discount-wrapper .off-price {
    padding-left: 5px;
    margin-left: 5px;
    border-left: 1px solid #808080;
    color: #808080;
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 13px;
}

.orders .order .products .product .price {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

.orders .order .products .product .image {
    width: 70px;
}

.orders .order .products .product .amount {
    width: 130px;
}

.orders .order .products .product .content {
    width: calc(100% - 200px);
    padding: 0 30px;
}

.orders .order .products .product .content .brand {
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5b5b5b;
}

.orders .order .products .product .content .title {
    margin: 0;
    font-weight: 500;
}

.orders .order.active .order-details {
    display: block;
}

.orders .order.active .order-header:after {
    background: var(--orange);
    transform: rotate(180deg);
}

.card-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-details .card-step-content {
    width: calc(100% - 430px);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}

.card-details .payment-summary {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    position: sticky;
    top: 20px;
}

.card-details .payment-summary h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-details .payment-summary>.description {
    font-size: 14px;
    margin: 0;
}

.card-details .payment-summary>.price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.card-details .payment-summary>.price-table {
    margin: 25px 0;
}

.card-details .payment-summary>.price-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-details .payment-summary>.price-table ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.card-details .payment-summary>.price-table ul li:last-child {
    border: 0;
}

.card-details .payment-summary>.price-table ul li .title {
    opacity: 0.8;
}

.card-details .payment-summary>.price-table ul li .value {
    font-weight: 500;
    display: block;
}

.card-details .payment-summary .button .card-step-button {
    display: block;
    text-align: center;
    padding: 15px 0;
    border-radius: 15px;
    background: #eee;
    color: #000;
    font-weight: 700;
    transition: 300ms;
}

.card-details .payment-summary .button .card-step-button:hover {
    background: #ddd;
}

.card-details .card-step-content .order-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.card-details .card-step-content .order-navigation>.step {
    font-weight: 500;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 30px;
    margin-right: 50px;
    position: relative;
    user-select: none;
    cursor: default;
}

.card-details .card-step-content .order-navigation>.step:last-child {
    margin-right: 0;
}

.card-details .card-step-content .order-navigation>.step:not(:last-child):after {
    content: "";
    width: 30px;
    height: 1px;
    background: #eee;
    position: absolute;
    right: -40px;
    top: calc(50% - 0.5px);
}

.card-details .card-step-content .order-navigation>.step.active {
    background: #eee;
}

.order-steps-page-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.card-details .card-content .products .product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.card-details .card-content .products .product .image {
    width: 50px;
}

.card-details .card-content .products .product .action {
    width: 50px;
}

.card-details .card-content .products .product .amount {
    width: 120px;
    padding-right: 10px;
}

.card-details .card-content .products .product .qty {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.card-details .card-content .products .product .qty .qty-button {
    width: 20px;
    height: 20px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 100%;
    transition: 300ms;
    min-width: 20px;
    user-select: none;
    cursor: pointer;
}

.card-details .card-content .products .product .qty .qty-button:hover {
    background: #ddd;
}

.card-details .card-content .products .product .qty input {
    width: 40px;
    text-align: center;
    border: 0;
    font-size: 20px;
    font-weight: 700;
}

.card-details .card-content .products .product .qty input::-webkit-outer-spin-button,
.card-details .card-content .products .product .qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.card-details .card-content .products .product .qty input[type="number"] {
    -moz-appearance: textfield;
}

.card-details .card-content .products .product .action .remove-btn {
    width: 40px;
    height: 40px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #7c7c7c;
    font-size: 14px;
    transition: 300ms;
    user-select: none;
    cursor: pointer;
}

.card-details .card-content .products .product .action .remove-btn:hover {
    background: #ddd;
}

.card-details .card-content .products .product .amount .discount-wrapper {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.card-details .card-content .products .product .amount .rate {
    font-weight: 700;
    color: #0c6ba3;
    font-size: 13px;
}

.card-details .card-content .products .product .amount .off-price {
    padding-left: 5px;
    margin-left: 5px;
    border-left: 1px solid #808080;
    color: #808080;
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 13px;
}

.card-details .card-content .products .product .amount .price {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

.card-details .card-content .products .product .content {
    width: calc(100% - 350px);
    padding-left: 10px;
}

.card-details .card-content .products .product .content .brand {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9d9d9d;
}

.card-details .card-content .products .product .content .title {
    margin: 0;
    font-weight: 600;
}

.card-details .card-content .products .product:last-child {
    border: 0;
}

.card-addresses .category-title {
    font-size: 18px;
    font-weight: 500;
}

.card-addresses .address-category:not(:last-child) {
    margin-bottom: 20px;
}

.card-addresses .address-options {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.card-addresses .address-options .address {
    border: 1px solid #eee;
    width: calc(33.3% - 30px);
    margin: 15px;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: 300ms;
}

.card-addresses .address-options .address input {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    opacity: 0;
    height: 0;
}

.card-addresses .address-options .address .address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-addresses .address-options .address .address-header .title {
    margin: 0;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
    transition: 300ms;
}

.card-addresses .address-options .address .address-header .title:before {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: 2.5px;
    content: "";
    border-radius: 100%;
    transition: 300ms;
    border: 2px solid #eee;
}

.card-addresses .address-options .address>p {
    margin: 0;
    font-size: 14px;
}

.card-addresses .address-options .address .edit-btn {
    background: #eee;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 5px;
}

.card-addresses .address-options .address .edit-btn i {
    margin-right: 5px;
}

.card-addresses .address-options .address.checked {
    border-color: var(--orange);
}

.card-addresses .address-options .address.checked .title {
    color: var(--orange);
}

.card-addresses .address-options .address.checked .title:before {
    background: var(--orange);
    border-color: transparent;
}

.payment-methods {
    margin-top: 40px;
}

.payment-methods .method .header {
    text-align: center;
    font-weight: 700;
    transition: 300ms;
    font-size: 20px;
    padding: 20px 0;
    border: 1px solid #eee;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
}

.payment-methods .method .header .title {
    margin: 0;
}

.payment-methods .method .content {
    display: none;
    padding: 30px;
}

.payment-methods .method {
    margin-bottom: 20px;
}

.payment-methods .method:hover .header {
    border-color: #ddd;
}

.payment-methods .method.active .header {
    background: #eee;
}

.payment-methods .method.active .content {
    display: block;
}

.credit-card-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.credit-card-form .input {
    width: 100%;
    margin: 10px 0;
}

.credit-card-form .input label,
.payment-methods .method label {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 500;
}

.credit-card-form .input input {
    width: 100%;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 5px;
}

.credit-card-form .input:nth-child(4),
.credit-card-form .input:nth-child(5) {
    width: calc(50% - 10px);
}

.payment-methods .method .button {
    margin-top: 20px;
    width: 100%;
}

.payment-methods .method .submit-btn {
    background: var(--orange);
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-radius: 5px;
    transition: 300ms;
    font-weight: 700;
    color: #fff;
    user-select: none;
    cursor: pointer;
}

.form-control:focus {
    box-shadow: unset;
    border-color: transparent;
}

.payment-result {
    position: relative;
    text-align: center;
}

.payment-result .icon i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 35px;
    margin: auto;
    font-weight: lighter;
}

.payment-result .icon {
    margin-bottom: 25px;
}

.payment-result.success .icon i {
    background: #5fa700;
    color: #fff;
    padding-top: 8px;
}

.payment-result.error .icon i {
    background: #ff4444;
    color: #fff;
}

.payment-result h3 {
    font-weight: 600;
}

.payment-result .description {
    font-size: 18px;
}

.payment-result .description a {
    font-weight: 500;
    color: #000;
    transition: 300ms;
}

.payment-result .description a:hover {
    color: var(--orange);
}

.payment-result ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.payment-result ul li {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
}

.bank-accounts h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bank-accounts .account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
}

.bank-accounts .account .image {
    width: 150px;
    text-align: center;
}

.bank-accounts .account .copy-button {
    white-space: nowrap;
    background: #e8e8e8;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    transition: 300ms;
    display: inline-block;
}

.bank-accounts .account .copy-button i {
    font-weight: normal;
}

.bank-accounts .account .copy-button:hover {
    background: #ddd;
}

.bank-accounts .account .button {
    width: 165px;
    text-align: right;
}

.bank-accounts .account .details {
    width: calc(100% - 315px);
    font-size: 14px;
}

.bank-accounts .account .details .bank-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bank-accounts .account .details .account-no {
    font-weight: 700;
    margin: 0;
}

.bank-accounts .account .details .branch,
.bank-accounts .account .details .branch-no {
    margin: 0;
}

.contacts-page {
    padding-top: 70px;
}

.contacts-page-title {
    font-weight: 700;
    margin-bottom: 70px;
}

.branches {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    padding-bottom: 100px;
}

.branches .branch {
    width: calc(50% - 15px);
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.branches .branch .content {
    padding: 50px;
}

.branches .branch .content .title {
    font-size: 25px;
    font-weight: 600;
    color: var(--orange);
}

.branches .branch .content a {
    display: block;
    color: #000;
    margin: 5px 0;
    transition: 300ms;
}

.branches .branch .content a:hover {
    color: var(--orange);
}

.branches .branch iframe {
    margin-bottom: -5px;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form label {
    display: none;
}

.contact-form input {
    width: 100%;
    background: transparent;
    border: 1px solid #eee;
    padding: 15px;
    min-height: initial;
}

.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #eee;
    padding: 15px;
    min-height: initial;
    height: 120px;
}

.contact-form .button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}

.contact-form .button .check {
    text-align: left;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}

.contact-form .button .check input {
    margin-top: 5px;
}

.contact-form .button .check label {
    user-select: none;
}

.contact-form button {
    color: #808080;
    border: 1px solid #808080;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    display: block;
    margin-top: 20px;
}

.contact-form button:hover {
    background: #fab500;
    border-color: transparent;
    color: #fff;
}

@media (max-width: 1400px) {
    .products-container .product-item {
        width: calc(33.3% - 30px);
    }
    .main-footer .logo-wrapper>.socials {
        flex-direction: column;
        row-gap: 10px;
    }
    .page-details .products-container .product-item {
        width: calc(50% - 30px);
        margin: 15px;
    }
    .category-details>.page-content .filter-bar .options {
        column-gap: 10px;
    }
}

@media (max-width: 1200px) {
    .main-header .logo-wrapper {
        column-gap: 10px;
    }
    .main-header .logo-wrapper .search {
        width: calc(100% - 620px);
    }
    .main-header .menu-content>ul>li>a {
        font-size: 12px;
    }
    .products-container .product-item {
        width: calc(50% - 30px);
    }
    .main-footer .menu-container>.newsletter-form {
        min-width: unset;
    }
    .main-footer .menu-container>.newsletter-form .form {
        flex-direction: column;
    }
    .main-footer .menu-container>.newsletter-form .form .submit-btn {
        width: 100%;
        text-align: center;
    }
    .category-details>.page-content .filter-bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 30px;
        padding: 20px 0 15px 0;
    }
    .product-details>.content .price-wrapper {
        flex-direction: column;
        row-gap: 30px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .product-details>.content .price-wrapper .action {
        padding-left: 0;
    }
    .product-details>.content .title {
        max-width: 80%;
    }
    .auth-page>.image {
        width: 25%;
    }
    .auth-page>.content {
        width: 75%;
    }
    .auth-page-content-header .header-content {
        padding-left: 30px;
    }
    .auth-page-content-header .header-content>h2 {
        font-size: 25px;
    }
    .auth-page-content-header .header-content .actions .auth-card .auth-name {
        font-size: 14px;
    }
    .auth-page-content-header .header-content .actions .auth-card {
        column-gap: 10px;
    }
    .auth-page-content-header .header-content .actions .card-btn {
        column-gap: 10px;
    }
    .auth-page-content-details .details {
        padding: 0 50px;
    }
    .orders .order .order-header .info .date {
        display: none;
    }
    .orders .order .order-header p {
        font-size: 13px;
    }
    .orders .order .order-header .payment .price {
        font-size: 15px;
        white-space: nowrap;
    }
    .orders .order .order-header .payment .payment-type {
        font-size: 12px;
    }
    .orders .order .order-header:after {
        width: 30px;
        height: 30px;
    }
    .orders .order .order-header {
        padding: 15px 60px 15px 15px;
    }
    .orders .order .products .product .content .title {
        font-size: 14px;
    }
    .orders .order .products .product .price {
        font-size: 16px;
    }
    .orders .order .order-details .addresses {
        column-gap: 15px;
    }
    .card-details .payment-summary {
        width: 300px;
    }
    .card-details .card-step-content {
        width: calc(100% - 330px);
    }
    .card-details .card-step-content .order-navigation>.step {
        margin-right: 30px;
        padding: 8px 15px;
        font-size: 14px;
    }
    .card-details .card-step-content .order-navigation>.step:not(:last-child):after {
        width: 20px;
        right: -25px;
    }
    .card-addresses .address-options .address {
        width: calc(50% - 30px);
    }
}

@media (max-width: 992px) {
    .main-header .menu-wrapper {
        display: none;
    }
    .main-header .logo-wrapper .search {
        display: none;
    }
    .toggle-menu {
        display: block;
        background: transparent;
        border: 0;
        color: #000;
        opacity: 0.5;
        transition: 300ms;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 500;
    }
    .toggle-menu i {
        font-size: 25px;
        font-weight: normal;
        display: block;
        margin-bottom: 5px;
        display: flex;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }
    .main-header .logo-wrapper .logo {
        width: 120px;
    }
    .main-header .logo-wrapper .actions {
        width: calc(100% - 120px);
        column-gap: 10px;
    }
    .main-sliders {
        margin-top: 0;
    }
    .categories-container>.category {
        width: 100%;
    }
    .main-related-products {
        padding: 0;
    }
    .main-title {
        font-size: 25px;
    }
    .products-container .product-item {
        width: 100%;
    }
    .products-container {
        margin-left: 0;
        margin-right: 0;
    }
    .widgets-container {
        flex-direction: column;
        row-gap: 30px;
    }
    .widgets-container .widget {
        width: 100%;
    }
    .main-footer .logo-wrapper {
        flex-direction: column;
    }
    .main-footer .logo-wrapper>div:not(:first-child):before {
        content: none;
    }
    .main-footer .logo-wrapper>div:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
    .main-footer .logo-wrapper>div {
        padding: 15px 0;
        width: 100%;
    }
    .main-footer {
        padding-top: 25px;
    }
    .main-footer .menu-container {
        flex-direction: column;
        row-gap: 30px;
    }
    .main-footer .copyright-bar {
        flex-direction: column-reverse;
        row-gap: 15px;
    }
    .default-nav .owl-prev {
        left: 5px;
    }
    .default-nav .owl-next {
        right: 5px;
    }
    .campaign-bar a {
        font-size: 12px;
    }
    .mobile-menu-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 99;
        background: #fff;
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 30px;
        transition: 300ms;
        transform: translateX(100%);
        opacity: 0;
        visibility: visible;
        display: block;
    }
    .mobile-menu-wrapper>div {
        margin: 30px 0;
    }
    .mobile-menu-wrapper .logo img {
        max-width: 70%;
    }
    .mobile-menu-wrapper .search-form {
        background: #eee;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 5px;
    }
    .mobile-menu-wrapper .search-form input {
        padding: 10px;
        font-size: 14px;
        background: transparent;
        border: 0;
    }
    .mobile-menu-wrapper .search-form .submit-btn {
        background: #fab500;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu-wrapper .menu .divider-title {
        margin-bottom: 15px;
        display: block;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: 0.4;
    }
    .mobile-menu-wrapper .menu ul {
        list-style: none;
        margin: 0 0 30px 0;
        padding: 0;
    }
    .mobile-menu-wrapper .menu ul li>a {
        display: block;
        color: #000;
        font-weight: 500;
        display: block;
        padding: 5px 0;
    }
    .mobile-menu-wrapper .menu ul li>a:before {
        content: "\f105";
        font-family: "Font Awesome 5 Pro";
        margin-right: 10px;
    }
    .mobile-menu-wrapper .close-button {
        margin-top: 0;
        margin-bottom: -90px;
        display: flex;
        justify-content: flex-end;
    }
    .open-menu .mobile-menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .page-details .products-container .product-item {
        width: 100%;
        margin: 15px 0;
    }
    .category-details {
        flex-direction: column-reverse;
        row-gap: 30px;
        margin-bottom: 30px;
    }
    .category-details>.page-content {
        width: 100%;
    }
    .page-header .breadcrumb li a {
        white-space: nowrap;
    }
    .page-header .breadcrumb {
        flex-wrap: unset;
        overflow: auto;
    }
    .category-details .sidebar {
        width: 100%;
    }
    .page-header .page-cover .page-title {
        /* position: unset; */
        font-size: 20px;
        margin-bottom: 20px;
    }
    .page-header .page-cover img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    .product-details {
        flex-direction: column;
        row-gap: 30px;
    }
    .product-details>.content .brand {
        font-size: 20px;
    }
    .product-details>.content .title {
        max-width: 100%;
        font-size: 25px;
    }
    .auth-page>.image {
        display: none;
    }
    .auth-page {
        height: unset;
    }
    .auth-page>.content {
        width: 100%;
        padding: 30px 15px 15px 15px;
    }
    .auth-page>.content .form>.input {
        width: 100%;
    }
    .page-container {
        flex-direction: column;
    }
    .page-container>.content {
        width: 100%;
        padding: 0;
    }
    .half-page:before {
        opacity: 0;
    }
    .page-container>.menu {
        width: 100%;
        margin-bottom: 50px;
    }
    .auth-page .menu-content {
        display: none;
    }
    .auth-page .auth-page-content {
        width: 100%;
    }
    .auth-page-content-header .header-content .actions .auth-card {
        column-gap: 0;
    }
    .auth-page-content-header .header-content .actions .auth-card p {
        display: none;
    }
    .auth-page-content-header .header-content .actions .auth-card:after {
        content: none;
    }
    .auth-page-content-header .header-content .actions .card-btn {
        column-gap: 0;
    }
    .auth-page-content-header .header-content .actions .card-btn .title {
        display: none;
    }
    .auth-page-content-header .header-content .actions .card-btn img {
        width: 26px;
    }
    .auth-page-content-header .logo {
        width: 120px;
    }
    .auth-page-content-header .header-content>h2 {
        font-size: 13px;
        margin-left: 5px;
    }
    .auth-page-content-details {
        flex-direction: column-reverse;
    }
    .auth-page-content-details .details {
        width: 100%;
        padding: 0;
    }
    .auth-page-content-details .page-menu {
        width: 100%;
        margin-top: 30px;
    }
    .auth-page-content-details .details .form .input {
        width: 100%;
    }
    .auth-page-content-header {
        column-gap: 0;
        padding: 10px 5px;
    }
    .auth-page-content-header .header-content {
        width: calc(100% - 120px);
    }
    .auth-page-content-details .details h2 {
        font-size: 25px;
    }
    .auth-page-content-details .details .form-content>p {
        max-width: 100%;
        font-size: 14px;
    }
    .main-header .logo-wrapper .actions a>span.title {
        display: none;
    }
    .main-categories {
        margin: 30px 0;
    }
    .categories-container>.category>.content>.title {
        font-size: 25px;
    }
    .main-related-products ul {
        row-gap: 20px;
    }
    .owl-carousel.default-dots .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
    }
    .main-products-layouts {
        padding-top: 0;
    }
    .widgets-container .widget .content .title {
        font-size: 20px;
    }
    .widgets-container .widget .content .description {
        font-size: 14px;
    }
    .auth-page .auth-page-content .form-content {
        width: 100%;
    }
    .auth-page-content-header .header-content .actions .auth-card {
        width: unset;
        height: unset;
        padding: 0;
        background: transparent;
    }
    .auth-page-content-header .header-content .actions .card-btn {
        width: unset;
        height: unset;
        background: transparent;
    }
    .auth-page-content-header .header-content {
        padding-left: 5px;
    }
    .auth-page-content-header .header-content .actions {
        column-gap: 5px;
    }
    .auth-page-content-header .header-content .actions .auth-card-menu {
        left: unset;
        right: 0;
    }
    .address-list {
        margin-left: 0;
        margin-right: 0;
    }
    .address-list .address {
        width: 100%;
        margin: 15px 0;
    }
    .auth-page>div>.content {
        width: 100%;
    }
    .main-header .logo-wrapper .actions .header-auth-dropdown {
        display: none !important;
    }
    .product-review .user-letter {
        display: none;
    }
    .product-review .review-content {
        width: 100%;
        padding-left: 0;
    }
    .product-review .review-content .review-meta p {
        white-space: nowrap;
    }
    .product-review .review-content .review-meta {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .review-form .form-content {
        flex-direction: column;
        row-gap: 15px;
    }
    .review-form .form-content .left {
        width: 100%;
    }
    .review-form .form-content .right .inputs {
        width: 100%;
    }
    .review-form .form-content .right {
        width: 100%;
        flex-direction: column;
        row-gap: 15px;
        padding-left: 0;
    }
    .review-form .form-content .right .submit-btn {
        width: 100%;
        padding: 15px 0;
    }
    .orders .orders-category .category-header .title {
        display: none;
    }
    .orders .orders-category .category-header .content {
        text-align: left;
    }
    .orders .order .order-header .info {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 10px;
    }
    .orders .order .order-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 15px;
    }
    .orders .order .order-header .info>.status {
        border-right: 0;
    }
    .orders .order .order-header .payment {
        text-align: left;
    }
    .orders .order .order-details .addresses {
        flex-direction: column;
        row-gap: 15px;
    }
    .orders .order .products .product {
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
    }
    .orders .order .products .product>div {
        width: 100% !important;
    }
    .orders .order .products .product .price {
        text-align: center;
    }
    .orders .order .products .product .discount-wrapper {
        justify-content: center;
        text-align: center;
    }
    .card-details {
        flex-direction: column;
        row-gap: 30px;
    }
    .card-details .card-step-content {
        width: 100%;
    }
    .card-details .card-step-content .order-navigation>.step {
        padding: 5px;
        border: 0;
        margin: 0;
        width: 100%;
        white-space: nowrap;
        text-align: center;
        font-size: 12px;
    }
    .card-details .card-step-content .order-navigation>.step:not(.active) {
        opacity: 0.5;
    }
    .card-details .card-step-content {
        padding: 10px;
    }
    .card-details .card-content .products .product {
        flex-wrap: wrap;
        text-align: center;
    }
    .card-details .card-content .products .product .image {
        width: 100%;
        margin-bottom: 10px;
        order: 1;
    }
    .card-details .card-content .products .product .content {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        text-align: center;
        order: 2;
    }
    .card-details .card-content .products .product .qty,
    .card-details .card-content .products .product .amount,
    .card-details .card-content .products .product .action {
        width: calc(33% - 10px);
    }
    .card-details .card-content .products .product .action {
        justify-content: flex-end;
        display: flex;
        order: 5;
    }
    .card-details .card-content .products .product .qty {
        order: 4;
    }
    .card-details .card-content .products .product .amount .discount-wrapper {
        justify-content: flex-start;
        text-align: left;
    }
    .card-details .card-content .products .product .amount .price {
        text-align: left;
    }
    .card-details .payment-summary {
        width: 100%;
    }
    .card-details .card-content .products .product .amount {
        order: 3;
    }
    .card-addresses .address-options .address {
        width: 100%;
    }
    .card-addresses .address-options {
        margin-left: 0;
        margin-right: 0;
    }
    .payment-methods .method .content {
        padding: 20px 0;
    }
    .credit-card-form .input:nth-child(3),
    .credit-card-form .input:nth-child(4) {
        width: 100%;
    }
    .bank-accounts .account {
        flex-direction: column;
    }
    .bank-accounts .account .image {
        width: 100%;
    }
    .bank-accounts .account .details {
        width: 100%;
    }
    .bank-accounts .account .button {
        width: 100%;
        text-align: left;
    }
    .bank-accounts .account .copy-button {
        width: 100%;
        text-align: center;
    }
    .contacts-page {
        padding-top: 30px;
    }
    .contacts-page-title {
        margin-bottom: 30px;
    }
    .branches .branch {
        width: 100%;
        margin: 15px 0;
    }
    .branches .branch .content {
        padding: 30px;
        font-size: 14px;
    }
    .branches .branch .content .title {
        font-size: 20px;
    }
    .branches {
        padding-bottom: 50px;
    }
    .contact-form {
        padding: 50px 0;
    }
    .contact-form .button {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
    .contact-form .form-body {
        width: 1005;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.kurumsal {
    display: none;
}

.input d {
    margin-left: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: var(--orange);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--orange);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (max-width: 768px) {
    .product-details>.image  img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    .product-details>.content .price-wrapper .action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-left: 0;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: start;
        gap: 20px;
        align-items: start;
    }
    .product-details>.content .price-wrapper .action .adet input {
        text-indent: 0px;
    }
    .toggle-menu i {
        font-size: 22px;
        font-weight: normal;
        display: block;
        margin-bottom: 4px;
        display: flex;
        width: 30px;
        height: 26px;
        align-items: center;
        justify-content: center;
    }
    .main-header .logo-wrapper .actions a img {
        width: 24px;
        height: 24px;
    }
    header .logo img {
        max-width: initial;
        width: 37vw;
    }
    .product-item .content .title {
        color: #000;
        font-weight: 500;
        transition: 300ms;
        height: 51px;
        display: inline-block;
        width: 85%;
    }
    .loaded.open-menu {
        overflow: hidden;
    }
    .categories-container>.category>.content {
        padding: 0 0 18px 15px;
    }
    .main-related-products ul {
        row-gap: 10px;
    }
    .main-title {
        margin-bottom: 15px;
    }
    .main-categories {
        margin: 30px 0 20px;
    }
    .orders .order .products .product {
        margin-bottom: 10px;
    }
}

@media (max-width: 450px) {
    .main-footer .copyright-bar .powered {
        text-align: center;
    }
    .main-footer .copyright-bar .powered d {
        display: block;
    }
    .main-footer .copyright-bar .powered span {
        display: none;
    }
    .auth-page-content-details .details .form-content>p {
        margin-top: 20px;
    }
    .auth-page-content-details .details h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .form-content .adress-add {
        padding: 14px 18px;
        font-size: 12px;
    }
    .orders .orders-category {
        padding: 4px;
        margin-top: -10px;
    }
    .orders .order .order-details {
        padding: 15px 6px;
    }
}

button {
    -webkit-appearance: none !important;
}