.clear {
    display: none !important;
}
/* =============================================
   استایل بخش روش‌های حمل و نقل - اوکالاهوم
   ============================================= */

/* کانتینر اصلی */
.woocommerce-shipping-totals {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

/* عنوان "حمل و نقل" */
.woocommerce-shipping-totals th {
    font-size: 15px;
    font-weight: 700;
    color: #1e1e1e;
    padding-bottom: 14px;
    text-align: right;
    width: 140px;
    vertical-align: top;
    padding-top: 4px;
}

/* لیست روش‌های حمل */
.woocommerce-shipping-methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* هر آیتم روش حمل */
.woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
	display: flex;
	
}

/* لیبل کل روش حمل */
.woocommerce-shipping-methods label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: #fafafa;
    border: 1.5px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #454545;
    box-sizing: border-box;
}

/* هاور روی لیبل */
.woocommerce-shipping-methods label:hover {
    background: #f5f3ff;
    border-color: #d5c8f5;
}

/* استایل وقتی رادیو باتن انتخاب شده */
.woocommerce-shipping-methods input[type="radio"]:checked + label {
    background: #f8f5ff;
    border-color: #b400ae;
    box-shadow: 0 0 0 2px rgba(180, 0, 174, 0.08);
    color: #3D3D4E;
    font-weight: 600;
}

/* مخفی کردن رادیو باتن پیش‌فرض و ایجاد استایل سفارشی */
.woocommerce-shipping-methods input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: 12px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background: #fff;
}

/* دایره داخلی رادیو باتن انتخاب شده */
.woocommerce-shipping-methods input[type="radio"]:checked {
    border-color: #b400ae;
    background: #b400ae;
    box-shadow: inset 0 0 0 4px #fff;
}

/* هاور رادیو باتن */
.woocommerce-shipping-methods input[type="radio"]:hover {
    border-color: #b400ae;
}

/* نام روش حمل */
.woocommerce-shipping-methods label::before {
    display: none;
}

/* جداکننده بین نام روش و قیمت */
.woocommerce-shipping-methods label {
    gap: 8px;
}

/* استایل قیمت */
.woocommerce-shipping-methods .woocommerce-Price-amount {
    font-weight: 700;
    color: #1e1e1e;
    font-size: 14px;
    white-space: nowrap;
    margin-right: auto;
}

/* واحد تومان */
.woocommerce-shipping-methods .woocommerce-Price-currencySymbol {
    font-size: 11px;
    font-weight: 400;
    color: #777;
    margin-right: 3px;
}

/* جداکننده بصری بین نام و قیمت */
.woocommerce-shipping-methods label span:not(.woocommerce-Price-amount) {
    flex: 1;
}

/* =============================================
   ریسپانسیو - نسخه موبایل
   ============================================= */
@media (max-width: 768px) {
    .woocommerce-shipping-totals {
        padding: 16px 12px;
        border-radius: 8px;
        margin: 12px 0;
    }

    .woocommerce-shipping-totals th {
        font-size: 14px;
        width: 100%;
        display: block;
        padding-bottom: 12px;
        text-align: right;
    }

    .woocommerce-shipping-totals td {
        width: 100%;
        display: block;
    }

    .woocommerce-shipping-methods {
        gap: 8px;
    }

    .woocommerce-shipping-methods label {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 8px;
        flex-wrap: wrap;
    }

    .woocommerce-shipping-methods input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-left: 10px;
    }

    .woocommerce-shipping-methods .woocommerce-Price-amount {
        font-size: 13px;
        width: 100%;
        text-align: left;
        margin-top: 4px;
    }
}

/* =============================================
   ریسپانسیو - موبایل‌های کوچک
   ============================================= */
@media (max-width: 480px) {
    .woocommerce-shipping-totals {
        padding: 12px 10px;
    }

    .woocommerce-shipping-methods label {
        padding: 10px 12px;
        font-size: 12px;
    }

    .woocommerce-shipping-methods input[type="radio"] {
        width: 16px;
        height: 16px;
        margin-left: 8px;
    }

    .woocommerce-shipping-methods input[type="radio"]:checked {
        box-shadow: inset 0 0 0 3px #fff;
    }
}
/* مخفی کردن کامل رادیو باتن‌ها */
.woocommerce-shipping-methods input[type="radio"] {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .woocommerce-checkout #order_review>* {
        max-width: 100%;
        min-width: 100%;
        display: flex !important;
        flex-direction: column !important;
    }
}
/* =============================================
   استایل آیتم‌های سبد خرید - اوکالاهوم
   ============================================= */

/* هر ردیف محصول */
.cart_item {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.cart_item:hover {
    background: #fafafa;
}

/* سلول نام محصول */
.cart_item .product-name {
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
    line-height: 1.8;
    text-align: right;
    vertical-align: middle;
}

/* تعداد محصول */
.cart_item .product-quantity {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* سلول قیمت */
.cart_item .product-total {
    padding: 16px 12px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

/* استایل مبلغ */
.cart_item .product-total .woocommerce-Price-amount {
    font-size: 15px;
    font-weight: 700;
    color: #1e1e1e;
    direction: ltr;
    display: inline-block;
}

/* استایل واحد تومان */
.cart_item .product-total .woocommerce-Price-currencySymbol {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-left: 2px;
}

/* =============================================
   استایل هدر جدول (عنوان ستون‌ها)
   ============================================= */

/* هدر جدول سبد خرید */
.shop_table thead th {
    background: #fafafa;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #454545;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

/* =============================================
   ریسپانسیو - تبلت
   ============================================= */
@media (max-width: 768px) {
    .cart_item {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border: 1px solid #f0f0f0;
        border-radius: 10px;
        margin-bottom: 10px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    }

    .cart_item:hover {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .cart_item .product-name {
        padding: 8px 0;
        font-size: 14px;
        border-bottom: 1px dashed #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 6px;
    }

    .cart_item .product-total {
        padding: 8px 0;
        text-align: right;
        font-size: 14px;
    }

    .cart_item .product-total .woocommerce-Price-amount {
        font-size: 15px;
    }

    .cart_item .product-quantity {
        font-size: 11px;
        padding: 2px 8px;
        margin-right: 6px;
    }
}

/* =============================================
   ریسپانسیو - موبایل کوچک
   ============================================= */
@media (max-width: 480px) {
    .cart_item {
        padding: 10px;
    }

    .cart_item .product-name {
        font-size: 13px;
    }

    .cart_item .product-total {
        font-size: 13px;
    }

    .cart_item .product-total .woocommerce-Price-amount {
        font-size: 14px;
    }
}
.woocommerce-single-buy-card .product-price .sale-percent {
    background-color: var(--color-secondary);
    border-radius: var(--radius-large) !important;
    -webkit-border-radius: var(--radius-large) !important;
    color: var(--color-secondary-compatible);
    left: 0;
    line-height: normal;
    padding: .2rem var(--space-small);
    position: absolute;
    top: -30px !important;
}
td.rank_math_seo_details.column-rank_math_seo_details {
    display: none !important;
}
/* تعریف فونت */
@font-face {
    font-family: 'IRANYekanX';
    src: url('https://janebicase.com/wp-content/uploads/2024/IRANYekanX-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* اعمال فونت روی کل سایت */
* {
    font-family: 'IRANYekanX', Tahoma, sans-serif !important;
}

/* اعمال فونت روی عناصر خاص برای اطمینان */
body,
h1, h2, h3, h4, h5, h6,
p,
a,
span,
div,
input,
textarea,
button,
select {
    font-family: 'IRANYekanX', Tahoma, sans-serif !important;
}

/* برای عناصر ویرایشگر و محتوای وردپرس */
.entry-content,
.entry-title,
.widget,
.comment-content {
    font-family: 'IRANYekanX', Tahoma, sans-serif !important;
}
