﻿@font-face {
    font-family: 'IRANSansWeb';
    src: url('./fonts/IRANSansWeb.eot');
    src: url('./fonts/IRANSansWeb.eot#iefix')format('eot'), url('./fonts/IRANSansWeb.woff')format('woff'), url('./fonts/IRANSansWeb.ttf')format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'IRANSansWeb_Bold';
    src: url('./fonts/IRANSansWeb_Bold.eot');
    src: url('./fonts/IRANSansWeb_Bold.eot#iefix')format('eot'), url('./fonts/IRANSansWeb_Bold.woff')format('woff'), url('./fonts/IRANSansWeb_Bold.ttf')format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'IRANSansWeb_Medium';
    src: url('./fonts/IRANSansWeb_Medium.eot');
    src: url('./fonts/IRANSansWeb_Medium.eot#iefix')format('eot'), url('./fonts/IRANSansWeb_Medium.woff')format('woff'), url('./fonts/IRANSansWeb_Medium.ttf')format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'IRANSansWeb_Light';
    src: url('./fonts/IRANSansWeb_Light.eot');
    src: url('./fonts/IRANSansWeb_Light.eot#iefix')format('eot'), url('./fonts/IRANSansWeb_Light.woff')format('woff'), url('./fonts/IRANSansWeb_Light.ttf')format('truetype');
    font-weight: normal;
    font-style: normal
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #3498db; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    --default-font-color:#7e828b;
    --header-topbar:#1cd4c6;
    --topbar-color:#ccc9c9;
    --search-btn-color:#80b241;
    --brand-color:#e4effb;
    --navbar-color:#5e5d5d;
    --searchbar-color:#c2d6e2 ;
    --ctg-bg-color:#e0e9ff;
}

body {
    font-family: "IRANSansWeb", sans-serif;
    background: #f6f9ff;
    color: #444444;
}

a {
    color: #4154f1;
    text-decoration: none;
}

    a:hover {
        color: #717ff5;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "IRANSansWeb_Bold", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 5px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #012970;
    }

    .search-header{
        color:var(--searchbar-color)  !important;
    }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #86339a;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #740491;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

    .topbar-color{
        color: var(--topbar-color) !important;
    }
     
    .navbar-color{
        color: var(--navbar-color) !important;
    }
    .searchbar-bgcolor{
        background-color: var(--searchbar-color) !important;
    }
    /* HERO*/
    .hero-newsletter {
        padding-top: 25px;
      }
      
      .hero-newsletter p {
        font-size: 18px;
        margin: 0 0 15px 0;
      }
      
      .hero-newsletter .newsletter-form {
        margin-bottom: 5px;
        padding: 6px 8px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
      }

      .hero-newsletter .location-form{
         margin-bottom: 5px;
        padding: 6px 8px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
      }

       .hero-newsletter .filter-form{
         margin-bottom: 5px;
        padding: 6px 8px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
         border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
      }

       .hero-newsletter .filter-form span{
         color:var(--default-font-color);
      }
      .hero-newsletter .filter-form i{
         color:var(--default-font-color);
      }
      
      .hero-newsletter .newsletter-form:focus-within {
        border-color: var(--accent-color);
      }
      
      .hero-newsletter .newsletter-form input[type=text] {
        border: 0;
        padding: 10px;
        width: 100%;
        background-color: var(--surface-color);
        color: var(--default-font-color);
      }

      .hero-newsletter .newsletter-form i {
        color:var(--default-font-color);
        position: relative;
        left:-30px;
        top:10px;
      }

      .hero-newsletter .location-form span{
         color:var(--default-font-color);
        position: relative;
        top:10px;
      }
      .hero-newsletter .location-form i{
         color:var(--default-font-color);
        position: relative;
         left:-10px;
        top:10px;
      }
      
      .hero-newsletter .newsletter-form input[type=text]:focus-visible {
        outline: none;
      }
      
       .hero-newsletter .newsletter-form input[type=submit] {
        border: 0;
        font-size: 16px;
        padding: 0 20px;
        margin: -7px 13px -7px -10px;
        /* background: var(--accent-color); */
        /* color: var(--contrast-color); */
        transition: 0.3s;
        border-radius: 50px;
      }
      
      .hero-newsletter .newsletter-form input[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
      }
/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

    .dropdown-menu .dropdown-header,
    .dropdown-menu .dropdown-footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 25px;
    }

        .dropdown-menu .dropdown-footer a {
            color: #444444;
            text-decoration: underline;
        }

            .dropdown-menu .dropdown-footer a:hover {
                text-decoration: none;
            }

    .dropdown-menu .dropdown-divider {
        color: #a5c5fe;
        margin: 0;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .dropdown-menu .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f6f9ff;
        }

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "IRANSansWeb", sans-serif;
}

    .card-title span {
        color: #899bbd;
        font-size: 14px;
        font-weight: 400;
    }

.card-body {
    padding: 0 20px 10px 15px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "IRANSansWeb_Bold", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

    .btn-close:focus {
        outline: 0;
        box-shadow: none;
    }

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

    .accordion-flush .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: #4154f1;
    }

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: "IRANSansWeb", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

    .breadcrumb a {
        color: #899bbd;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #51678f;
        }

    .breadcrumb .breadcrumb-item::before {
        color: #899bbd;
    }

    .breadcrumb .active {
        color: #51678f;
        font-weight: 600;
    }

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: 5px;
        border: none;
        color: #ebeef4;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: var(--default-font-color);
        }

        .nav-tabs-bordered .nav-link.active {
            color: var(--default-font-color);
            border-bottom: 2px solid var(--default-font-color);
        }

        .nav-tabs .nav-link {
            /* margin-bottom: -2px; */
            border: none;
            color:black;
             padding: 0; 
        }

        .nav-tabs .nav-link.active{
            color: black;
            padding: 0; 
        }
        .nav-tabs{
            justify-content: flex-start; 
            margin-right: 0;
            padding-right: 0;
            text-align: right; /* برای چیدمان به سمت راست */
        }
      
          
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.logo {
    line-height: 1;
}

.search-top{
    position: relative;
    right:34px;
}
@media (min-width: 1200px) {
    .logo {
        width: 300px;
    }
}

.logo img {
    max-height: 300px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #6e0170;
    font-family: "IRANSansWeb", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 50px;
    position: relative; /* برای اینکه shadow به درستی نمایش داده شود */
    border-top: 2px solid transparent; /* به طور موقت برای سیستم رنگی */
    box-shadow: 0 -2px 0px rgba(0, 0, 0, 0.1); /* برای سایه اولیه */
    background-color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--brand-color);
    /*padding-left: 20px;*/
    /* Toggle Sidebar Button */
    /* Search Bar */
}

.search-btn{
    color: var(--search-btn-color);
}

.wallet-btn{
    color: var(--searchbar-color);
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
   
}
/* CSS for header shadow */

.header:before {
    content: '';
    position: absolute;
    top: -4px; /* موقعیت بالا */
    left: 0;
    right: 0;
    height: 20px; /* ارتفاع خود سایه */
    /* background: linear-gradient(to bottom, rgba(171, 22, 144, 0.9), transparent); گرادیان سرمه‌ای تیره */
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #c129b9;
}

 .topbar {
    color: var(--default-font-color);
    height: 40px;
    padding: 0;
    font-size: 16px;
    transition: all 0.5s;
  }
  
  .topbar .contact-info i {
    font-style: normal;
    color: var(--accent-color);
  }
  
   .topbar .contact-info i a,
   .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--default-color);
  }
  
  @media (max-width: 575px) {
     .topbar .contact-info i a,
     .topbar .contact-info i span {
      font-size: 16px;
    }
  }
  
   .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
   .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
  }
  
   .topbar .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
  }
  
   .topbar .social-links a:hover {
    color: var(--accent-color);
  }

.header .search-bar {
    min-width: 160px;
    padding: 0 20px;
  }
  
  @media (max-width: 1199px) {
    .header .search-bar {
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      /* padding: 20px; */
      box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
      background: white;
      z-index: 9999;
      transition: 0.3s;
      visibility: visible;
      opacity: 1;
    }
  
    .header .search-bar {
      top: 60px;
      visibility: visible;
      opacity: 1;
    }
  }
  
  .header .search-form {
    width: 50%;
  }
  
  .header .search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    /* padding: 7px 38px 7px 8px; */
    border-radius: 3px;
    transition: 0.3s;
    width: 70%;
  }
  
  .header .search-form input:focus,
  .header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
  }
  
  .header .search-form button {
    border: 0;
    padding: 0;
     margin-right: -120px; 
    background: none;
  }
  
  .header .search-form button i {
    color: #012970;
  }

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #012970;
    /*margin-right: 25px;*/
    position: relative;
}

.header-nav .nav-profile {
    color: #012970;
}

    .header-nav .nav-profile img {
        max-height: 20px;
    }

    .header-nav .nav-profile span {
        font-size: 14px;
        font-weight: 600;
    }

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

    .header-nav .notifications .notification-item {
        display: flex;
        align-items: center;
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .notifications .notification-item i {
            margin: 0 20px 0 10px;
            font-size: 24px;
        }

        .header-nav .notifications .notification-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .header-nav .notifications .notification-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .notifications .notification-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

    .header-nav .messages .message-item {
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .messages .message-item a {
            display: flex;
        }

        .header-nav .messages .message-item img {
            margin: 0 20px 0 10px;
            max-height: 40px;
        }

        .header-nav .messages .message-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #444444;
        }

        .header-nav .messages .message-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .messages .message-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

    .header-nav .profile .dropdown-header h6 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444444;
    }

    .header-nav .profile .dropdown-header span {
        font-size: 14px;
    }

    .header-nav .profile .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .header-nav .profile .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .header-nav .profile .dropdown-item:hover {
            background-color: #f6f9ff;
        }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {

    #main,
    #footer {
        margin-left: 300px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 5px;
    }

    .sidebar-nav .nav-heading {
        font-size: 11px;
        text-transform: uppercase;
        color: #899bbd;
        font-weight: 600;
        margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #4154f1;
        transition: 0.3;
        background: #f6f9ff;
        padding: 10px 15px;
        border-radius: 4px;
    }

        .sidebar-nav .nav-link i {
            font-size: 16px;
            margin-right: 10px;
            color: #4154f1;
        }

        .sidebar-nav .nav-link.collapsed {
            color: #012970;
            background: #fff;
        }

            .sidebar-nav .nav-link.collapsed i {
                color: #899bbd;
            }

        .sidebar-nav .nav-link:hover {
            color: #4154f1;
            background: #f6f9ff;
        }

            .sidebar-nav .nav-link:hover i {
                color: #4154f1;
            }

        .sidebar-nav .nav-link .bi-chevron-down {
            margin-right: 0;
            transition: transform 0.2s ease-in-out;
        }

        .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
            transform: rotate(180deg);
        }

    .sidebar-nav .nav-content {
        padding: 5px 0 0 0;
        margin: 0;
        list-style: none;
    }

        .sidebar-nav .nav-content a {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            color: #012970;
            transition: 0.3;
            padding: 10px 0 10px 40px;
            transition: 0.3s;
        }

            .sidebar-nav .nav-content a i {
                font-size: 6px;
                margin-right: 8px;
                line-height: 0;
                border-radius: 50%;
            }

            .sidebar-nav .nav-content a:hover,
            .sidebar-nav .nav-content a.active {
                color: #4154f1;
            }

                .sidebar-nav .nav-content a.active i {
                    background-color: #4154f1;
                }

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

    .dashboard .filter .icon {
        color: #aab7cf;
        padding-right: 20px;
        padding-bottom: 5px;
        transition: 0.3s;
        font-size: 16px;
    }

        .dashboard .filter .icon:hover,
        .dashboard .filter .icon:focus {
            color: #4154f1;
        }

    .dashboard .filter .dropdown-header {
        padding: 8px 15px;
    }

        .dashboard .filter .dropdown-header h6 {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #aab7cf;
            margin-bottom: 0;
            padding: 0;
        }

    .dashboard .filter .dropdown-item {
        padding: 8px 15px;
    }

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

    .dashboard .info-card h6 {
        font-size: 28px;
        color: #012970;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

    .dashboard .activity .activity-item .activite-label {
        color: #888;
        position: relative;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: 64px;
    }

        .dashboard .activity .activity-item .activite-label::before {
            content: "";
            position: absolute;
            right: -11px;
            width: 4px;
            top: 0;
            bottom: 0;
            background-color: #eceefe;
        }

    .dashboard .activity .activity-item .activity-badge {
        margin-top: 3px;
        z-index: 1;
        font-size: 11px;
        line-height: 0;
        border-radius: 50%;
        flex-shrink: 0;
        border: 3px solid #fff;
        flex-grow: 0;
    }

    .dashboard .activity .activity-item .activity-content {
        padding-left: 10px;
        padding-bottom: 20px;
    }

    .dashboard .activity .activity-item:first-child .activite-label::before {
        top: 5px;
    }

    .dashboard .activity .activity-item:last-child .activity-content {
        padding-bottom: 0;
    }

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

    .dashboard .news h4 a {
        color: #012970;
        transition: 0.3s;
    }

        .dashboard .news h4 a:hover {
            color: #4154f1;
        }

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

    .dashboard .recent-sales .table thead {
        background: #f6f6fe;
    }

        .dashboard .recent-sales .table thead th {
            border: 0;
        }

    .dashboard .recent-sales .dataTable-top {
        padding: 0 0 10px 0;
    }

    .dashboard .recent-sales .dataTable-bottom {
        padding: 10px 0 0 0;
    }

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

    .dashboard .top-selling .table thead {
        background: #f6f6fe;
    }

        .dashboard .top-selling .table thead th {
            border: 0;
        }

    .dashboard .top-selling .table tbody td {
        vertical-align: middle;
    }

    .dashboard .top-selling img {
        border-radius: 5px;
        max-width: 60px;
    }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: #fff;
        border-radius: 0.25rem;
        text-align: center;
        color: #012970;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
        
    }

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .profile .profile-card .social-links a:hover {
        color: #012970;
    }

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4154f1;
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
        color: #4154f1;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #012970;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #4154f1;
    }

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #4154f1;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .contact .php-email-form button[type=submit]:hover {
        background: #5969f3;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

    .error-404 h1 {
        font-size: 180px;
        font-weight: 700;
        color: #4154f1;
        margin-bottom: 0;
        line-height: 150px;
    }

    .error-404 h2 {
        font-size: 24px;
        font-weight: 700;
        color: #012970;
        margin-bottom: 30px;
    }

    .error-404 .btn {
        background: #51678f;
        color: #fff;
        padding: 8px 30px;
    }

        .error-404 .btn:hover {
            background: #3e4f6f;
        }

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

    .footer .copyright {
        text-align: center;
        color: #012970;
    }

    .footer .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #012970;
    }

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-8 {
    font-size: 0.7rem !important;
}

.red-square {
    width: 0.8rem;
    height: 0.8rem;
    background-color: darkred;
}

.orange-square {
    width: 0.8rem;
    height: 0.8rem;
    background-color: orange;
}

.blue-square {
    width: 0.8rem;
    height: 0.8rem;
    background-color: deepskyblue;
}

.purple-square {
    width: 0.8rem;
    height: 0.8rem;
    background-color: purple;
}

.green-square {
    width: 0.8rem;
    height: 0.8rem;
    background-color: lawngreen;
}
/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.service-item {
    position: relative;
    overflow: hidden;
}

.alt-services .img {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

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

.alt-services .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 20px;
    padding: 3px;
    transition: all ease-in-out 0.3s;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    max-height: 80px;
    overflow: hidden;
}

    .alt-services .details span {
        margin: 0;
        font-size: 18px;
    }

.alt-services .service-item:hover .details h3 {
    color: var(--accent-color);
}

.alt-services .service-item:hover .img img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .card {
    background-color: var(--background-color);
    color: var(--default-color);
    border: none;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 200px;
}

    .featured-services .card:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
        z-index: 2;
    }

    .featured-services .card img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .featured-services .card .card-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        padding: 15px; /* تنظیم padding */
    }

        .featured-services .card .card-body h6 {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 5px; /* کاهش margin-bottom */
            padding-left: 10px;
            border-left: 3px solid var(--accent-color);
        }

            .featured-services .card .card-body h6 a {
                color: var(--contrast-color);
            }

        .featured-services .card .card-body .card-content {
            display: flex; /* تغییر به flex */

            flex-direction: column; /* تنظیم جهت به صورت ستونی */

            transition: 0.5s ease-in-out;
            visibility: visible; /* نمایش در ابتدا */

            opacity: 1; /* نمایش در ابتدا */
        }


            .featured-services .card .card-body .card-content .discount,
            .featured-services .card .card-body .card-content .price {
                padding-top: 10px;
                margin-bottom: 0;
                color: var(--contrast-color);
            }

            .featured-services .card .card-body .card-content span {
                font-size: 15px;
                padding-top: 10px;
                margin-bottom: 0;
                overflow: hidden;
                color: var(--contrast-color);
            }

    .featured-services .card:hover .card-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

    .team .member .pic {
        border-radius: 8px;
        overflow: hidden;
        height: 200px !important;
    }

        .team .member .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .team .member .member-info {
        background-color: var(--surface-color);
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        bottom: -50px;
        left: 5px;
        right: 5px;
        padding: 5px 15px;
        overflow: hidden;
        transition: 0.5s;
    }

    .team .member h5 {
        font-weight: 700;
        margin-bottom: 10px;
        /*  font-size: 16px;*/
        margin-top:5px;
        position: relative;
        padding-bottom: 10px;
    }

        .team .member h5::after {
            content: "";
            position: absolute;
            display: block;
            width: 150px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            bottom: 0;
            left: 0;
        }



    .team .member .social {
        display: flex;
        justify-content: space-between; /* فضا را بین عناصر به طور مساوی تقسیم می‌کند */
        align-items: center; /* برای تراز کردن عمودی */
        margin-top: 5px; /* فاصله بالای تخفیف و قیمت */
    }

    .team .member span {
        font-style: italic; /* تنظیم فونت ایتالیک فقط برای span ها */
    }

    .team .member .social a {
        transition: color 0.3s;
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

        .team .member .social a:hover {
            color: var(--accent-color);
        }

    .team .member .social i {
        font-size: 16px;
        margin: 0 2px;
    }

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  /*padding: 8px 12px 10px 12px;*/
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-left: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: right;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-right: 50px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  right: 20px;
  left: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  color: var(--heading-color);
  background: var(--background-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: var(--background-color);
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  margin-right: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.w-40 {
    width: 47.5% !important;
  }
  .w-80 {
    width: 90% !important;
  }

  .card {
    border-radius: 5px;
    overflow: hidden;
    max-width: 400px;
    margin: auto;
}
.card-body-h6{
    color: var(--default-font-color) !important;
    margin: 0;
}
.card-img-top {
    object-fit: cover;
}

.location {
    color: #333;
}

.dotted-line {
    border-top: 1px dotted #ccc;
    margin: 5px 0;
}

.dotted-line-horizontal {
    border-top: 3px dotted #ccc;
}

.rating .star,
.rating .star-empty {
    font-size: 10px;
    color: gold;
    margin: 0 1px;
}

.discount {
    font-size: 18px;
    color: #e74c3c; /* قرمز کمرنگ */
}

.header-top {
    padding: 0 0;
    border-bottom: 1px solid #ddd;
    border-right:1px solid #ddd;
    border-radius: 5px;
}
.header-top .select-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-top .select-box select {
    width: auto;
    padding: 5px;
}

.brand{
    background-color:var(--brand-color) ;
    border-color: var(--searchbar-color);
    border-radius: 10px;
    box-shadow: 0 1px 4px #8fc0eb;;

     background: linear-gradient(135deg, rgba(30, 0, 255, 0.25), rgba(29, 159, 236, 0.15));
       
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
      
        transition: all 0.3s ease;
        font-family: 'IRANSansWeb_Bold';
       
}
.search-container {
    opacity: 1; /* پنهان به دلیل عدم شفافیت */
    transform: translateY(0); /* به عقب جابجا شده */
    transition: opacity 0.3s ease, transform 0.3s ease; /* انیمیشن برای تغییر شفافیت و جابجایی */
}

.index-container {
    opacity: 1; /* پنهان به دلیل عدم شفافیت */
    transform: translateY(0); /* به عقب جابجا شده */
    transition: opacity 0.3s ease, transform 0.3s ease; /* انیمیشن برای تغییر شفافیت و جابجایی */
  
    /* box-shadow: 7px -6px 18px #6dafff; */
}

.category-container {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none; /* مخفی کردن اسکرولبار در مرورگرهای مدرن */
}

.storeType-top {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none; /* مخفی کردن اسکرولبار در مرورگرهای مدرن */
   
}

.categories {
    display: flex;
}

.categories-store {
    display: flex;
}

.category {
    display: inline-block;
    padding: 0 0.2%;
    margin-right: 1.5%; 
    color: black;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.main-category{
     padding: 0 18.2% !important;
    display: inline-block;
    margin-right: 1.5%; 
    color: black;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
     background: linear-gradient(135deg, rgba(215, 215, 215, 0.44), rgb(255, 255, 255));
    border-radius: 10px;
}

.main-category .nav-link.active{
    color: #000000 !important;
    opacity: var(--bs-bg-opacity);
    border-bottom: 2px solid  var(--default-font-color);
    background-color: #d7fbab  !important;
}

.category .nav-link.active{
    color: var(--default-font-color) !important;
    opacity: var(--bs-bg-opacity);
    border-bottom: 2px solid  var(--default-font-color);
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
}

.ctg-category{
     display: inline-block;
    padding: 0 0.2%;
    margin-right: 7%; 
    color: black;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.category .nav-link.active{
    color: var(--default-font-color) !important;
    opacity: var(--bs-bg-opacity);
    border-bottom: 2px solid  var(--default-font-color);
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
}

.frame-container {
    position: relative;
    display: inline-block;
  
}

.house-image {
    width: 96%;
    height: 95%;
    object-fit: cover;
    padding-top: 12px;
    margin-right: 16px;
    padding-left: 14px;
}

.cinema-image{
    width: 100%;
    height: 45%;
    object-fit: cover;
}

.frame-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* جلوگیری از تعامل با فریم */
}

.fw-boldest{
    font-weight: 900 !important;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
   
    z-index: 1000;
}

.nav-item {
    text-align: center;
}

.nav-item button {
    background: none;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.nav-item .nav-link i{
    color: var(--navbar-color) !important;
}
.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
    color: var(--default-font-color) !important;
}

.nav-item .nav-link.active i {
    color: var(--default-font-color) !important;
}

.nav-item .nav-link.active span {
    color: var(--default-font-color) !important;
}

.content-firstpage{
    margin-bottom: 90px;
}

.ctg-sub{
    background-color: #d7fbdc;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-gym{
    background-color: #f99696;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-store{
      background-color: #29f73a;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-art{
    background-color: #e8f00e;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-food{
    background-color: #f0550e;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-sim{
    background-color: #f12525;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-insur{
    background-color: #3236f3;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-tour{
    background-color: #86f4e2;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-cinema{
    background-color: #f9fb8a;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-health{
    background-color: #afa1ef;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.ctg-sub-trip{
    background-color: #9ce5f5;
    border-radius: 30px;
   font-family: 'IRANSansWeb_Bold';
}

.content-ctgpage{
    margin-top: 0px;
    margin-bottom: 5px;
}

.around-me {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--search-btn-color);
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    display: none; /* دکمه به صورت پیش‌فرض مخفی است */
    box-shadow: 0 2px 6px #437d4a;
    z-index: 1000;
}

.around-me button {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/

.search-page{
     /* border-radius: 12px !important; */
     box-shadow: 0 2px 6px ;
     background-color: var(--surface-color) !important;
      /* margin-bottom: 65px; */
}


    /* HERO*/
    .search-newsletter {
        padding-top: 25px;
        background-color: var(--surface-color) !important;

      }
      
      .search-newsletter p {
        font-size: 18px;
        margin: 0 0 15px 0;
      }
      
      .search-newsletter .newsletter-form {
        margin-bottom: 15px;
        padding: 6px 8px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
        box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
        border-radius: 12px;
      }
      
      .search-newsletter .newsletter-form:focus-within {
        border-color: var(--accent-color);
      }
      
      .search-newsletter .newsletter-form input[type=text] {
        border: 0;
        padding: 10px;
        width: 100%;
        background-color: var(--surface-color);
        color: var(--default-color);
      }

      .search-newsletter .newsletter-form i {
        color: var(--default-color);
        position: relative;
        right:6px;
        top:10px;
        font-weight: 700;
      }
      
      .search-newsletter .newsletter-form input[type=text]:focus-visible {
        outline: none;
      }
      
       .search-newsletter .newsletter-form input[type=submit] {
        border: 0;
        font-size: 16px;
        padding: 0 20px;
        margin: -7px 13px -7px -10px;
        transition: 0.3s;
        border-radius: 50px;
      }
      
      .search-newsletter .newsletter-form input[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
      }

      .ctg-background {
        background: linear-gradient(135deg, rgba(215, 215, 215, 0.44), rgb(255, 255, 255));
        border: 1px solid rgba(42, 60, 255, 0.25);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(202, 201, 205, 0.39);
        transition: all 0.3s ease;
        height: 80px !important;
        color:linear-gradient(90deg, #343539, #000000);
        border:1px solid #fdf8f8 !important;
        }

        .subcat-container {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        }
        .subcat-container.show {
            max-height: 500px;
            opacity: 1;
        }

        .subcat-container {
            scroll-margin-top: 20px; /* این عدد رو تنظیم کن تا دقیقا جایی که می‌خوای وایسه */
            }


        .selected-type {
        background: linear-gradient(135deg, rgba(215, 215, 215, 0.44), rgb(55, 235, 64));
        border: 1px solid rgba(42, 60, 255, 0.25);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(202, 201, 205, 0.39);
        transition: all 0.3s ease;
        height: 80px !important;
        color:linear-gradient(90deg, #343539, #000000);
        border:1px solid #fdf8f8 !important;
    }

        /* .ctg-background p{
            font-weight: 700;
            font-size: 0.8rem;
            background: linear-gradient(90deg, #bb09fb, #54b2f9);
                background-clip: border-box;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            white-space: nowrap;
        } */
       


      .location-color{
        color: var(--default-font-color) !important;
        font-size: 12px;
      }

      /**********************
        Detail Page
      ***********************/

      .content-detailpage{
        margin-bottom: 70px;
    }

      .item-detail{
        height: 50% !important;
        width: 100% !important;
      }

      .gallery {
        direction: rtl; /* حفظ جهت راست‌به‌چپ */
        width: 100vw; 
        height: 40vh; 
        overflow: hidden;
        position: relative;
    }
    
    .image-container {
        display: flex;
        flex-direction: row-reverse; /* تصاویر از راست به چپ قرار بگیرند */
        width: 300vw; /* 3 برابر عرض صفحه */
        transition: transform 0.5s ease-in-out;
    }
    
    .image-container img {
        width: 100vw;
        height: 40vh;
        object-fit: contain;
    }
    
    /* کنترل‌ها باید در لایه بالاتر باشند */
    .controls {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: auto; /* اجازه تعامل */
        z-index: 10; /* قرار دادن دکمه‌ها در لایه بالاتر */
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }
    
    
    /* تغییر موقعیت دکمه بازگشت */
    .back {
        order: 2; /* انتقال به سمت راست */
    }
    
    /* تغییر موقعیت دکمه‌های علاقه‌مندی و اشتراک‌گذاری */
    .right-buttons {
        order: 1; /* انتقال به سمت چپ */
        display: flex;
        gap: 10px;
    }
    
    
    /* شمارش تصاویر */
    .image-counter {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.5);
        padding: 1px 10px;
        border-radius: 5px;
        font-size: 16px;
    }
    
    .btn-basket-primary{
        background-color: var(--search-btn-color) !important;
        color: white !important;
        border-color: var(--default-font-color) !important;
    }


    /******************************
            Basket Page 
    *******************************/
    .coupon .newsletter-form {
        margin-bottom: 15px;
        padding: 0 15px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
        border-radius: 50px;
      }
      .coupon .newsletter-form input[type=text] {
        border: 0;
        padding: 10px;
        width: 100%;
        background-color: var(--surface-color);
       
      }

      .coupon .newsletter-form input[type=text]:focus-visible {
        outline: none;
      }
      
       .coupon .newsletter-form input[type=submit] {
        border: 0;
        font-size: 13px;
        padding: 0 20px;
        margin: 0 13px 1px -4px;
        position: relative;
        right: 244px;
        transition: 0.3s;
        border-radius: 50px;
        background-color: var(--search-btn-color);
      }
      
      .coupon .newsletter-form input[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
      }

      .bottom-basket {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color:var(--search-btn-color);
        border-top: 1px solid #ddd;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
       color: white;
        z-index: 1000;
        height: 60px;
    }

    .basket-firstpage{
        margin-bottom: 50px;
    }

    /************************
          Wallet Page
     ***********************/

     .wallet-container {
        width: 100%;
        overflow-x: scroll;
        white-space: nowrap;
        scrollbar-width: none; /* مخفی کردن اسکرولبار در مرورگرهای مدرن */
    }
    
    .wallets {
        display: flex;
    }
    
    .wallet {
        color: black;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
      
    }
    
    .wallet .nav-link {
        border-radius: 10px;
    }
    
    .wallet-page{
        border-radius: 12px !important;
        box-shadow: 0 2px 6px ;
   }

   .wallet-firstPage{
    margin-bottom: 70px !important;
   }

   .custom-tabs {
    background-color:var(--topbar-color) !important;
    border: none;
    display: flex;
    justify-content: center;
    padding: 0px 0px  !important;
    border-radius: 30px;
    margin-top: 3px;
}

.custom-tabs .nav-item .nav-link {
    color: var(--default-color) !important;
    margin: 5px;
    border-radius: 5px !important;
    padding: 1px 5px;
}

.custom-tabs .nav-item.nav-link.active {
    background-color: white !important; /* وقتی فعال شد، پس‌زمینه سفید شود */
    border: none !important;
    padding: 1px 5px;
}


/*************************
        Ticket List Page
*************************/
.ticket-container {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none; /* مخفی کردن اسکرولبار در مرورگرهای مدرن */
}

.tickets {
    display: flex;
}

.ticket {
    color: black;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
  
}

.ticket .nav-link {
    border-radius: 10px;
    color: var(--default-color);
}

.ticket .nav-link.active {
    border-radius: 10px;
    background-color: white !important;
    color: var(--search-btn-color);
}

/************************
   cinema detail page
************************/

.actor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none; /* مخفی کردن اسکرولبار در مرورگرهای مدرن */
}
.actors {
    display: inline-block;
    /* padding: 0 0.2%;
    margin-right: 0.5%;  */
    color: black;
    border-radius: 10px;
    text-align: center;
    padding: 1px;
    cursor: pointer;
}
.actor {
    padding: 10px;
    border-radius: 10px;
}

.actor img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}
.actor p {
    font-size: 16px;
    margin-top: 5px;
    font-weight: bold;
}


/* -------------------- کانتینر اصلی اسکرول افقی -------------------- */

.horizontal-scroll-container {
    /* عرض ۱۰۰٪ صفحه موبایل */
    width: 100%; 
    /* تنها بخش قابل مشاهده از کاروسل را نشان می‌دهد */
    overflow-x: hidden; 
    overflow-y: hidden;
    padding: 20px 0; /* فاصله بالا و پایین */
}

/* کانتینر کاروسل: محل قرارگیری کارت‌ها */
.hotel-carousel {
    display: flex;
    /* این خاصیت اجازه می‌دهد تا محتوا از کانتینر والد خود (horizontal-scroll-container) بیرون بزند و اسکرول ایجاد شود. */
    overflow-x: scroll;
    padding: 0 5vw; /* این پدینگ فضای خالی سمت راست و چپ را ایجاد می‌کند */
    
    /* مخفی کردن نوار اسکرول در مرورگرهای وبکیت (کروم/سافاری) */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* فایرفاکس */
    -ms-overflow-style: none;  /* اینترنت اکسپلورر و اج */
    
    /* (اختیاری) اسنپ کردن به ابتدای هر آیتم برای تجربه کاربری بهتر (مثل اپلیکیشن) */
    scroll-snap-type: x mandatory; 
}


/* مخفی کردن نوار اسکرول برای وبکیت */
.hotel-carousel::-webkit-scrollbar {
    display: none;
}

#divBlue{
   /* background-color: #c8e3f6 !important; */
   padding: 15px;
}

/* -------------------- استایل‌های کارت در محیط موبایل -------------------- */

.hotel-card-lux {
  
    flex-shrink: 0; /* جلوگیری از کوچک شدن آیتم‌ها */
    margin-left: 20px; /* فاصله بین کارت‌ها (به دلیل rtl، از سمت چپ فاصله می‌دهیم) */
    
    /* استایل‌های لوکس (کوچکتر از حالت دسکتاپ) */
   background-color: #fff;
    border-radius: 14px; 
    overflow: hidden;
    scroll-snap-align: start; /* اسنپ به ابتدای کارت */
    border:1px solid #eff1fd !important;
}
/* فقط برای موبایل و تبلت‌های کوچیک */
@media (max-width: 768px) {
    .hotel-card-lux {
        width: 40vw; 
    }
}

/* برای دسکتاپ (اگر خواستی عرض خاصی داشته باشه یا auto باشه) */
@media (min-width: 769px) {
    .hotel-card-lux {
        width: auto; /* یا مثلاً width: 300px; هرچی خواستی */
    }
}

.hotel-carousel-ctg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding: 10px;
}

.hotel-card-lux-ctg {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hotel-carousel-ctg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .truncate-title {
   max-width: 250px;
  }
}





.carousel-header{
  font-size: 12px;
  color: #000000;
}
.carousel-header span {
  display: inline-flex;
  align-items: center;
  direction: rtl;
  font-weight: 700;
  font-size: 0.8rem;
  background: linear-gradient(90deg, #365e28, #52b1b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.carousel-header i {
  margin-left: 6px;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #365e28, #52b1b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------------------- بخش تصویر و تخفیف -------------------- */

.hotel-card__image-container {
    height: 120px; /* ارتفاع تصویر کمتر */
    position: relative;
}

.hotel-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* برچسب تخفیف */
.hotel-card__discount-badge {
    position: absolute;
    top: 10px;
    left: 10px; 
    color: #000000;
    padding: 0px 5px;
    border-radius: 30px;
    z-index: 10;
    background-color: white;
    padding-top: 5px;
}

/* -------------------- بخش محتوا (پایین) -------------------- */

.hotel-card__content {
    padding: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100% - 120px); /* پر کردن فضای باقی‌مانده (اختیاری) */
}

/* -------------------- عنوان و مکان -------------------- */

.hotel-card__header {
    margin-bottom: 10px;
}

.hotel-card__title {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
}

.hotel-card__location {
    font-size: 10px;
    color: #999999;
    margin-top: 5px;
}

/* -------------------- قیمت و جزئیات -------------------- */

.hotel-card__details {
    display: flex;
    justify-content: space-between;
    align-items: center; /* تراز عمودی در مرکز */
    /* margin-top: auto; /* مهم: این آیتم را به انتهای محتوا می‌برد */
} */

.hotel-card__pricing {
    /* قیمت در یک خط نمایش داده می‌شود تا فضا حفظ شود */
    flex-direction: row; 
    align-items: center;
}

.hotel-card__price-new {
    font-size: 12px;
    font-weight: 800;
    color: #155223;
    margin-left: 5px; /* فاصله از قیمت قدیمی */
}

.hotel-card__price-old {
    font-size: 10px;
    text-decoration: line-through;
    color: #ff0000;
}

.hotel-card__currency {
    font-size: 10px; /* برای حفظ فضای کوچک، واحد پول را حذف می‌کنیم */
    font-weight: 600;
}


/* -------------------- دکمه CTA (کوچکتر و ساده‌تر) -------------------- */

.hotel-card__cta {
     padding: 2px 10px;
    font-size: 14px;
    /* margin-top: 10px;  */
}

/* .category-tab img{
    background-color: #e4effb;
    border-radius: 45px;
} */

/*  Ctegory Page  */
.form-range {
  position: absolute;
  width: 100%;
  pointer-events: none;
  background: transparent;
}

.form-range::-webkit-slider-thumb {
  pointer-events: all;
  height: 18px;
  width: 18px;
  background: #0d6efd;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.form-range::-moz-range-thumb {
  pointer-events: all;
  height: 18px;
  width: 18px;
  background: #0d6efd;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
 .star-rating {
      direction: ltr;
      display: flex;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      font-size: 2rem;
      color: #ccc;
      transition: color 0.2s ease;
    }

    .star-rating .bi-star-fill {
      color: #ffc107;
      text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
    }

 /* search on map */
    .map-controls{
      left:18px;
      top:18px;
      display:flex;
      gap:8px;
      align-items:center;
    }
    .search-input{
      background:rgba(255,255,255,0.95);
      border-radius:10px;
      padding:8px 12px;
      min-width:220px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      border:1px solid rgba(0,0,0,0.06);
    }
    .btn-search{
      background:transparent;
      border:1px solid rgba(16,24,40,0.08);
      padding:8px 12px;
      border-radius:8px;
      cursor:pointer;
      font-weight:600;
    }
    .btn-search.primary{
      background:var(--tile-bg);
      color:var(--white);
      border:1px solid rgba(0,0,0,0.06);
      box-shadow: 0 6px 18px rgba(136,57,255,0.08);
    }
    .leaflet-control {
    display: none !important;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.show {
  opacity: 1;
}


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

/* استایل اسکلتون */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.skeleton-text {
  height: 12px;
  width: 80%;
  margin-top: 8px;
  border-radius: 4px;
}

.search-firstPage {
  background: linear-gradient(135deg, rgba(215, 215, 215, 0.44), rgb(255, 255, 255));
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow:0 2px 6px rgb(242, 235, 235);
  position: relative;
  margin: 0px 12px;
   border:1px solid #fdf8f8 !important;
}

/* آیکون سرچ */
.search-firstPage i.bi-search {
  font-size: 18px;
  color: #acaaaa;
  margin-left: 10px;
  margin-right: 5px;
  font-weight: 800;
}

/* input جستجو */
.search-firstPage input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: #333;
}

.search-firstPage input::placeholder {
  color: #acaaaa;
}

/* دکمه فیلتر (آیکون سمت چپ) */
.filter-btn {
  background: #ffffff;
  border: none;
  border-radius: 10%;
  width: 170px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-btn i {
  color: #acaaaa;
  font-size: 15px;
}

.filter-btn span{
     color: #acaaaa;
}
.filter-btn:hover {
  background: #e9e9e9;
}

.glow-img {
  filter: drop-shadow(0 0 8px rgba(56, 183, 165, 0.67));
  transition: filter 0.3s ease;
}

.glow-img:hover {
  filter: drop-shadow(0 0 8px rgba(56, 183, 165, 0.67));
}

.add-to-cart-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-radius: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.product-features {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'IRANSansWeb', sans-serif;
}

.product-features h5 {
  font-size: 1.1rem;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.product-features ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.9rem;
}

.product-features ul li:last-child {
  border-bottom: none;
}

.product-features ul li span {
  font-weight: 600;
  color: #444;
}

@media (max-width: 576px) {
  .product-features {
    font-size: 0.9rem;
    padding: 16px;
  }
  .product-features ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff; /* پس‌زمینه برای پر کردن فضای خالی */
  height: 400px; /* یا هر ارتفاعی که بخوای برای گالری */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* یا cover بسته به حالت دلخواه */
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.03);
}


.swiper-pagination {
  color: #fff;
  font-weight: bold;
  bottom: 10px !important;
}

.swiper-button-next, .swiper-button-prev {
  color: #04ff0c;
}
