/**
 * استایلهای فرانتاند کیف پول - دسکتاپ
 *
 * @package Bakala
 * @subpackage Wallet
 */

/* === ویجت موجودی === */
.bakala-wallet-balance-widget {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    overflow: hidden;
}

.wallet-balance-container {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.wallet-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.wallet-info {
    flex: 1;
}

.wallet-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.wallet-amount {
    font-size: 24px;
    font-weight: bold;
}

.wallet-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wallet-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.wallet-link .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.wallet-link:hover .arrow {
    transform: translateX(5px);
}

.bakala-wallet-balance-shortcode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 15px;
}

.bakala-wallet-balance-shortcode .wallet-icon {
    font-size: 20px;
}

.bakala-wallet-balance-shortcode .wallet-label {
    color: #666;
}

.bakala-wallet-balance-shortcode .wallet-amount {
    font-weight: bold;
    color: #667eea;
}

/* دکمه مشاهده همه */
.wallet-view-all-btn {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.wallet-view-all-btn:hover {
    background: #5568d3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.wallet-view-all-btn:active {
    transform: translateY(0);
}

/* تاریخچه کامل */
.wallet-full-history {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    animation: slideDown 0.4s ease;
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === داشبورد === */
.bakala-wallet-dashboard {
    max-width: 1200px;
}

.wallet-balance-card {
    background: #f5f5f5;
    color: #000;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.wallet-balance-card h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    opacity: 0.9;
    font-weight: bold;
    color: #000;
}

.balance-amount {
    font-size: 40px;
    font-weight: bold;
    margin: 20px 0;
}

.balance-description {
    margin: 0 0 20px 0;
    opacity: 0.8;
    font-size: 14px;
}

.bakala-wallet-topup-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.bakala-wallet-topup-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.wallet-topup-section {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.wallet-topup-section#topup-form-section {
    display: none;
}

.wallet-topup-section h3 {
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 18px;
}

.amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.suggested-amounts label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.suggested-amount-btn {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.suggested-amount-btn:hover,
.suggested-amount-btn.active {
    border-color: #667eea;
    background: #f0f3ff;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

.topup-amount-input {
    margin: 20px 0;
}

.topup-amount-input label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.topup-amount-input input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 11px;
    font-size: 16px;
}

.topup-amount-input p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #666;
}

.topup-actions {
    display: flex;
    gap: 10px;
}

.wallet-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wallet-stat-item {
    background: #f5f5f5;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.stat-icon-credit {
    background: #d4edda;
    color: #155724;
}

.stat-icon-debit {
    background: #f8d7da;
    color: #721c24;
}

.stat-icon-total {
    background: #d1ecf1;
    color: #0c5460;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 3px;
}

.stat-count {
    font-size: 12px;
    color: #999;
}

.wallet-recent-transactions {
    background: #f5f5f5;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
}

.wallet-recent-transactions h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
}

/* === تاریخچه === */
.bakala-wallet-history {
    margin: 20px 0;
}

.wallet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.filter-group select {
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* === تراکنشها === */
.transactions-list {
    margin: 15px 0;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    animation: fadeIn 0.3s ease;
}

.transaction-item:hover {
    background: #f8f9fa;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.transaction-credit .transaction-icon {
    background: #d4edda;
    color: #155724;
}

.transaction-debit .transaction-icon {
    background: #f8d7da;
    color: #721c24;
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.transaction-date {
    font-size: 12px;
    color: #999;
}

.transaction-description {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.transaction-amount {
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.transaction-amount-credit {
    color: #28a745;
}

.transaction-amount-debit {
    color: #dc3545;
}

/* === جدول تراکنشها === */
.wallet_transactions_table {
    width: 100%;
    border-collapse: collapse;
}

.wallet_transactions_table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: right;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.wallet_transactions_table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.transaction-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.transaction-badge-credit {
    background: #d4edda;
    color: #155724;
}

.transaction-badge-debit {
    background: #f8d7da;
    color: #721c24;
}

/* === انیمیشنها === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === دکمهها === */
.wallet-actions {
    text-align: center;
    padding: 15px 0;
}

/* === صفحه شارژ === */
.bakala-wallet-topup {
    max-width: 800px;
}

.wallet-current-balance {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wallet-current-balance > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-current-balance p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.wallet-current-balance h3 {
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: bold;
}

.wallet-current-balance .dashicons {
    font-size: 48px;
    opacity: 0.3;
}

.wallet-topup-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.suggested-amounts {
    margin-bottom: 30px;
}

.suggested-amounts label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.suggested-amounts .amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.suggested-amounts .suggested-amount-btn {
    padding: 15px;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.custom-amount {
    margin-bottom: 30px;
}

.custom-amount label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.custom-amount > div {
    position: relative;
}

.custom-amount input[type="number"] {
    width: 100%;
    padding: 15px 80px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    direction: ltr;
    text-align: right;
}

.custom-amount input[type="number"]:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.custom-amount > div > span {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
}

.custom-amount p {
    margin: 10px 0 0 0;
    font-size: 13px;
    color: #666;
}

.topup-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: none;
}

.topup-summary > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.topup-summary > div:last-child {
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 0;
}

.topup-summary span:first-child {
    font-size: 14px;
    color: #666;
}

.topup-amount-display {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

.balance-after-display {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
}

.wallet-topup-form .button.alt {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.wallet-topup-form .button.alt:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.wallet-topup-form .button.alt .dashicons {
    vertical-align: middle;
    margin-right: 5px;
}

.security-notice {
    margin-top: 25px;
    padding: 15px;
    background: #e7f7ef;
    border-radius: 8px;
    border-right: 4px solid #28a745;
}

.security-notice p {
    margin: 0;
    font-size: 13px;
    color: #155724;
    line-height: 1.6;
}

.security-notice .dashicons {
    vertical-align: middle;
    color: #28a745;
}

.wallet-topup-help {
    margin-top: 30px;
    background: #f0f6fc;
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid #0073aa;
}

.wallet-topup-help h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #0073aa;
}

.wallet-topup-help .dashicons {
    vertical-align: middle;
}

.wallet-topup-help ul {
    margin: 0;
    padding-right: 20px;
    line-height: 1.8;
    color: #666;
}

/* === صفحه تشکر === */
.woocommerce-wallet-thankyou {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-right: 4px solid #667eea;
}

.woocommerce-wallet-thankyou h2 {
    margin-top: 0;
    color: #667eea;
}

.woocommerce-thankyou-wallet-message {
    margin: 10px 0;
}

.wallet-remaining-balance {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #666;
}

/* === چکاوت === */
.bakala-wallet-checkout-option {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
}

.bakala-wallet-checkout-option h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.wallet-balance-info {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.wallet-balance-text {
    margin: 0;
    font-size: 15px;
}

.wallet-balance-text strong {
    color: #667eea;
    font-size: 18px;
}

.wallet-usage-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.wallet-usage-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wallet-payment-breakdown {
    margin-top: 15px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.wallet-breakdown-table {
    width: 100%;
}

.wallet-breakdown-table td {
    padding: 8px 0;
    font-size: 14px;
}

.wallet-breakdown-table td:last-child {
    text-align: left;
    font-weight: bold;
}

.remaining-amount {
    color: #dc3545;
    font-weight: bold;
}ul.jcaa_attr_select, ul.jcaa_attr_select li{
	margin:0;
	padding:0;
}

ul.jcaa_attr_select{
	overflow: hidden;
	margin-bottom: -5px;
}

.jcaa_attr_variable_select .jcaa_attr_option:hover{
	cursor: pointer;
}

.jcaa_attr_variable_select .jcaa_attr_option.jcass_attr_disable:hover{
	cursor: default;
}

.jcaa_attr_select li{
	display: inline-block;
	width: auto !important;
}

.jcaa_attr_option{
	display: block;
	margin: 0 !important;
}

.jcaa_attr_select li img{
	margin-bottom: 0 !important;
}/**
 * Optional styles
 */

.jcaa_attr_select.jcaa_rounded_corners li, .jcaa_attr_select.jcaa_rounded_corners li .jcaa_attr_option{
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

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

a.jcaa_attr_option {
	padding-left: 5px;
	padding-right: 5px;	
}

a.jcaa_attr_option:hover{
	text-decoration: inherit;
}

.variations ul.jcaa_attr_select{
	margin-bottom: -5px;
}

ul.jcaa_attr_select li{
	float:left;
	margin-right: 5px;
	margin-bottom: 5px;
	/*border: 1px solid #333;*/
}

ul.jcaa_attr_select li:first-child{
	margin-left: 0;
}

.shop_attributes td{
	vertical-align: middle;
}/*

THIS FILE IS OVERWRITTEN EVERY TIME YOU UPDATE THE PLUGIN.
USE THE CUSTOM CSS OPTION IN THE SUBSCRIPTION SETTING PANEL FOR YOUR
CUSTOM CSS RULES.

*/

div.tnp-subscription, div.tnp-profile,
form.tnp-subscription, form.tnp-profile {
    display: block;
    margin: 1em auto;
    max-width: 500px;
    width: 100%;
}

/* Generic field wrapper */
.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field
{
    margin-bottom: .7em;
    border: 0;
    padding: 0;
}

.tnp-subscription label,
.tnp-profile label
{
    display: block;
    color: inherit;
    font-weight: normal;
    line-height: normal;
    padding: 0;
    margin: 0;
    margin-bottom: .25em;
    font-size: .9em;
}

.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label
{
    display: inline-block;
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea
{
    width: 100%;
    padding: .7em;
    display: block;
    border: 1px;
    color: #444;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    font-size: 1em;
    margin: 0;
    line-height: normal;
    box-sizing: border-box;
}

.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox]
{
    /* Fixes some bad themes CSS */
    max-width: 1em;
    display: inline-block;
    margin-right: .5em;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-subscription select option,
.tnp-profile select option
{
    margin-right: .75em;
}

.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit
{
    background-color: #444;
    color: #fff;
    width: auto;
    height: auto;
    margin: 0;
}

@media all and (max-width: 480px) {
    .tnp-subscription input[type=submit],
    .tnp-profile input[type=submit] {
        width: 100%;
    }
}

.tnp-widget {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.tnp-widget .tnp-field {
    margin-bottom: 10px;
    border: 0;
    padding: 0;
}

.tnp-widget label {
    display: block;
    color: inherit;
    font-size: 14px;
}

.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
    width: 100%;
    padding: 10px;
    display: block;
    border: 1px solid #ddd ;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    color: #444;
    font-size: 14px;
    line-height: normal;
    box-sizing: border-box;
    height: auto;
}

.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
    width: auto;
    display: inline-block;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-widget select option {
    margin-right: 10px;
}

.tnp-widget input.tnp-submit {
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    margin: 0;
}

.tnp-field input[type="submit"] {
    position: inherit;
}

.tnp-field label {

}

/* Newsletter Widget Minimal */

.tnp-widget-minimal {
    width: 100%;
}

.tnp-widget-minimal form {
    margin: 0;
    padding: 0;
    border: 0;
}

.tnp-widget-minimal input.tnp-email {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
}

.tnp-widget-minimal input.tnp-submit {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    border-radius: 0px;
    height: auto;
    margin: 0;
}

/* The minimal form */

.tnp-subscription-minimal {
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}

.tnp-subscription-minimal form {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    white-space: nowrap;
}

.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name
{
    width: 70%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin-right: 10px;
}

.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name
{
    width: 31%;
}

.tnp-subscription-minimal .tnp-privacy-field {
    margin-top: 10px;
}

/* Some of these styles are overridden by theme styles... */
.tnp-subscription-minimal input.tnp-submit {
    width: 29%;
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin: 0;
}

.tnp-subscription-posts {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2rem;
}

.tnp-subscription-posts .tnp-subscription {
    max-width: auto;
    margin: 0;
}

@media all and (max-width: 525px) {
    .tnp-subscription-minimal.with-name input.tnp-email,
    .tnp-subscription-minimal.with-name input.tnp-name,
    .tnp-subscription-minimal input.tnp-submit
    {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
        margin-bottom: .5rem;
    }
}

/* Comments Extension */
.tnp-comments {
    clear: both;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tnp-comments label {
    display: block;
}

.tnp-comments input[type=checkbox] {
    display: inline-block;
    width: auto!important;
}


/* Locked Content Extension */
.tnp-lock {
    clear: both;
    display: block;
    box-sizing: border-box;
    box-shadow: none;
    margin: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.tnp-nl-checkout {
    margin-bottom: 1em;
}

			.dgwt-wcas-ico-magnifier,.dgwt-wcas-ico-magnifier-handler{max-width:20px}.dgwt-wcas-search-wrapp{max-width:600px}		
            .variations option:disabled,
            .select-option.disabled {
                display: none !important;
            }
            
                .ar-panel-expanded .ar-cart,        .ar-order,        .ar-panel-interior a:hover        {            background:  !important;        }        .ar-amount a {            color:  !important;        }    

		/**
		 * Dynamic Styles
		 */
		ul.jcaa_attr_variable_select .jcaa_attr_option:hover{
		 	border-color:#333333 !important;
		 }
		
		.jcaa_attr_select .jcaa_attr_option, .jcaa_attr_select .jcaa_attr_option.jcass_attr_disable:hover{
			border: 2px solid #FFFFFF !important;
		}

				.jcaa_attr_select.jcaa_size_small .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_small .jcaa_obj_color.jcaa_attr_option{
			width: 20px;
			height: 20px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_small .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_small .jcaa_obj_color.jcaa_attr_option{
            width: 20px;
            height: 20px;
        }

		.jcaa_attr_select.jcaa_size_small .jcaa_obj_text.jcaa_attr_option{
			line-height: 20px;
			font-size:10px;
		}
				.jcaa_attr_select.jcaa_size_medium .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_medium .jcaa_obj_color.jcaa_attr_option{
			width: 30px;
			height: 30px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_medium .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_medium .jcaa_obj_color.jcaa_attr_option{
            width: 30px;
            height: 30px;
        }

		.jcaa_attr_select.jcaa_size_medium .jcaa_obj_text.jcaa_attr_option{
			line-height: 30px;
			font-size:15px;
		}
				.jcaa_attr_select.jcaa_size_large .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_large .jcaa_obj_color.jcaa_attr_option{
			width: 40px;
			height: 40px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_large .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_large .jcaa_obj_color.jcaa_attr_option{
            width: 40px;
            height: 40px;
        }

		.jcaa_attr_select.jcaa_size_large .jcaa_obj_text.jcaa_attr_option{
			line-height: 40px;
			font-size:20px;
		}
		
		ul.jcaa_attr_select li{
			border: 1px solid #DDDDDD;
		}

		.jcaa_attr_select .jcaa_active_attr{
			border-color: #333333;
		}

		.jcaa_attr_select .jcass_attr_disabled{
			opacity: 0.2;
		}

				.jcaa_attr_select .jcaa_active_attr .jcaa_attr_option:hover{
			border: 2px solid #FFFFFF !important;
			cursor: default;
		}
		
		
			span.technicalspecs-value{
    direction: rtl;
    text-align: right;
}

span.vendor-warranty::before{
	    color: green!important;
}
span.vendor-warranty{
	    color: green!important;
	   font-size: 14px !important;
}

i.fa.fa-info-circle.alert-box-icon{
		  color: red!important;

}

p.alert-box-text{
	  color: red!important;
	   font-size: 14px !important;
}
		.bakala-messanger.msg-item-instagram span{background:linear-gradient(90deg,#8224E3 0%, #DD3333 100%);background:-moz-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-webkit-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-o-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-ms-linear-gradient(0deg,#8224E3 0%, #DD3333 100%)}
    .lr_alert {
        color: #fff;
    }

    .auth__container .alert-simple.alert-warning {
        border: 1px solid rgba(241, 142, 6, 0.81);
        background-color: rgba(220, 128, 1, 0.16);
        box-shadow: 0px 0px 2px #ffb103;
        color: #ff4b03;
        transition: 0.5s;
        cursor: pointer;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
    }

    .auth__container .alert-warning:hover {
        background-color: rgba(220, 128, 1, 0.33);
        transition: 0.5s;
    }

    .auth__container .warning {
        font-size: 18px;
        color: #ff4b03;
        text-shadow: none;
    }

    .auth__container .alert:before {
        content: '';
        position: absolute;
        width: 0;
        height: calc(100% - 44px);
        border-right: 1px solid;
        border-left: 2px solid;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        height: 30px;
    }

    .auth__container .alert>.start-icon {
        margin-right: 0;
        min-width: 20px;
        text-align: center;
    }

    .auth__container .alert>.start-icon {
        margin-right: 5px;
    }

                            a.c-header__btn-user {
                              display: flex;
                              align-items: center;
                              justify-content: center;
                            }

                            a.c-header__btn-user:after {
                              content: unset;
                            }
                          
        .animationDivInnerNav {
            position: absolute;
            height: 39px;
            top: 0;
            z-index: -1;
            opacity: 0.5;
            background-color: #d9d8d8;
            border-radius: 12px;
            transition: all .5s ease 0s;
        }

        .bg-transparent,
        .bg-transparent:hover {
            background: transparent !important;
        }

        .zIndex-high {
            z-index: 999999999;
        }

        /* Classic dropdown styles */
        .classic-submenu {
            display: none;
            position: absolute;
            background: #fff;
            padding: 10px 0;
            list-style: none;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 5px;
            top: 100%;
            right: 0;
        }

        .has-submenu:hover>.classic-submenu {
            display: block;
        }

        /* ensure parent li positions absolute submenu correctly */
        .bk_menu li.has-submenu {
            position: relative;
        }

        .classic-submenu li a {
            padding: 8px 20px;
            display: block;
            white-space: nowrap;
            color: #333;
            transition: all 0.2s ease;
        }

        .classic-submenu li a:hover {
            background-color: #f5f5f5;
            color: #000;
        }

        .classic-submenu .sub-menu {
            display: none;
            position: absolute;
            top: 0;
            right: 100%;
            background: #fff;
            padding: 10px 0;
            list-style: none;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .classic-submenu li.has-submenu:hover>.sub-menu {
            display: block;
        }

        .classic-submenu li.has-submenu {
            position: relative;
        }

        /* Ensure overlay doesn't block mouse interactions with submenus */
        .bakala-submenu-overlay {
            pointer-events: none;
        }

        /* Safari only: disable submenu overlay completely to avoid Safari layout bug */
        html.is-safari .bakala-submenu-overlay {
            display: none !important;
        }

        /* Hide overlay when menu is used in Elementor widget */
        .elementor-widget-bakala_header_menu .bakala-submenu-overlay {
            display: none !important;
        }
    
			#addToCartModal .modal-content {
				overflow-y: auto;
			}
		