:root {
    --green: #0d8420;
    --yellow: #ffe241;
    --orange: #ec6436;
    --light: #8292B4;
    --light-black: #444444
}
 @font-face {
    font-display: swap;
    font-family: yekan;
    font-weight: 400;
    src: url('fonts/Yekan-Bakh-FaNum-04-Regular.eot');
    src: url('fonts/Yekan-Bakh-FaNum-04-Regular.eot?#iefix') format("embedded-opentype"),
	url('fonts/Yekan-Bakh-FaNum-04-Regular.woff') format("woff"),url('fonts/Yekan-Bakh-FaNum-04-Regular.ttf') format("truetype")
}

@font-face {
    font-display: swap;
    font-family: yekan;
    font-weight: 500;
    src: url('fonts/Yekan-Bakh-FaNum-05-Medium.eot');
    src: url('fonts/Yekan-Bakh-FaNum-05-Medium.eot#iefix') format("embedded-opentype"),url('fonts/Yekan-Bakh-FaNum-05-Medium.woff')
	format("woff"),url('fonts/Yekan-Bakh-FaNum-05-Medium.ttf') format("truetype")
}

@font-face {
    font-display: swap;
    font-family: yekan;
    font-weight: 600;
    src: url('fonts/Yekan-Bakh-FaNum-06-Bold.eot');
    src: url('fonts/Yekan-Bakh-FaNum-06-Bold.eot?#iefix') format("embedded-opentype"),url('fonts/Yekan-Bakh-FaNum-06-Bold.woff') 
	format("woff"),url('fonts/Yekan-Bakh-FaNum-06-Bold.ttf') format("truetype")
}

@font-face {
    font-display: swap;
    font-family: yekan;
    font-weight: 700;
    src: url('fonts/Yekan-Bakh-FaNum-07-Heavy.eot');
    src: url('fonts/Yekan-Bakh-FaNum-07-Heavy.eot?#iefix') format("embedded-opentype"),url('fonts/Yekan-Bakh-FaNum-07-Heavy.woff') format("woff"),
	url('fonts/Yekan-Bakh-FaNum-07-Heavy.ttf') format("truetype")
}

*{
	direction:rtl;
	    font-family: yekan;
}
body {
     font-family: yekan;
    font-size: 13px
}

/* ==================== استایل‌های نظرسنجی ==================== */
.poll-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.poll-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.poll-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.poll-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.poll-header .poll-stats {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.poll-body {
    padding: 30px;
}

.poll-form .form-check {
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.poll-form .form-check:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.poll-form .form-check-input {
    margin-left: 10px;
    transform: scale(1.25);
    width: 22px;
    height: 22px;
}

.poll-form .form-check-input:checked + .form-check-label {
    color: #667eea;
    font-weight: 600;
}

.poll-form .form-check-label {
    font-size: 1.05rem;
    cursor: pointer;
    margin: 0;
    padding: 8px 0;
    display: block;
    line-height: 1.6;
}

.poll-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.poll-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.poll-results {
    margin-top: 30px;
}

.poll-results h5 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-item {
    margin-bottom: 25px;
}

.result-item .result-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.result-item .result-text {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.result-item .result-badge {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.result-item .progress {
    height: 25px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.result-item .progress-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    transition: width 0.6s ease;
    position: relative;
}

.result-item .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%);
    background-size: 20px 20px;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.poll-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.poll-alert.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border-right: 4px solid #2196f3;
}

.poll-alert.alert-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
    color: #e65100;
    border-right: 4px solid #ff9800;
}

.poll-reports {
    margin-top: 30px;
}

.report-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
}

.report-header {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 20px;
}

.report-header h5 {
    margin: 0;
    font-weight: 600;
}

.report-body {
    padding: 25px;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.report-stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.report-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.report-stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.detailed-votes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.detailed-votes-table th,
.detailed-votes-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.detailed-votes-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.detailed-votes-table tr:hover {
    background: #f8f9ff;
}

/* انیمیشن‌های نظرسنجی */
.poll-fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.poll-slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== استایل‌های نظرسنجی چندمرحله‌ای ==================== */
.multi-step-poll {
    position: relative;
}

.step-progress {
    margin-bottom: 30px;
}

.progress-bar-container {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar-container .progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.step-indicator.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.step-indicator.completed {
    background-color: #28a745;
    color: white;
}

.step-indicator.completed::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.steps-container {
    position: relative;
    min-height: 300px;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.step-content.active {
    display: block;
}

.step-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.required-indicator {
    color: #dc3545;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.step-options {
    margin-bottom: 30px;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.step-navigation .btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
}

/* استایل‌های نظرسنجی تک مرحله‌ای */
.single-step-poll .question-block {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.single-step-poll .question-block h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.single-step-poll .question-options {
    margin-top: 15px;
}

/* استایل‌های نتایج */
.question-results {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.question-results h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.question-summary {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.question-summary:last-child {
    border-bottom: none;
}

/* انیمیشن‌های اضافی */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-content.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

.step-content.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .poll-container {
        padding: 15px;
    }
    
    .poll-header {
        padding: 20px;
    }
    
    .poll-header h4 {
        font-size: 1.2rem;
    }
    
    .poll-body {
        padding: 20px;
    }
    
    .poll-form .form-check {
        padding: 14px 16px;
        margin-bottom: 14px;
        border-width: 2px;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
    }

    .step-options .form-check,
    .single-step-poll .form-check,
    .question-options .form-check {
        padding: 16px 18px;
        border-radius: 10px;
    }

    .poll-form .form-check-input {
        width: 28px;
        height: 28px;
        transform: scale(1.35);
        margin-top: 2px;
    }

    .poll-form .form-check-label,
    .question-options .form-check-label {
        font-size: 1.1rem;
        padding: 10px 0 8px;
    }

    .step-question {
        font-size: 1.15rem;
    }

    .step-navigation .btn {
        padding: 14px 22px;
        font-size: 1rem;
    }
    
    .result-item .result-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .detailed-votes-table {
        font-size: 0.9rem;
    }
    
    .detailed-votes-table th,
    .detailed-votes-table td {
        padding: 8px;
    }
    
    .step-indicators {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-navigation .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .step-question {
        font-size: 1.1rem;
    }
    
    .single-step-poll .question-block {
        padding: 15px;
    }
    
    .question-results {
        padding: 15px;
    }
}

body {
 
    font-size: 12px;
    color: var(--light-black)
}

a {
    text-decoration: none
}

p {
    font-size: 15px
}

.h6,h6 {
    font-size: 16px;
    line-height: 20px
}

.h5,h5 {
    font-size: 18px;
    line-height: 20px
}

.btn {
    font-size: 14px
}

.form-control {
    font-size: 15px
}

.text-muted {
    color: var(--light)!important
}

.link-dark {
    color: var(--light-black)!important
}

.osahan-mb-1 {
    margin-bottom: 1px
}

.fw-bold {
    font-weight: 500!important
}

.small,small {
    font-size: 12px
}

.bg-primary {
    background-color: var(--orange)!important
}

.text-primary {
    color: var(--orange)!important
}

.btn-primary {
    background-color: var(--orange)!important;
    border-color: var(--orange)!important
}

.btn-outline-success {
    border-color: var(--green)!important;
    color: var(--green)!important;
    background: #f1fff3!important
}

.btn-sm {
    padding: 6px 19px
}

.btn-lg {
    font-size: 14px;
    padding: 15px
}

.form-control {
    box-shadow: none!important
}

.offcanvas-footer {
    padding: 1rem
}

.form-check .form-check-input:focus {
    box-shadow: none!important
}

.form-check .form-check-input:checked {
    background-color: #fc8019;
    border-color: #fc8019
}

.shadow,.shadow-sm {
    -webkit-box-shadow: 0 4px 10px rgb(0 77 255/4%)!important;
    box-shadow: 0 4px 10px rgb(0 77 255/4%)!important
}

.border {
    border: 1px solid #eaf1f5!important
}

.border-bottom {
    border-bottom: 1px solid #eaf1f5!important
}

.border-top {
    border-top: 1px solid #eaf1f5!important
}

.border-start {
    border-left: 1px solid #eaf1f5!important
}

.border-end {
    border-right: 1px solid #eaf1f5!important
}

.accordion-item {
    border-color: #eaf1f6
}

.icon-sm {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-lg {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center
}

.all-cate.slick-initialized,.top-picks.slick-initialized,.coupons.slick-initialized,.product-slider.slick-initialized {
    visibility: visible;
    opacity: 1
}

.all-cate,.top-picks,.coupons,.product-slider {
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    width: 100%;
    display: flex;
    overflow: scroll;
	    overflow-y: hidden;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
}

html ::-webkit-resizer {
    background-color: #fff
}

html ::-webkit-scrollbar {
    width: 5px;
    overflow: visible
}

html ::-webkit-scrollbar-button {
    display: none
}

html ::-webkit-scrollbar-corner {
    background-color: #fff
}

html ::-webkit-scrollbar-thumb {
    background-color: rgba(138,138,138,.4);
    border-radius: 7px
}

html ::-webkit-scrollbar-track-piece {
    background-color: #fff
}

.user-icon {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-box {
    height: 110px;
    width: auto;
    border: 1px solid #e5e5e5
}
.btn-brands {
    position: fixed;
    bottom: 10rem;
    right: 1rem;
}

.btn-category {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
}

.osahan-badge {
    font-size: 8px;
    letter-spacing: .4px;
    line-height: 10px;
    padding: 5px 4px 4px;
    border-radius: 0 0 5px 5px;
}

.osahan-badge b {
    font-size: 12px;
    font-weight: 500
}

.all-cate p.card-title {
    line-height: 14px
}

.osahan-offer-banner {
    height: 160px
}

.osahan-offer-banner-2 {
    height: 112px
}

.cart-product {
    width: 50px
}
.woobtn-cart {
    position: fixed;
    bottom: 80px;
    left: 15px;
}

.custom-checkbox .btn-outline-danger {
    border-color: #d1d1d1!important;
    color: #000!important
}

.custom-checkbox .btn-check:checked+.btn-outline-danger {
    background-color: #fdac6a4f!important;
    border-color: #fc8019!important;
    color: #fc8019!important
}

.osahan-count input {
    width: 22px
}

.tracking-time {
    margin-top: -65px;
    position: relative
}

.order-time {
    height: 80px;
    width: 80px;
    border: 5px solid #fc8019;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.delivery-boy-img {
    min-width: 38px;
    max-width: 38px
}

.osahan-user-profile img {
    height: 50px
}

.nav-wrapper.nav-wrapper-0 .nav-content h2 {
    display: none
}

li.nav-parent.level-open h2 {
    display: block!important
}

.listing-left {
    width: 75px;
    max-width: 75px;
    min-width: 75px
}

.listing-navbar img {
    width: 30px
}

.osahan-item-sidebar .nav-link {
    padding: 0;
    position: relative;
    margin: 7px 0
}

.osahan-item-sidebar .nav-link img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    padding: 3px
}

.osahan-item-sidebar .nav-link p {
    color: #8292b4
}

.osahan-item-sidebar .nav-link.active p {
    color: #ed6337
}

.osahan-item-sidebar .nav-link.active {
    background: 0 0
}

.osahan-item-sidebar .nav-link.active:after {
    content: "";
    position: absolute;
    width: 6px;
    background: #ed6337;
    top: 0;
    bottom: 0;
    right: -10px;
    border-radius: 9px
}

.osahan-item-sidebar .nav-link.active img {
    background: #ffe9e2!important
}

.coupon-top-shape {
    width: 10px;
    height: 10px;
    background: #fff;
    left: -5px;
    top: -11px;
    border-radius: 50px
}

.coupon-bottom-shape {
    width: 10px;
    height: 10px;
    background: #fff;
    left: -5px;
    bottom: -11px;
    border-radius: 50px
}

.coupon-top-shape-2 {
    width: 25px;
    height: 25px;
    background: #f8f9fa;
    left: -11px;
    bottom: -12px;
    border-radius: 50px;
    box-shadow: 1px 0 1px #e0e0e0
}

.coupon-bottom-shape-2 {
    width: 25px;
    height: 25px;
    background: #f8f9fa;
    right: -11px;
    bottom: -12px;
    border-radius: 50px;
    box-shadow: -1px 0 1px #e0e0e0
}

.osahan-coupons-code .border-end {
    border-right-style: dashed!important;
    border-color: #fff!important
}
.flasher{
 
    animation: flash 1s infinite;  
}  

@keyframes flash {  
    0% {  
        opacity: 0;  
    }  
    50% {  
        opacity: 1;  
    }  
    100% {  
        opacity: 0;  
    }  
} 
.set-address{
    width: 24px;
    height: 24px;
    position: absolute;
    margin-top: 35px;
    margin-right: 10px;
}
ul.navbar-navs {
    padding: 0 !important;
    margin-top: 42px;
}
.navbar-navs li {
    list-style: none;
    background: #dddddd;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 26px;
    box-shadow: 0px 6px 10px #88888845;
}
.navbar-navs li a{
	    position: absolute;
    left: 33px;
    font-size: 21px;
    font-weight: 600;
    line-height: 20px;
}
.addtocart{color: #ffffff;font-size: 32px;height: 26px;border-radius: 5px !important;background: #38b615;border: 1px solid #88887742;width: 26px;display: flex;align-items: center;margin-bottom: 10px;}
 

 

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#footer-toast{
		    color: #fff;
    display: none;
	font-size:18px;
      position: fixed;
    background: #060606b8;
    padding: 2px 10px;
    width: 207px;
    text-align: center;
    border-radius: 15px;
    bottom: 85px;
    right: 25%;
    z-index: 10000;
	}
	.logo-search{
		position: absolute;
    width: 90px;
    left: 13%;
    opacity: 0.1;
    margin-top: 5px;
    float: left;
	}
	
.buttonx {
  position: relative;
 
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}
.buttonx__text {
 
  transition: all 0.2s;
}

.buttonx--loading .buttonx__text {
  visibility: hidden;
  opacity: 0;
}

.buttonx--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 48%;
  right: auto;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #6c6c6c ;
  border-radius: 50%;
  animation: buttonx-loading-spinner 1s ease infinite;
}

@keyframes buttonx-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}
.cat-image-slider {
    width: 70px;
    height: 70px;
}
.coupons-item {
    width: 290px;
    min-width: 290px;
}
.top-picks-item {
    min-width: 145px;
    width: 145px;
    max-width: 145px;
}
.wc-forward {
    font-size: 0 !important;
}
.no-select{
	    user-select: none; /* WebKit */  
    -moz-user-select: none; /* Firefox */  
    -ms-user-select: none; /* Internet Explorer/Edge */  

}.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    right: 0;
}
a.fkcart-shopping-link.fkcart-modal-close {
    background: #ed4949;
    color: #fff !important;
    padding: 13px;
    border-radius: 5px;
    font-weight: 800 !important;
    font-size: 16px !important;
}

#callinput::placeholder {
  font-size: 12px;
}
.wc-forward {
    height: 0 !important;
    width: 0 !important;
    position: absolute;
}