﻿@charset "utf-8";

@font-face {
    font-family: "IranYekan";
    src: url("/frontend/fonts/iranyekanwebregular.woff2") format("woff2");
}

html,
body {
    height: 100%;
    font-family: "IranYekan", sans-serif;
    -webkit-font-smoothing: "IranYekan";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;

    font-weight: 400;
    font-family: "IranYekan", sans-serif;
}

h1 {
    font-size: calc(26px + 0.5vw);
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
    font-family: "IranYekan", sans-serif;
    color: #6f6f6f;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #ffffff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
    /* margin-bottom: 50px; */
    text-align: center;
}

.section-title h2 {
    color: #1c1c1c;
    font-weight: 700;
    position: relative;
}

.section-title h1 {
    color: #1c1c1c;
    font-weight: 700;
    position: relative;
    font-size: calc(27px + 0.5vw);
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 8px;
    direction: rtl;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/* buttons */

.primary-btn {
    display: inline-block;
    font-size: 14px;
    padding: 10px 28px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: #5f9394;
}

.share-btn {
    display: inline-block;
    font-size: 14px;
    padding: 10px 28px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: #5f9394;
}

.see-btn {
    display: inline-block;
    font-size: 14px;
    padding: 10px 28px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: #5f9394;
}

.site-btn {
    font-size: 14px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    padding: 13px 30px 12px;
    background: #5f9394;
    border: none;
}

/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: rgb(245, 245, 245);
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 2.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

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

.header__top {
    background: #255b5c;
    box-shadow: 1px 1px 11px #255b5c;
    direction: ltr;
}

.header__top__left {
    padding: 10px 0 13px;
}

.header__top__left ul li {
    font-size: 14px;
    color: #ffffff;
    display: inline-block;
    margin-right: 45px;
    position: relative;
}

.header__top__left ul li:after {
    position: absolute;
    right: -25px;
    top: 1px;
    height: 20px;
    width: 1px;
    background: #000000;
    opacity: 0.1;
    content: "";
}

.header__top__left ul li:last-child {
    margin-right: 0;
}

.header__top__left ul li:last-child:after {
    display: none;
}

.header__top__left ul li i {
    color: #ffffff;
    margin-right: 5px;
}

.header__top__right {
    text-align: right;
    padding: 10px 0 13px;
}

.header__top__right__social {
    position: relative;
    display: inline-block;
    margin-right: 35px;
}

.header__top__right__social:after {
    position: absolute;
    right: -20px;
    top: 1px;
    height: 20px;
    width: 1px;
    background: #000000;
    opacity: 0.1;
    content: "";
}

.header__top__right__social a {
    font-size: 14px;
    display: inline-block;
    color: #ffffff;
    margin-right: 20px;
}

.header__top__right__social a:last-child {
    margin-right: 0;
}

.header__top__right__language {
    position: relative;
    display: inline-block;
    margin-right: 40px;
    cursor: pointer;
}

.header__top__right__language:hover ul {
    top: 23px;
    opacity: 1;
    visibility: visible;
}

.header__top__right__language:after {
    position: absolute;
    right: -21px;
    top: 1px;
    height: 20px;
    width: 1px;
    background: #ffffff;
    opacity: 0.1;
    content: "";
}

.header__top__right__language img {
    margin-right: 6px;
    margin-top: -5px;
    width: 29px;
}

.header__top__right__language div {
    font-size: 14px;
    color: #ffffff;
    display: inline-block;
    margin-right: 4px;
}

.header__top__right__language span {
    font-size: 14px;
    color: #ffffff;
    position: relative;
    top: 2px;
}

.header__top__right__language ul {
    background: #222222;
    width: 100px;
    text-align: left;
    padding: 5px 0;
    position: absolute;
    left: 0;
    top: 43px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.header__top__right__language ul li {
    list-style: none;
}

.header__top__right__language ul li a {
    font-size: 14px;
    color: #ffffff;
    padding: 5px 10px;
}

.header__top__right__auth {
    display: inline-block;
}

.header__top__right__auth a {
    display: block;
    font-size: 14px;
    color: #ffffff !important;
}

.header__top__right__auth a i {
    margin-right: 6px;
}

.header__logo {
    padding: 15px 0;
}

.header__logo a {
    display: inline-block;
}

.header__menu {
    padding: 22px 0;
    direction: rtl;
    text-align: right;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-left: 15px;
    position: relative;
}

.header__menu ul li .header__menu__dropdown {
    position: absolute;
    left: 0;
    top: 50px;
    background: #222222;
    width: 180px;
    z-index: 9;
    padding: 5px 0;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    opacity: 0;
    visibility: hidden;
}

.header__menu ul li .header__menu__dropdown li {
    margin-right: 0;
    display: block;
}

.header__menu ul li .header__menu__dropdown li:hover > a {
    color: #5f9394;
}

.header__menu ul li .header__menu__dropdown li a {
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 400;
    padding: 5px 15px;
}

.header__menu ul li.active a {
    color: #5f9394;
}

.header__menu ul li:hover .header__menu__dropdown {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.header__menu ul li:hover > a {
    color: #5f9394;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li a {
    font-size: 14px;
    color: #252525;
    text-transform: uppercase;
    font-weight: 700;

    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    padding: 5px 0;
    display: block;
    border-radius: 42px;
}

.header__cart {
    text-align: right;
    padding: 24px 0;
}

.header__cart ul {
    display: inline-block;
    margin-right: 25px;
}

.header__cart ul li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}

.header__cart ul li:last-child {
    margin-right: 0;
}

.header__cart ul li a {
    position: relative;
}

.header__cart ul li a i {
    font-size: 18px;
    color: #1c1c1c;
}

.header__cart ul li a span {
    height: 13px;
    width: 13px;
    background: #5f9394;
    font-size: 10px;
    color: #ffffff;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -12px;
}

.header__cart .header__cart__price {
    font-size: 14px;
    color: #6f6f6f;
    display: inline-block;
}

.header__cart .header__cart__price span {
    color: #252525;
    font-weight: 700;
}

.humberger__menu__wrapper {
    display: none;
}

.humberger__open {
    display: none;
}

/*---------------------
  Hero
-----------------------*/

/*---------------------
  Hero Section - Redesigned
-----------------------*/

.hero {
    padding-bottom: 0;
    direction: rtl;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero__search {
    position: relative;
    width: 100%;
    height: 75vh;
    /* Large impactful height */
    min-height: 500px;
    max-height: 800px;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero__search {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }
}

/* Video Background */
.banner-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darkens video */
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Centered Content */
.centered-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.ai-search-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.ai-search-subtitle {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
    .ai-search-title {
        font-size: 2rem;
    }

    .ai-search-subtitle {
        font-size: 1rem;
    }
}

/* AI Search Form */
.ai-search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 650px;
    margin: 0 auto 20px;
    /* Centered */
    transition: transform 0.3s;
}

.ai-search-form:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ai-search-form input {
    border: none;
    background: transparent;
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.submit-btn {
    background: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #255b5c;
    /* Darker brand tone */
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--brand-color);
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

/* Quick Links Strip */
.quick-links-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quick-links-strip span {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.quick-links-strip ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-links-strip a {
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
    backdrop-filter: blur(5px);
}

.quick-links-strip a:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 6px;
    box-shadow: 1px 1px 1px #d9d9d9;
    background-size: 100%;
}

.categories__item h5 {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 20px;
    bottom: 20px;
    text-align: center;
}

.categories__item h5 a {
    font-size: calc(13px + 0.3vw);
    color: #1c1c1c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 12px 0 10px;
    background: #ffffff;
    display: block;
    border-radius: 4px;
}

.categories__slider .col-lg-3 {
    max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
    font-size: 18px;
    color: #1c1c1c;
    height: 70px;
    width: 30px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #ebebeb;
    position: absolute;
    left: -35px;
    top: 50%;
    -webkit-transform: translateY(-35px);
    background: #ffffff;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -35px;
}

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

.featured {
    padding-top: 80px;
    padding-bottom: 40px;
}

.featured__controls {
    text-align: center;
    margin-bottom: 50px;
    direction: rtl;
}

.featured__controls ul li {
    list-style: none;
    font-size: 18px;
    color: #1c1c1c;
    display: inline-block;
    margin-right: 25px;
    position: relative;
    cursor: pointer;
}

.featured__controls ul li.active:after {
    opacity: 1;
}

.featured__controls ul li:after {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #5f9394;
    content: "";
    opacity: 0;
}

.featured__controls ul li:last-child {
    margin-right: 0;
}

.featured__item {
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    box-shadow: 1px 1px 1px #efefef;
    border-radius: 7px;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
    bottom: 20px;
}

.featured__item__pic {
    height: 180px;
    position: relative;
    overflow: hidden;
    background-position: center center;
}

.featured__item__pic__hover {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    text-align: center;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.featured__item__pic__hover li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
}

.featured__item__pic__hover li:last-child {
    margin-right: 0;
}

.featured__item__pic__hover li:hover a {
    background: #5f9394;
    border-color: #5f9394;
}

.featured__item__pic__hover li:hover a i {
    color: #ffffff;
    transform: rotate(360deg);
}

.featured__item__pic__hover li a {
    font-size: 16px;
    color: #1c1c1c;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #ffffff;
    display: block;
    border-radius: 50%;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.featured__item__pic__hover li a i {
    position: relative;
    transform: rotate(0);
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.featured__item__text {
    text-align: center;
    padding-top: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.featured__item__text h6 {
    margin-bottom: 10px;
    height: calc(var(--line-height) * 2em);
    line-height: var(--line-height);
    --line-height: 1.1;
}

.featured__item__text h2 {
    margin-bottom: 10px;
    height: calc(var(--line-height) * 2em);
    line-height: var(--line-height);
    --line-height: 0.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: calc(14px + 3.3vw);
}

.featured__item__text h6 a {
    color: #252525;
    font-size: calc(13px + 0.3vw);
}

.featured__item__text h2 a {
    color: #252525;
    font-size: calc(12px + 0.3vw);
}

.featured__item__text h5 {
    color: #252525;
    font-weight: 700;
    font-size: calc(13px + 0.2vw);
}

/*---------------------
  Latest Product
-----------------------*/

.latest-product {
    padding-top: 80px;
    padding-bottom: 0;
}

.latest-product__text h4 {
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 45px;
}

.latest-product__slider.owl-carousel .owl-nav {
    position: absolute;
    right: 20px;
    top: -75px;
}

.latest-product__slider.owl-carousel .owl-nav button {
    height: 30px;
    width: 30px;
    background: #f3f6fa;
    border: 1px solid #e6e6e6;
    font-size: 14px;
    color: #636363;
    margin-right: 10px;
    line-height: 30px;
    text-align: center;
}

.latest-product__slider.owl-carousel .owl-nav button span {
    font-weight: 700;
}

.latest-product__slider.owl-carousel .owl-nav button:last-child {
    margin-right: 0;
}

.latest-product__item {
    margin-bottom: 20px;
    overflow: hidden;
    display: block;
}

.latest-product__item__pic {
    float: left;
    margin-right: 26px;
}

.latest-product__item__pic img {
    height: 110px;
    width: 110px;
}

.latest-product__item__text {
    overflow: hidden;
    padding-top: 10px;
}

.latest-product__item__text h6 {
    color: #252525;
    margin-bottom: 8px;
}

.latest-product__item__text span {
    font-size: 18px;
    display: block;
    color: #252525;
    font-weight: 700;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
    display: flex;
    align-items: center;
    padding: 45px 0 40px;
}

.breadcrumb__text h2 {
    font-size: 46px;
    color: #ffffff;
    font-weight: 700;
}

.breadcrumb__option a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin-right: 20px;
    position: relative;
}

.breadcrumb__option a:after {
    position: absolute;
    right: -12px;
    top: 13px;
    height: 1px;
    width: 10px;
    background: #ffffff;
    content: "";
}

.breadcrumb__option span {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
}

/*---------------------
  Sidebar
-----------------------*/

.sidebar__item {
    margin-bottom: 35px;
}

.sidebar__item.sidebar__item__color--option {
    overflow: hidden;
}

.sidebar__item h4 {
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 25px;
}

.sidebar__item ul li {
    list-style: none;
}

.sidebar__item ul li a {
    font-size: 16px;
    color: #1c1c1c;
    line-height: 39px;
    display: block;
}

.sidebar__item .latest-product__text {
    position: relative;
}

.sidebar__item .latest-product__text h4 {
    margin-bottom: 45px;
}

.sidebar__item .latest-product__text .owl-carousel .owl-nav {
    right: 0;
}

.price-range-wrap .range-slider {
    margin-top: 20px;
}

.price-range-wrap .range-slider .price-input {
    position: relative;
}

.price-range-wrap .range-slider .price-input:after {
    position: absolute;
    left: 38px;
    top: 13px;
    height: 1px;
    width: 5px;
    background: #6a6a6a;
    content: "";
}

.price-range-wrap .range-slider .price-input input {
    font-size: 16px;
    color: #6a6a6a;
    font-weight: 700;
    max-width: 20%;
    border: none;
    display: inline-block;
}

.price-range-wrap .price-range {
    border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #ebebeb;
    height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    cursor: pointer;
}

.price-range-wrap .price-range .ui-slider-range {
    background: #6a6a6a;
    border-radius: 0;
}

.price-range-wrap
    .price-range
    .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
    background: #6a6a6a;
}

.sidebar__item__color {
    float: left;
    width: 40%;
}

.sidebar__item__color.sidebar__item__color--white label:after {
    border: 2px solid #333333;
    background: transparent;
}

.sidebar__item__color.sidebar__item__color--gray label:after {
    background: #e9a625;
}

.sidebar__item__color.sidebar__item__color--red label:after {
    background: #d62d2d;
}

.sidebar__item__color.sidebar__item__color--black label:after {
    background: #252525;
}

.sidebar__item__color.sidebar__item__color--blue label:after {
    background: #249bc8;
}

.sidebar__item__color.sidebar__item__color--green label:after {
    background: #3cc032;
}

.sidebar__item__color label {
    font-size: 16px;
    color: #333333;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
}

.sidebar__item__color label input {
    position: absolute;
    visibility: hidden;
}

.sidebar__item__color label:after {
    position: absolute;
    left: 0;
    top: 5px;
    height: 14px;
    width: 14px;
    background: #222;
    content: "";
    border-radius: 50%;
}

.sidebar__item__size {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 10px;
}

.sidebar__item__size label {
    font-size: 12px;
    color: #6f6f6f;
    display: inline-block;
    padding: 8px 25px 6px;
    background: #f5f5f5;
    cursor: pointer;
    margin-bottom: 0;
}

.sidebar__item__size label input {
    position: absolute;
    visibility: hidden;
}

/*---------------------
  Shop Grid
-----------------------*/

.product {
    padding-top: 80px;
    padding-bottom: 80px;
}

.product__discount {
    padding-bottom: 50px;
}

.product__discount__title {
    text-align: left;
    margin-bottom: 65px;
}

.product__discount__title h2 {
    display: inline-block;
}

.product__discount__title h2:after {
    margin: 0;
    width: 100%;
}

.product__discount__item:hover
    .product__discount__item__pic
    .product__item__pic__hover {
    bottom: 20px;
}

.product__discount__item__pic {
    height: 270px;
    position: relative;
    overflow: hidden;
}

.product__discount__item__pic .product__discount__percent {
    height: 45px;
    width: 45px;
    background: #6a6a6a;
    border-radius: 50%;
    font-size: 14px;
    color: #ffffff;
    line-height: 45px;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 15px;
}

.product__item__pic__hover {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    text-align: center;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.product__item__pic__hover li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
}

.product__item__pic__hover li:last-child {
    margin-right: 0;
}

.product__item__pic__hover li:hover a {
    background: #5f9394;
    border-color: #5f9394;
}

.product__item__pic__hover li:hover a i {
    color: #ffffff;
    transform: rotate(360deg);
}

.product__item__pic__hover li a {
    font-size: 16px;
    color: #1c1c1c;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #ffffff;
    display: block;
    border-radius: 50%;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.product__item__pic__hover li a i {
    position: relative;
    transform: rotate(0);
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.product__discount__item__text {
    text-align: center;
    padding-top: 20px;
}

.product__discount__item__text span {
    font-size: 14px;
    color: #b2b2b2;
    display: block;
    margin-bottom: 4px;
}

.product__discount__item__text h5 {
    margin-bottom: 6px;
}

.product__discount__item__text h5 a {
    color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
}

.product__discount__item__text .product__item__price span {
    display: inline-block;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
    max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
    height: 12px;
    width: 12px;
    border: 1px solid #b2b2b2;
    border-radius: 50%;
    margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
    background: #707070;
    border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}

.filter__item {
    padding-top: 45px;
    border-top: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.filter__sort {
    margin-bottom: 15px;
}

.filter__sort span {
    font-size: 16px;
    color: #6f6f6f;
    display: inline-block;
}

.filter__sort .nice-select {
    background-color: #fff;
    border-radius: 0;
    border: none;
    display: inline-block;
    float: none;
    height: 0;
    line-height: 0;
    padding-left: 18px;
    padding-right: 30px;
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 700;
    cursor: pointer;
}

.filter__sort .nice-select span {
    color: #1c1c1c;
}

.filter__sort .nice-select:after {
    border-bottom: 1.5px solid #1c1c1c;
    border-right: 1.5px solid #1c1c1c;
    height: 8px;
    margin-top: 0;
    right: 16px;
    width: 8px;
    top: -5px;
}

.filter__sort .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
    border-radius: 0;
    margin-top: 0;
    top: 15px;
}

.filter__sort .nice-select .option {
    line-height: 30px;
    min-height: 30px;
}

.filter__found {
    text-align: center;
    margin-bottom: 15px;
}

.filter__found h6 {
    font-size: 16px;
    color: #b2b2b2;
}

.filter__found h6 span {
    color: #1c1c1c;
    font-weight: 700;
    margin-right: 5px;
}

.filter__option {
    text-align: right;
    margin-bottom: 15px;
}

.filter__option span {
    font-size: 24px;
    color: #b2b2b2;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.filter__option span:last-child {
    margin: 0;
}

.filter__option span:hover {
    color: #5f9394;
}

.product__item {
    margin-bottom: 50px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
    bottom: 20px;
}

.product__item__pic {
    height: 270px;
    position: relative;
    overflow: hidden;
}

.product__item__pic__hover {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    text-align: center;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.product__item__pic__hover li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
}

.product__item__pic__hover li:last-child {
    margin-right: 0;
}

.product__item__pic__hover li:hover a {
    background: #5f9394;
    border-color: #5f9394;
}

.product__item__pic__hover li:hover a i {
    color: #ffffff;
    transform: rotate(360deg);
}

.product__item__pic__hover li a {
    font-size: 16px;
    color: #1c1c1c;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #ffffff;
    display: block;
    border-radius: 50%;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
}

.product__item__pic__hover li a i {
    position: relative;
    transform: rotate(0);
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.product__item__text {
    text-align: center;
    padding-top: 15px;
}

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

.product__item__text h6 a {
    color: #252525;
}

.product__item__text h5 {
    color: #252525;
    font-weight: 700;
}

.product__pagination,
.blog__pagination {
    padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #b2b2b2;
    font-size: 14px;
    color: #b2b2b2;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    margin-right: 16px;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
    background: #5f9394;
    border-color: #5f9394;
    color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
    margin-right: 0;
}

/*---------------------
  Shop Details
-----------------------*/

.product-details {
    padding-top: 33px;
}

.product__details__pic__item {
    margin-bottom: 20px;
}

.product__details__pic__item img {
    min-width: 100%;
    box-shadow: 1px 1px 3px #a5a0a0;
}

.product__details__pic__slider img {
    cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
    width: auto;
    height: 63px;
    box-shadow: 1px 1px 4px #343434;
}

.product__details__text h3 {
    color: #252525;
    font-weight: 700;
    margin-bottom: 16px;
}

.product__details__text .product__details__rating {
    font-size: 14px;
    margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
    margin-right: -2px;
    color: #edbb0e;
}

.product__details__text .product__details__rating span {
    color: #6a6a6a;
    margin-left: 4px;
}

.product__details__text .product__details__price {
    font-size: calc(17px + 0.5vw);
    color: #6a6a6a;
    font-weight: 600;
    margin-bottom: 15px;
}

.product__details__text p {
    margin-bottom: 10px;
}

.product__details__text .primary-btn {
    padding: 11px 12px 12px;
    margin-right: 6px;
    margin-bottom: 5px;
    border-radius: 8px;
}

.product__details__text .heart-icon {
    display: inline-block;
    font-size: 16px;
    color: #4f4f4f;
    padding: 9px 9px 0px;
    background: #e2e2e2;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
}

.product__details__text ul {
    border-top: 1px solid #ebebeb;
    padding-top: 25px;
    margin-top: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 17px;
    box-shadow: 1px 1px 1px #f1f1f1;
}

.product__details__text ul li {
    font-size: calc(12px + 0.3vw);
    color: #1c1c1c;
    list-style: none;
    line-height: 30px;
    padding: 7px;
}

.product__details__text ul li b {
    font-weight: 700;
    width: fit-content;
    margin-left: 8px;
    display: inline-block;
}

.product__details__text ul li span samp {
    color: #6a6a6a;
}

.product__details__text ul li .share {
    display: inline-block;
}

.product__details__text ul li .share a {
    display: inline-block;
    font-size: 15px;
    color: #1c1c1c;
    margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
    margin-right: 0;
}

.product__details__quantity {
    display: inline-block;
    margin-right: 6px;
}

.pro-qty {
    width: 140px;
    height: 50px;
    display: inline-block;
    position: relative;
    text-align: center;
    background: #f5f5f5;
    margin-bottom: 5px;
}

.pro-qty input {
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: #6f6f6f;
    width: 50px;
    border: none;
    background: #f5f5f5;
    text-align: center;
}

.pro-qty .qtybtn {
    width: 35px;
    font-size: 16px;
    color: #6f6f6f;
    cursor: pointer;
    display: inline-block;
}

.product__details__tab {
    padding-top: 20px;
}

.product__details__tab .nav-tabs {
    border-bottom: none;
    justify-content: center;
    position: relative;
}

.product__details__tab .nav-tabs:before {
    position: absolute;
    left: 0;
    top: 12px;
    height: 1px;
    width: 370px;
    background: #ebebeb;
    content: "";
}

.product__details__tab .nav-tabs:after {
    position: absolute;
    right: 0;
    top: 12px;
    height: 1px;
    width: 370px;
    background: #ebebeb;
    content: "";
}

.product__details__tab .nav-tabs li {
    margin-bottom: 0;
    margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
    margin-right: 0;
}

.product__details__tab .nav-tabs li a {
    font-size: 16px;
    color: #999999;
    font-weight: 700;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}

.product__details__tab .product__details__tab__desc {
    padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
    font-weight: 700;
    color: #333333;
    margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
    color: #666666;
}

/*---------------------
  Shop Details
-----------------------*/

.related-product {
    padding-bottom: 30px;
}

.related__product__title {
    margin-bottom: 70px;
}

/*---------------------
  Shop Cart
-----------------------*/

.shoping-cart {
    padding-top: 80px;
    padding-bottom: 80px;
}

.shoping__cart__table {
    margin-bottom: 30px;
}

.shoping__cart__table table {
    width: 100%;
    text-align: center;
}

.shoping__cart__table table thead tr {
    border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
    padding-bottom: 20px;
}

.shoping__cart__table table thead th.shoping__product {
    text-align: left;
}

.shoping__cart__table table tbody tr td {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
    width: 630px;
    text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
    display: inline-block;
    margin-right: 25px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
    color: #1c1c1c;
    display: inline-block;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
    text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
    font-size: 24px;
    color: #b2b2b2;
    cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
    width: 225px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
    width: 120px;
    height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
    color: #1c1c1c;
}

.shoping__cart__table
    table
    tbody
    tr
    td.shoping__cart__quantity
    .pro-qty
    input::placeholder {
    color: #1c1c1c;
}

.shoping__cart__table
    table
    tbody
    tr
    td.shoping__cart__quantity
    .pro-qty
    .qtybtn {
    width: 15px;
}

.primary-btn.cart-btn {
    color: #6f6f6f;
    padding: 14px 30px 12px;
    background: #f5f5f5;
}

.primary-btn.cart-btn span {
    font-size: 14px;
}

.primary-btn.cart-btn.cart-btn-right {
    float: right;
}

.shoping__discount {
    margin-top: 45px;
}

.shoping__discount h5 {
    font-size: 20px;
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 25px;
}

.shoping__discount form input {
    width: 255px;
    height: 46px;
    border: 1px solid #cccccc;
    font-size: 16px;
    color: #b2b2b2;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
}

.shoping__discount form input::placeholder {
    color: #b2b2b2;
}

.shoping__discount form button {
    padding: 15px 30px 11px;
    font-size: 12px;
    letter-spacing: 4px;
    background: #6f6f6f;
}

.shoping__checkout {
    background: #f5f5f5;
    padding: 30px;
    padding-top: 20px;
    margin-top: 50px;
}

.shoping__checkout h5 {
    color: #1c1c1c;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 28px;
}

.shoping__checkout ul {
    margin-bottom: 28px;
}

.shoping__checkout ul li {
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 700;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 13px;
    margin-bottom: 18px;
}

.shoping__checkout ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.shoping__checkout ul li span {
    font-size: 18px;
    color: #6a6a6a;
    float: right;
}

.shoping__checkout .primary-btn {
    display: block;
    text-align: center;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
    padding-top: 80px;
    padding-bottom: 60px;
}

.checkout h6 {
    color: #999999;
    text-align: center;
    background: #f5f5f5;
    border-top: 1px solid #6ab963;
    padding: 12px 0 12px;
    margin-bottom: 75px;
}

.checkout h6 span {
    font-size: 16px;
    color: #6ab963;
    margin-right: 5px;
}

.checkout h6 a {
    text-decoration: underline;
    color: #999999;
}

.checkout__form h4 {
    color: #1c1c1c;
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.checkout__form p {
    column-rule: #b2b2b2;
}

.checkout__input {
    margin-bottom: 24px;
}

.checkout__input p {
    color: #1c1c1c;
    margin-bottom: 20px;
}

.checkout__input p span {
    color: #6a6a6a;
}

.checkout__input input {
    width: 100%;
    height: 46px;
    border: 1px solid #ebebeb;
    padding-left: 20px;
    font-size: 16px;
    color: #b2b2b2;
    border-radius: 4px;
}

.checkout__input input.checkout__input__add {
    margin-bottom: 20px;
}

.checkout__input input::placeholder {
    color: #b2b2b2;
}

.checkout__input__checkbox {
    margin-bottom: 10px;
}

.checkout__input__checkbox label {
    position: relative;
    font-size: 16px;
    color: #1c1c1c;
    padding-left: 40px;
    cursor: pointer;
}

.checkout__input__checkbox label input {
    position: absolute;
    visibility: hidden;
}

.checkout__input__checkbox label input:checked ~ .checkmark {
    background: #5f9394;
    border-color: #5f9394;
}

.checkout__input__checkbox label input:checked ~ .checkmark:after {
    opacity: 1;
}

.checkout__input__checkbox label .checkmark {
    position: absolute;
    left: 0;
    top: 4px;
    height: 16px;
    width: 14px;
    border: 1px solid #a6a6a6;
    content: "";
    border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 10px;
    height: 8px;
    border: solid white;
    border-width: 3px 3px 0px 0px;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
    content: "";
    opacity: 0;
}

.checkout__order {
    background: #f5f5f5;
    padding: 40px;
    padding-top: 30px;
}

.checkout__order h4 {
    color: #1c1c1c;
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
    float: right;
}

.checkout__order ul {
    margin-bottom: 12px;
}

.checkout__order ul li {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 40px;
    list-style: none;
}

.checkout__order ul li span {
    font-weight: 700;
    float: right;
}

.checkout__order .checkout__order__subtotal {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
    float: right;
}

.checkout__order .checkout__input__checkbox label {
    padding-left: 20px;
}

.checkout__order .checkout__order__total {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
    float: right;
    color: #6a6a6a;
}

.checkout__order button {
    font-size: 18px;
    letter-spacing: 2px;
    width: 100%;
    margin-top: 10px;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
    padding-top: 50px;
}

.blog__sidebar__item {
    margin-bottom: 50px;
}

.blog__sidebar__item h4 {
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog__sidebar__item ul li {
    list-style: none;
}

.blog__sidebar__item ul li a {
    font-size: 16px;
    color: #666666;
    line-height: 48px;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
    color: #5f9394;
}

.blog__sidebar__search {
    margin-bottom: 50px;
}

.blog__sidebar__search form {
    position: relative;
}

.blog__sidebar__search form input {
    width: 100%;
    height: 46px;
    font-size: 16px;
    color: #6f6f6f;
    padding-left: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
    color: #6f6f6f;
}

.blog__sidebar__search form button {
    font-size: 16px;
    color: #6f6f6f;
    background: transparent;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
    display: block;
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
    margin-bottom: 0;
}

.blog__sidebar__recent__item {
    overflow: hidden;
    margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
    float: left;
    margin-right: 20px;
}

.blog__sidebar__recent__item__text {
    overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
    font-weight: 700;
    color: #333333;
    line-height: 20px;
    margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
}

.blog__sidebar__item__tags a {
    font-size: 16px;
    color: #6f6f6f;
    background: #f5f5f5;
    display: inline-block;
    padding: 7px 26px 5px;
    margin-right: 6px;
    margin-bottom: 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-details-hero {
    height: 350px;
    display: flex;
    align-items: center;
}

.blog__details__hero__text {
    text-align: center;
}

.blog__details__hero__text h2 {
    font-size: 46px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog__details__hero__text ul li {
    font-size: 16px;
    color: #ffffff;
    list-style: none;
    display: inline-block;
    margin-right: 45px;
    position: relative;
}

.blog__details__hero__text ul li:after {
    position: absolute;
    right: -26px;
    top: 0;
    content: "|";
}

.blog__details__hero__text ul li:last-child {
    margin-right: 0;
}

.blog__details__hero__text ul li:last-child:after {
    display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.related-blog {
    padding-top: 70px;
    padding-bottom: 10px;
}

.related-blog-title {
    margin-bottom: 70px;
}

.blog-details {
    padding-bottom: 75px;
    border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
    margin-bottom: 45px;
}

.blog__details__text img {
    margin-bottom: 30px;
}

.blog__details__text p {
    font-size: 18px;
    line-height: 30px;
}

.blog__details__text h3 {
    color: #333333;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog__details__author__pic {
    float: left;
    margin-right: 15px;
}

.blog__details__author__pic img {
    height: 92px;
    width: 92px;
    border-radius: 50%;
}

.blog__details__author__text {
    overflow: hidden;
    padding-top: 30px;
}

.blog__details__author__text h6 {
    color: #1c1c1c;
    font-weight: 700;
}

.blog__details__author__text span {
    font-size: 16px;
    color: #6f6f6f;
}

.blog__details__widget ul {
    margin-bottom: 5px;
}

.blog__details__widget ul li {
    font-size: 16px;
    color: #6f6f6f;
    list-style: none;
    line-height: 30px;
}

.blog__details__widget ul li span {
    color: #1c1c1c;
    font-weight: 700;
}

.blog__details__widget .blog__details__social a {
    display: inline-block;
    font-size: 20px;
    color: #6f6f6f;
    margin-right: 24px;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
    color: #5f9394;
}

.blog__details__widget .blog__details__social a:last-child {
    margin-right: 0;
}

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

.footer {
    background: #255b5c;
    padding-bottom: 0;
    margin-top: 15px;
}

.footer__about {
    margin-bottom: 30px;
}

.footer__about ul li {
    font-size: 16px;
    color: #ffffff;
    line-height: 36px;
    list-style: none;
}

.footer__about__logo {
    margin-bottom: 15px;
}

.footer__about__logo a {
    display: inline-block;
}

.footer__widget {
    margin-bottom: 30px;
    overflow: hidden;
    text-align: right;
}

.footer__widget h6 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer__widget ul {
    margin: auto;
}

.footer__widget ul li {
    list-style: none;
}

.footer__widget ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 32px;
}

.footer__widget p {
    font-size: 14px;
    color: #1c1c1c;
    margin-bottom: 30px;
}

.footer__widget form {
    position: relative;
    margin-bottom: 30px;
}

.footer__widget form input {
    width: 100%;
    font-size: 16px;
    padding-left: 20px;
    color: #1c1c1c;
    height: 46px;
    border: 1px solid #ededed;
}

.footer__widget form input::placeholder {
    color: #1c1c1c;
}

.footer__widget form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 26px;
    height: 100%;
}

.footer__widget .footer__widget__social a {
    display: inline-block;
    height: 41px;
    width: 41px;
    font-size: 16px;
    color: #404040;
    border: 1px solid #ededed;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    background: #ffffff;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 10px;
}

.footer__widget .footer__widget__social a:last-child {
    margin-right: 0;
}

.footer__widget .footer__widget__social a:hover {
    background: #5f9394;
    color: #ffffff;
    border-color: #ffffff;
}

.footer__copyright {
    border-top: 1px solid #ebebeb;
    padding: 0;
    overflow: hidden;
}

.footer__copyright__text {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    line-height: 25px;
}

.footer__copyright__payment {
    float: right;
}

/*---------------------
  Contact
-----------------------*/

.contact {
    padding-top: 80px;
    padding-bottom: 50px;
}

.contact__widget {
    margin-bottom: 30px;
}

.contact__widget span {
    font-size: 36px;
    color: #5f9394;
}

.contact__widget h4 {
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 18px;
}

.contact__widget p {
    color: #666666;
    margin-bottom: 0;
}

/*---------------------
  Map
-----------------------*/

.map {
    height: 500px;
    position: relative;
}

.map iframe {
    width: 100%;
}

.map .map-inside {
    position: absolute;
    left: 50%;
    top: 160px;
    -webkit-transform: translateX(-175px);
    -ms-transform: translateX(-175px);
    transform: translateX(-175px);
}

.map .map-inside i {
    font-size: 48px;
    color: #5f9394;
    position: absolute;
    bottom: -75px;
    left: 50%;
    -webkit-transform: translateX(-18px);
    -ms-transform: translateX(-18px);
    transform: translateX(-18px);
}

.map .map-inside .inside-widget {
    width: 350px;
    background: #ffffff;
    text-align: center;
    padding: 23px 0;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
    box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
    position: absolute;
    left: 50%;
    bottom: -30px;
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
    border: 12px solid transparent;
    border-top: 30px solid #ffffff;
    content: "";
    z-index: -1;
}

.map .map-inside .inside-widget h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
    list-style: none;
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.contact__form__title {
    margin-bottom: 50px;
    text-align: center;
}

.contact__form__title h2 {
    color: #1c1c1c;
    font-weight: 700;
}

.contact-form {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-form form input {
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #6f6f6f;
    padding-left: 20px;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
}

.contact-form form input::placeholder {
    color: #6f6f6f;
}

.contact-form form textarea {
    width: 100%;
    height: 150px;
    font-size: 16px;
    color: #6f6f6f;
    padding-left: 20px;
    margin-bottom: 24px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding-top: 12px;
    resize: none;
}

.contact-form form textarea::placeholder {
    color: #6f6f6f;
}

.contact-form form button {
    font-size: 18px;
    letter-spacing: 2px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
    /* .container {
        max-width: 1170px;
    } */
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header__menu ul li {
        margin-right: 45px;
    }

    .hero__categories__all {
        padding: 10px 10px 10px 12px;
        text-align: right;
    }

    .hero__categories ul {
        padding-right: 20px;
    }

    .latest-product__slider.owl-carousel .owl-nav {
        right: 0;
    }

    .product__details__tab .nav-tabs:before {
        width: 265px;
    }

    .product__details__tab .nav-tabs:after {
        width: 265px;
    }

    .shoping__discount form input {
        width: 240px;
    }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-0 {
        display: none;
    }

    .hero__categories {
        margin-bottom: 30px;
    }

    .categories__slider.owl-carousel .owl-nav button {
        left: -20px;
    }

    .categories__slider.owl-carousel .owl-nav button.owl-next {
        right: -20px;
    }

    .filter__sort .nice-select {
        padding-left: 5px;
        padding-right: 28px;
    }

    .product__details__quantity {
        margin-bottom: 10px;
    }

    .product__details__text .primary-btn {
        margin-bottom: 10px;
    }

    .product__details__tab .nav-tabs:before {
        width: 150px;
    }

    .product__details__tab .nav-tabs:after {
        width: 150px;
    }

    .blog__details__author {
        overflow: hidden;
        margin-bottom: 25px;
    }

    .humberger__open {
        display: block;
        font-size: 22px;
        color: #7d7d7d;
        height: 35px;
        width: 35px;
        line-height: 33px;
        text-align: center;
        border: 1px solid #7d7d7d;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 14px;
        border-radius: 3px;
    }

    .header .container {
        position: relative;
    }

    .humberger__menu__wrapper {
        width: 300px;
        background: #ffffff;
        position: fixed;
        right: -300px;
        top: 0;
        height: 100%;
        overflow-y: auto;
        z-index: 99;
        padding: 30px;
        padding-top: 50px;
        opacity: 0;
        display: block;
        -webkit-transition: all, 0.6s;
        -moz-transition: all, 0.6s;
        -ms-transition: all, 0.6s;
        -o-transition: all, 0.6s;
        transition: all, 0.6s;
    }

    .humberger__menu__wrapper.show__humberger__menu__wrapper {
        opacity: 1;
        right: 0;
        direction: rtl;
        text-align: right;
    }

    .humberger__menu__logo {
        margin-bottom: 30px;
    }

    .humberger__menu__logo a {
        display: inline-block;
    }

    .humberger__menu__contact {
        padding: 10px 0 13px;
    }

    .humberger__menu__contact ul li {
        font-size: 14px;
        color: #1c1c1c;
        position: relative;
        line-height: 30px;
        list-style: none;
    }

    .humberger__menu__contact ul li i {
        color: #252525;
        margin-right: 5px;
    }

    .humberger__menu__cart ul {
        display: inline-block;
        margin-right: 25px;
    }

    .humberger__menu__cart ul li {
        list-style: none;
        display: inline-block;
        margin-right: 15px;
    }

    .humberger__menu__cart ul li:last-child {
        margin-right: 0;
    }

    .humberger__menu__cart ul li a {
        position: relative;
    }

    .humberger__menu__cart ul li a i {
        font-size: 18px;
        color: #1c1c1c;
    }

    .humberger__menu__cart ul li a span {
        height: 13px;
        width: 13px;
        background: #5f9394;
        font-size: 10px;
        color: #ffffff;
        line-height: 13px;
        text-align: center;
        font-weight: 700;
        display: inline-block;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: -12px;
    }

    .humberger__menu__cart .header__cart__price {
        font-size: 14px;
        color: #6f6f6f;
        display: inline-block;
    }

    .humberger__menu__cart .header__cart__price span {
        color: #252525;
        font-weight: 700;
    }

    .humberger__menu__cart {
        margin-bottom: 25px;
    }

    .humberger__menu__widget {
        margin-bottom: 20px;
    }

    .humberger__menu__widget .header__top__right__language {
        margin-right: 20px;
    }

    .humberger__menu__nav {
        display: none;
    }

    .humberger__menu__wrapper .header__top__right__social {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .humberger__menu__wrapper .slicknav_btn {
        display: none;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
        border-bottom: none !important;
    }

    .humberger__menu__wrapper .slicknav_nav {
        display: block !important;
    }

    .humberger__menu__wrapper .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 30px;
    }

    .humberger__menu__wrapper .slicknav_nav ul {
        margin: 0;
    }

    .humberger__menu__wrapper .slicknav_nav a {
        color: #1c1c1c;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        border-bottom: 1px solid #e1e1e1;
    }

    .humberger__menu__wrapper .slicknav_nav a:hover {
        -webkit-border-radius: 0;
        border-radius: 0;
        background: transparent;
        color: #5f9394;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_row,
    .humberger__menu__wrapper .slicknav_nav a {
        padding: 8px 0;
    }

    .humberger__menu__overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        content: "";
        z-index: 98;
        visibility: hidden;
        -webkit-transition: all, 0.6s;
        -moz-transition: all, 0.6s;
        -ms-transition: all, 0.6s;
        -o-transition: all, 0.6s;
        transition: all, 0.6s;
    }

    .humberger__menu__overlay.active {
        visibility: visible;
    }

    .header__top {
        display: none;
    }

    .header__menu {
        display: none;
    }

    .header__cart {
        text-align: center;
        padding: 10px 0 24px;
    }

    .over_hid {
        overflow: hidden;
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
    .col-0 {
        display: none;
    }

    .featured__item__pic {
        height: 130px;
    }

    .hero__categories {
        margin-bottom: 30px;
    }

    /* .hero__search {
        margin-bottom: 30px;
    } */

    .hero__search__form {
        width: 100%;
        position: relative;
        margin: 0 10px;
    }

    .hero__search__form form input {
        width: 70%;
        text-align: right;
        padding-right: 8px;
        font-size: calc(13px + 0.2vw);
    }

    .hero__search__form form .hero__search__categories {
        /* display: none; */
    }

    .hero__search__phone {
        float: left;
        margin-bottom: 25px;
        margin-top: 20px;
        width: 100%;
        direction: ltr;
    }

    .categories__slider.owl-carousel .owl-nav {
        text-align: center;
        margin-top: 40px;
    }

    .categories__slider.owl-carousel .owl-nav button {
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: translateY(0);
    }

    .categories__slider.owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .footer__copyright {
        text-align: center;
    }

    .footer__copyright__text {
        float: none;
        margin-bottom: 25px;
    }

    .footer__copyright__payment {
        float: none;
    }

    .filter__item {
        text-align: center;
    }

    .filter__option {
        text-align: center;
    }

    .product__details__pic {
        margin-bottom: 15px;
    }

    .product__details__tab .nav-tabs:before {
        display: none;
    }

    .product__details__tab .nav-tabs:after {
        display: none;
    }

    .shoping__cart__table {
        overflow-y: auto;
    }

    .shoping__discount form input {
        margin-bottom: 15px;
    }

    .blog__details__author {
        overflow: hidden;
        margin-bottom: 25px;
    }

    .humberger__open {
        display: block;
        font-size: 22px;
        color: #7d7d7d;
        height: 35px;
        width: 35px;
        line-height: 33px;
        text-align: center;
        border: 1px solid #7d7d7d;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 22px;
        border-radius: 3px;
    }

    .header .container {
        position: relative;
    }

    .humberger__menu__wrapper {
        width: 300px;
        background: #ffffff;
        position: fixed;
        right: -300px;
        top: 0;
        height: 100%;
        overflow-y: auto;
        z-index: 99;
        padding: 30px;
        padding-top: 50px;
        opacity: 0;
        display: block;
        -webkit-transition: all, 0.6s;
        -moz-transition: all, 0.6s;
        -ms-transition: all, 0.6s;
        -o-transition: all, 0.6s;
        transition: all, 0.6s;
    }

    .humberger__menu__wrapper.show__humberger__menu__wrapper {
        opacity: 1;
        right: 0;
        direction: rtl;
        text-align: right;
    }

    .humberger__menu__logo {
        margin-bottom: 30px;
        text-align: left;
    }

    .humberger__menu__logo a {
        display: inline-block;
    }

    .humberger__menu__contact {
        padding: 10px 0 13px;
    }

    .humberger__menu__contact ul li {
        font-size: 14px;
        color: #1c1c1c;
        position: relative;
        line-height: 30px;
        list-style: none;
    }

    .humberger__menu__contact ul li i {
        color: #252525;
        margin-right: 5px;
    }

    .humberger__menu__cart ul {
        display: inline-block;
        margin-right: 25px;
    }

    .humberger__menu__cart ul li {
        list-style: none;
        display: inline-block;
        margin-right: 15px;
    }

    .humberger__menu__cart ul li:last-child {
        margin-right: 0;
    }

    .humberger__menu__cart ul li a {
        position: relative;
    }

    .humberger__menu__cart ul li a i {
        font-size: 18px;
        color: #1c1c1c;
    }

    .humberger__menu__cart ul li a span {
        height: 13px;
        width: 13px;
        background: #5f9394;
        font-size: 10px;
        color: #ffffff;
        line-height: 13px;
        text-align: center;
        font-weight: 700;
        display: inline-block;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: -12px;
    }

    .humberger__menu__cart .header__cart__price {
        font-size: 14px;
        color: #6f6f6f;
        display: inline-block;
    }

    .humberger__menu__cart .header__cart__price span {
        color: #252525;
        font-weight: 700;
    }

    .humberger__menu__cart {
        margin-bottom: 25px;
    }

    .humberger__menu__widget {
        margin-bottom: 20px;
    }

    .humberger__menu__widget .header__top__right__language {
        margin-right: 20px;
    }

    .humberger__menu__nav {
        display: none;
    }

    .humberger__menu__wrapper .header__top__right__social {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .humberger__menu__wrapper .slicknav_btn {
        display: none;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
        border-bottom: none !important;
    }

    .humberger__menu__wrapper .slicknav_nav {
        display: block !important;
    }

    .humberger__menu__wrapper .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 30px;
    }

    .humberger__menu__wrapper .slicknav_nav ul {
        margin: 0;
    }

    .humberger__menu__wrapper .slicknav_nav a {
        color: #1c1c1c;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        border-bottom: 1px solid #e1e1e1;
    }

    .humberger__menu__wrapper .slicknav_nav a:hover {
        -webkit-border-radius: 0;
        border-radius: 0;
        background: transparent;
        color: #5f9394;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_row,
    .humberger__menu__wrapper .slicknav_nav a {
        padding: 8px 0;
    }

    .humberger__menu__overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        content: "";
        z-index: 98;
        visibility: hidden;
        -webkit-transition: all, 0.6s;
        -moz-transition: all, 0.6s;
        -ms-transition: all, 0.6s;
        -o-transition: all, 0.6s;
        transition: all, 0.6s;
    }

    .humberger__menu__overlay.active {
        visibility: visible;
    }

    .header__top {
        display: none;
    }

    .header__menu {
        display: none;
    }

    .header__cart {
        text-align: center;
        padding: 10px 0 24px;
    }

    .over_hid {
        overflow: hidden;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
    .featured__controls ul li {
        margin-bottom: 10px;
    }

    .product__details__text ul li b {
        width: fit-content;
        margin-left: 8px;
    }

    .product__details__tab .nav-tabs li {
        margin-right: 20px;
    }

    .shoping__cart__btns {
        text-align: center;
    }

    .primary-btn.cart-btn.cart-btn-right {
        float: none;
        margin-top: 10px;
    }

    .shoping__checkout .primary-btn {
        display: block;
        text-align: center;
        padding: 10px 15px 10px;
    }

    .map .map-inside {
        -webkit-transform: translateX(-125px);
        -ms-transform: translateX(-125px);
        transform: translateX(-125px);
    }

    .map .map-inside .inside-widget {
        width: 250px;
    }

    .product__details__tab .nav-tabs li {
        margin-right: 15px;
    }

    .shoping__discount form input {
        width: 100%;
    }

    .checkout__order {
        padding: 20px;
    }

    .blog__details__hero__text h2 {
        font-size: 24px;
    }
}

.font-manual1 {
    font-size: calc(12px + 0.2vw);
}

.font-manual2 {
    font-size: calc(13px + 0.3vw);
    color: #2d2d2d;
}

.font-manual3 {
    font-size: calc(14px + 0.4vw);
}

.featured__filter {
    direction: rtl;
}

.last__blog {
    direction: rtl;
    text-align: right;
}

.direct-rtl {
    direction: rtl;
}

.direct-ltr {
    direction: rtl;
}

.btn-manual {
    color: #fff;
    background-color: #5f9394;
    border-color: #5f9394;
}

.btn-manual:hover {
    color: #ffffff;
    background: #997116;
}

.btn-manual:focus {
    box-shadow: 0 0 0 0.2rem rgb(187 142 40 / 42%);
}

.pointer {
    cursor: pointer;
}

.pointer-block {
    pointer-events: none;
}

.card-header {
    font-size: calc(16px + 0.4vw);
    font-weight: bold;
    background-color: #5f9394;
    padding: 13px;
    color: #eaffff;
}

.imageUpload {
    display: none;
}

.w-fit {
    width: fit-content;
}

.btn-previous {
    background-color: #7aacad;
    border-color: #325c5d;
    color: white;
}

select {
    text-align-last: right;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

option {
    direction: rtl;

    padding-right: 139px !important;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    direction: rtl;
}

.size_title_detail {
    font-size: calc(18px + 0.5vw);
}

.logo_top {
    width: calc(42px + 1vw);
   
}

.radius {
    border-radius: 10px;
}

.featured__item__text p {
    margin-bottom: 0;
    /* padding-bottom: 0; */
    background: #767676;
    color: white;
    padding: 7px;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
}

.title-header {
    padding: 10px !important;
    background: #cdac67;
    color: white !important;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #fbfbfb;
    text-decoration: none;
}

.swal-modal .swal-text {
    text-align: center;
}

.product__details__text ul li:nth-child(odd) {
    padding: 6px;
    border-radius: 5px;
    background: #e1e1e1dd;
}

.exit {
    position: absolute;
    top: 9px;
    right: 20px;
}

.close-outline {
    font-size: 20px;
}

.internal-link {
    opacity: 0;
    height: 0;
    width: 0;
    display: inherit;
}

.parent_category_item {
    width: 216px;
    height: 216px;
    max-width: 100%;
}

.img-h1 {
    border-radius: 5px;
    box-shadow: 1px 1px 1px #d5d5d5;
}

.header__menu ul li:hover > a {
    cursor: pointer;
}

.hr-public {
    border: none;
    height: 2px;
    background-color: #004d4061;
    width: 60%;
    margin: 20px auto;
}

.hr-public2 {
    background-color: #004d4061 !important;
    height: 2px;
    opacity: 0.7;
    border: none;
}

.desc-product {
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

a {
    color: inherit;
    text-decoration: none;
}

.position-absolute > h1 {
    font-size: calc(28px + 0.4vw);
    font-family: "IranYekan";
    color: #007e7a;
    line-height: 1.5;
}

.div_h1 {
    top: 15%;
    right: 3%;
}

.position-absolute > span {
    font-size: calc(23px + 0.5vw);
    font-family: "IranYekan";
}

.fa-arrow-down:before {
    float: left;
    margin-top: 5px;
}

.font-weight-bold {
    font-weight: bold;
}

.size-1 {
    font-size: calc(12px + 0.2vw);
}

.size-2 {
    font-size: calc(14px + 0.3vw);
}

/* fixed mobile menu ahmadi */

.navigation {
    display: none;
}

@media (max-width: 1100px) {
    .humberger__open {
        display: none;
    }

    .header__menu {
        display: none;
    }
}

.owl-nav {
    display: none;
}

/* -------------------------------------------------------------------------- */
/*                               AI Chat Modal                                */
/* -------------------------------------------------------------------------- */

.ai-modal-content {
    background: #f8f9fa;
    /* Light grey background for chat container */
    border: none;
    border-radius: 0;
}

/* Header */
.ai-modal-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.ai-modal-title {
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.ai-modal-logo {
    width: 35px;
    height: auto;
}

/* Chat Body area */
.ai-modal-body {
    padding: 0;
    background-color: #f0f2f5;
    /* WhatsApp/Telegram style bg */
    background-image: radial-gradient(#e1e4e8 1px, transparent 1px);
    background-size: 20px 20px;
}

.ai-chat-history {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Message Wrappers */
.ai-message-wrapper {
    display: flex;
    align-items: flex-end;
    /* Align avatar to bottom of message */
    gap: 10px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

.ai-message-wrapper.user-message-wrapper {
    align-self: flex-end;
    /* User messages on the left (RTL) or Right (LTR) - In Persian (RTL), flex-end is LEFT side visually if direction is RTL?
    Wait, in RTL: flex-start is Right, flex-end is Left.
    Usually user messages are on one side, bot on other.
    Let's handle RTL explicitly.
    */
    flex-direction: row-reverse;
    /* Avatar on the other side */
}

/* Specific alignments for RTL */
/* Specific alignments for RTL */
[dir="rtl"] .ai-message-wrapper {
    margin-right: auto !important;
    /* Push to Left (Bot) */
    margin-left: 0 !important;
    align-self: auto !important;
    flex-direction: row-reverse;
}

[dir="rtl"] .ai-message-wrapper.user-message-wrapper {
    margin-left: auto !important;
    /* Push to Right (User) */
    margin-right: 0 !important;
    align-self: auto !important;
    flex-direction: row-reverse;
}

/* Avatar/Icon */
.message-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ai-message-wrapper .fa-robot {
    background: linear-gradient(135deg, #ffb75e, #ed8f03);
    /* Brand Gradient */
    color: white;
}

.ai-message-wrapper .fa-user {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
}

/* Message Bubbles */
.message-content {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ai-message {
    background: #ffffff;
    color: #333;
    border-bottom-right-radius: 2px;
    /* Distinct corner for Bot */
}

.user-message {
    background: var(--brand-color, #c19675);
    /* Fallback to brand color */
    color: #ffffff;
    border-bottom-left-radius: 2px;
    /* Distinct corner for User */
}

/* Input Area */
.ai-modal-footer {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 15px 25px;
}

.ai-chat-input-form {
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 25px;
    padding: 5px 8px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.ai-chat-input-form:focus-within {
    background: #fff;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(193, 150, 117, 0.1);
}

.ai-chat-input-form input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 0.95rem;
}

.ai-chat-input-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: #777;
}

.ai-chat-input-form button.submit-btn {
    background: var(--brand-color);
    color: white;
    margin-right: 5px;
    /* RTL fix */
}

[dir="rtl"] .ai-chat-input-form button.submit-btn {
    margin-right: auto;
    margin-left: 0;
}

.ai-chat-input-form button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.ai-chat-input-form button.submit-btn:hover {
    filter: brightness(1.1);
}

/* Loading Animation */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #b6b6b6;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Product Cards in AI Chat */
.ai-products-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    margin-top: 10px;
}

.ai-product-card {
    min-width: 140px;
    width: 140px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.ai-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ai-product-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.ai-product-card-info {
    padding: 8px;
    text-align: center;
}

.ai-product-card-info h5 {
    font-size: 0.8rem;
    margin: 0 0 5px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-product-card-info p {
    font-size: 0.75rem;
    color: var(--brand-color);
    margin: 0;
    font-weight: 700;
}

/* Consultant Button style in Chat */
.consultant-start-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 5px;
}

.consultant-start-btn:hover {
    background-color: #eee;
    color: #000;
    transform: translateY(-1px);
}

/* Render Modal Button Styles */
.btn-render-start {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none !important;
    padding: 12px 60px !important;
    font-size: 1.1rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-render-start:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3) !important;
}
