
:root {
    --primary-color: #FF6B35;
    --secondary-color: #002547;
    --bg-light: #F9FBFD;
    --text-dark: #333333;
    --text-muted: #666666;
    --border-color: #E6EEF6;
}

.moho_bg-breadcrumb-archive-shop {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 519px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.moho_bg-breadcrumb-archive-shop h2 {
    font-size: 32px;
    font-weight: 800;
    color: #E6EEF6;
    margin-bottom: 32px;
}

.moho_breadcrumb-archive-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.moho_breadcrumb-archive-product a {
    text-decoration: none;
    color: #E6EEF6;
}

.moho_breadcrumb-archive-product span i {
    font-size: 20px;
    color: #E6EEF6;
}

.moho_breadcrumb-archive-product h3 {
    font-size: 18px;
    font-weight: 400;
    color: #E6EEF6;
    margin: 0;
}

/* Cart Styles */
.moho_cart-container {
    max-width: 1200px !important;
    margin-top: 60px;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 37, 71, 0.05);
    overflow: hidden;
}

.cart-table th {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
    padding: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.product-name {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.product-name:hover {
    color: var(--primary-color);
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: fit-content;
    overflow: hidden;
}

.quantity-control button {
    background: none;
    border: none;
    padding: 5px 12px;
    color: var(--secondary-color);
    cursor: pointer;
}

.quantity-control button:hover {
    background-color: #f0f0f0;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-weight: 600;
}

.remove-btn {
    color: #dc3545;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.cart-summary {
    padding: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-checkout {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background-color: #e55a2b;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.btn-update {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-update:hover {
    background-color: var(--secondary-color);
    color: white;
}

.coupon-section {
    margin-top: 0;
}

.coupon-input {
    border-radius: 10px 0 0 10px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
}

.coupon-btn {
    border-radius: 0 10px 10px 0;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
}

/* RTL Adjustments for Coupon */
[dir="rtl"] .coupon-input {
    border-radius: 0 10px 10px 0;
}
[dir="rtl"] .coupon-btn {
    border-radius: 10px 0 0 10px;
}

.price-amount,
.amount {
    font-weight: 600;
    color: var(--primary-color);
}

.currency,
.woocommerce-Price-currencySymbol {
    font-size: 0.85rem;
    margin-right: 4px;
    color: var(--text-muted);
}

.wc-proceed-to-checkout a.checkout-button {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #e55a2b;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.woocommerce-shipping-methods li {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.woocommerce-shipping-methods li label {
    margin-bottom: 0;
}

.summary-item.shipping > span:first-child {
    flex-shrink: 0;
}

.summary-item.shipping > span:last-child {
    text-align: left;
}

[dir="rtl"] .summary-item.shipping > span:last-child {
    text-align: right;
}

.cart-table .quantity {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

.cart-table .quantity button {
    background: none;
    border: none;
    padding: 5px 12px;
    color: var(--secondary-color);
    cursor: pointer;
    width: auto;
    height: auto;
}

.cart-table .quantity input.qty {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-weight: 600;
    background: transparent;
    padding: 5px 0;
}

.cart-table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-table .remove-btn {
    color: #dc3545;
    font-size: 1.2rem;
}

.woocommerce-cart-form__contents .product-remove a.remove {
    color: #dc3545 !important;
}

.woocommerce-cart-form__contents .product-remove a.remove:hover {
    background: transparent !important;
    color: #a71d2a !important;
}

/* Single Product Styles from single-product.html */
.moho_single-product {
    max-width: 1200px !important;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.moho_single-product-img-desc {
    display: flex;
    gap: 60px;
}

.moho_single-product-img {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.moho_single-product-img img {
    width: 355px;
    height: 355px;
    object-fit: cover;
}

.moho_slider-single-product {
    background: #F9FBFD;
    padding: 15px;
    border-radius: 24px;
    border: 1px solid #ECF2F8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 327px;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.moho_slider-single-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.moho_slider-single-product img.active {
    border-color: #ff6b35;
}

.moho_single-product-desc h2 {
    color: #002547;
    margin-bottom: 18px;
}

.moho_single-product-rating {
    margin-bottom: 18px;
}

.moho_single-product-rating i {
    color: #ffbc00;
}

/* Star Rating Input */
.moho_star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.moho_star-rating input {
    display: none;
}

.moho_star-rating label {
    cursor: pointer;
    font-size: 24px;
    color: #cbdcf0; /* Light blue, more visible than before */
    transition: color 0.3s;
}

.moho_star-rating label:hover,
.moho_star-rating label:hover ~ label,
.moho_star-rating input:checked ~ label {
    color: #ffbc00;
}

.moho_single-product-price {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #ECF2F8;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.moho_single-product-price span del {
    color: #4c4c4c;
}

.moho_single-product-price span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff6b35;
}

.moho_single-product-price span ins {
    color: #002547;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.moho_single-product-price h6 {
    margin: 0;
    font-size: 18px;
    color: red;
}

.moho_single-product-short-description {
    border-bottom: 1px solid #ECF2F8;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.moho_single-product-short-description p {
    line-height: 32px;
    color: #002547;
    margin: 0;
}

.moho_single-product-short-description p:empty {
    display: none;
}

.moho_single-product-add-to-cart {
    display: flex;
    gap: 20px;
    align-items: center;
}

.moho_single-product-add-to-cart-quantity {
    border: 1px solid #ECF2F8;
    width: 170px;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-radius: 50px;
}

.moho_single-product-add-to-cart button {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background: #002547;
    color: #ffffff;
    border: 0;
}

.moho_single-product-add-to-cart button:hover {
    background: #ff6b35;
}

/* Tabs and Related for WooCommerce */
.moho_single-product-descriptions-tab {
    background: #F9FBFD;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #ECF2F8;
}

.moho_single-product-descriptions-tab .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ECF2F8;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.moho_single-product-descriptions-tab .woocommerce-tabs ul.tabs li {
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.moho_single-product-descriptions-tab .woocommerce-tabs ul.tabs li a {
    color: #8AB2D7;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.moho_single-product-descriptions-tab .woocommerce-tabs ul.tabs li.active a {
    color: #002547;
}

.moho_single-product-descriptions-tab .woocommerce-tabs ul.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

.moho_single-product-descriptions-tab .woocommerce-Tabs-panel h2 {
    display: none;
}

.moho_single-product-descriptions-tab .woocommerce-Tabs-panel {
    color: #002547;
    line-height: 1.8;
}

.moho_related-products {
    width: 100%;
}

.moho_related-products section.related.products {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.moho_related-title h2 {
    font-size: 24px;
    color: #002547;
    margin: 0;
}

.moho_related-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Add to Cart Form Compatibility */
.moho_single-product-desc form.cart {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity {
    border: 1px solid #ECF2F8;
    width: 170px;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-radius: 50px;
    margin: 0 !important;
    align-items: center;
}

.quantity button {
    background: transparent;
    border: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #002547;
    font-size: 16px;
    transition: color 0.3s;
}

.quantity button:hover {
    color: #ff6b35;
}

.quantity input.qty {
    width: 40px;
    border: 0;
    background: transparent;
    text-align: center;
    color: #002547;
    font-weight: 700;
    padding: 0;
}

.moho_single-product-desc form.cart button.single_add_to_cart_button {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background: #002547;
    color: #ffffff;
    border: 0;
    font-size: 16px;
    font-weight: 400;
}

.moho_single-product-desc form.cart button.single_add_to_cart_button:hover {
    background: #ff6b35;
}

.moho_qty-btn {
    cursor: pointer;
    color: #002547;
}

.moho_qty-btn:hover {
    color: #ff6b35;
}

.moho_archive-product {
    max-width: 1200px !important;
    display: flex;
    gap: 12px;
    margin-top: 64px;
    align-items: flex-start;
}

.moho_sidebar-archive-product {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.moho_sidebar-items-product-archive {
    display: flex;
    flex-direction: column;
    background: #F9FBFD;
    border: 1px solid #ECF2F8;
    border-radius: 24px;
    padding: 24px;
    width: 285px;
}

.moho_sidebar-items-product-archive h2 {
    font-size: 18px;
    font-weight: 600;
    color: #002547;
    margin-bottom: 20px;
}

span.moho_border-archive-product-sidebar {
    border-bottom: 1px solid #E6EEF6;
    margin-bottom: 20px;
}

.moho_sidebar-items-product-archive h6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8AB2D7;
    font-size: 16px;
    margin: 0;
}

.moho_sidebar-items-product-archive h6 i {
    font-size: 22px;
    color: #0057A8;
}

.moho_best-selling-products-img {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
}

.moho_best-selling-products-img:last-child {
    margin-bottom: 0;
}

.moho_best-selling-products-img a img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

.moho_best-selling-products-info h2 {
    margin: 0;
}

.moho_best-selling-products-info h2 a {
    color: #002547;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    font-weight: 400;
}

.moho_best-selling-products-img:hover .moho_best-selling-products-info a {
    color: #FF6B35;
}

.moho_best-selling-products-info span del {
    color: #4c4c4c;
    font-size: 12px;
}

.moho_best-selling-products-info span {
    color: #FF6B35;
    display: flex;
    gap: 10px;
}

.moho_best-selling-products-info span ins {
    color: #002547;
    text-decoration: none;
}

.moho_product-offer {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 32px;
}

.moho_product-offer a img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.moho_offer-products-info h2 {
    margin: 0;
}

.moho_offer-products-info h2 a {
    color: #002547;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    font-weight: 400;
}

.moho_offer-products-info span del {
    color: #4c4c4c;
    font-size: 12px;
}

.moho_offer-products-info span {
    color: #FF6B35;
    display: flex;
    gap: 10px;
}

.moho_offer-products-info span ins {
    color: #002547;
    text-decoration: none;
}

.moho_offer-progress-container {
    width: 100%;
    height: 5px;
    background: #ECF2F8;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.moho_offer-progress-bar {
    position: absolute;
    top: 0;
    right: 0; /* Since it's RTL */
    height: 100%;
    width: 0;
    background: #FF6B35;
    border-radius: 50px;
    transition: width 0.1s linear;
}

.moho_instant-offer-swiper {
    width: 100%;
    overflow: hidden;
}

.moho_product-offer:hover .moho_offer-products-info h2 a {
    color: #FF6B35;
}

.moho_content-archive-product {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
}

.moho_cart-product {
    position: relative;
    cursor: pointer;
}

.moho_inverted-radius {
    --r: 20px;
    --s: 30px;
    --x: 20px;
    --y: 10px;
    width: 285px;
    height: 420px;
    aspect-ratio: 1;
    background: #F9FBFD;
    border-radius: var(--r);
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
    --_g: conic-gradient(from 180deg at var(--r) calc(100% - var(--r)),#0000 25%,#000 0);
    --_d: (var(--s) + var(--r));
    -webkit-mask: calc(var(--_d) + var(--x)) 100% var(--_m),
    0 calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 0 100%,#0000 99%,#000 calc(100% + 1px)) 
     calc(var(--r) + var(--x)) calc(-1*var(--r) - var(--y)),
    var(--_g) calc(var(--_d) + var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask: calc(var(--_d) + var(--x)) 100% var(--_m),
    0 calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 0 100%,#0000 99%,#000 calc(100% + 1px)) 
     calc(var(--r) + var(--x)) calc(-1*var(--r) - var(--y)),
    var(--_g) calc(var(--_d) + var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.moho_img-product {
    width: 265px;
    height: 265px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.moho_img-product a img {
    width: 265px;
    height: 265px;
    object-fit: cover;
}

.moho_info-product {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.moho_info-product span {
    background: #FF6B35;
    color: #E6EEF6;
    padding: 11px 16px;
    border-radius: 50px;
}

.moho_info-product h5 {
    margin: 0;
    background: #FEFFFF;
    color: #ff6b35;
    padding: 11px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moho_inverted-radius h2 a {
    font-size: 18px;
    color: #002547;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    font-weight: 400;
}

.moho_inverted-radius p {
    color: #707070;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 49px;
    margin: 0 0 0 55px;
}

.moho_pricing-product {
    display: flex;
    flex-direction: column;
}

.moho_pricing-product span del {
    font-size: 12px;
    color: #403f3f;
}

.moho_pricing-product span {
    display: flex;
    gap: 8px;
    color: #FF6B35;
}

.moho_pricing-product span ins {
    color: #002547;
    text-decoration: none;
}

.moho_add-to-cart-product {
    position: absolute;
    left: 0;
    bottom: 0;
}

.moho_add-to-cart-product a {
    display: flex;
    background: #F9FBFD;
    width: 63px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px 16px 12px 12px;
}

.moho_add-to-cart-product a i {
    font-size: 24px;
    color: #002547;
}

.moho_cart-product:hover img {
    transform: scale(1.1);
}

.moho_cart-product:hover .moho_inverted-radius h2 a {
    color: #FF6B35;
}

.moho_add-to-cart-product:hover a i {
    color: #FF6B35;
}

.moho_visit-more-items-product {
    width: 100%;
}

.moho_visit-more-items-product button {
    width: 100%;
    color: #ff6b35;
    background-color: #ffffff;
    height: 48px;
    border: 1px solid;
    border-radius: 50px;
}

.moho_cart {
    position: fixed;
    top: 50%;
    right: 5%;
    z-index: 5;
}

.moho_cart a {
    background: #002547;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    position: relative;
}

.moho_cart a i {
    color: #E6EEF6;
    font-size: 35px;
}

.moho_cart:hover {
    transform: scale(1.2);
}

.moho_cart a span {
    position: absolute;
    top: 0px;
    right: 0;
    background: #FF6B35;
    width: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #E6EEF6;
}

/* Hide WooCommerce "View Cart" link after AJAX add to cart */
.added_to_cart.wc-forward {
    display: none !important;
}

/* Sidebar Search Specific */
.moho_search-sidebar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.moho_search-sidebar-wrapper input[type="search"] {
    border: none;
    background: transparent;
    color: #8AB2D7;
    font-size: 16px;
    padding: 0;
    outline: none;
    width: 100%;
}
.moho_search-sidebar-wrapper button {
    background: none;
    border: none;
    color: #0057A8;
    font-size: 22px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.moho_search-sidebar-wrapper input::placeholder {
    color: #8AB2D7;
}

.woocommerce-notices-wrapper {
    display: none;
}

@media screen and (max-width: 768px) {

    .moho_archive-product {
        flex-direction: column;
    }

    .moho_sidebar-archive-product {
        width: 100%;
    }

    .moho_sidebar-items-product-archive {
        width: 100%;
    }

    .moho_single-product-img-desc {
        gap: 40px;
        flex-direction: column;
    }

    .moho_single-product-img {
        flex-direction: row;
    }

}

@media screen and (max-width: 425px) {

    .moho_content-archive-product {
        width: 100%;
    }

    .moho_cart-product {
        width: 100%;
    }

    .moho_inverted-radius {
        width: 100%;
    }

    .moho_img-product {
        width: 100%;
    }

    .moho_img-product a img {
        width: 100%;
        object-fit: none;
    }

    .moho_single-product-img {
        flex-direction: column;
    }

    .moho_slider-single-product {
        flex-direction: row;
        gap: 20px;
        height: 112px;
        overflow-x: auto;
    }

    .moho_single-product-price {
        flex-wrap: wrap;
        gap: 10px;
    }

    .moho_single-product-img img {
        width: 100%;
        height: auto;
    }

    .moho_slider-single-product img {
        width: 80px;
        height: 80px;
    }

}

/* Checkout Styles */

.moho_section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.moho_section-title i {
    color: var(--primary-color);
    font-size: 28px;
}

.moho_card {
    background: #fff;
    padding: 35px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 37, 71, 0.05);
    margin-bottom: 30px;
}

.moho_form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.moho_checkout-wrapper .form-row {
    padding: 0 10px 0 10px;
    margin: 0 0 20px;
}

.moho_checkout-wrapper .form-row label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.moho_checkout-wrapper .input-text, 
.moho_checkout-wrapper select,
.moho_checkout-wrapper textarea {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    height: 54px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fcfdfe;
    width: 100%;
}

.moho_checkout-wrapper .input-text:focus,
.moho_checkout-wrapper select:focus,
.moho_checkout-wrapper textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
    background-color: #fff;
}

.moho_checkout-wrapper textarea {
    height: auto;
    min-height: 120px;
}

/* Order Summary Sidebar */
.moho_order-summary {
    position: sticky;
    top: 30px;
}

.moho_summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.moho_summary-label {
    color: var(--text-muted);
    font-size: 15px;
}

.moho_summary-value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.moho_total-amount {
    background: rgba(255, 107, 53, 0.05);
    margin: 20px -35px -35px;
    padding: 25px 35px;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moho_total-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
}

.moho_total-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
}

.moho_btn-primary,
.moho_checkout-wrapper button#place_order {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 15px;
    padding: 16px 30px;
    font-weight: 700;
    width: 100%;
    font-size: 17px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.moho_btn-primary:hover,
.moho_checkout-wrapper button#place_order:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    color: white;
}

/* Payment Methods */
.moho_payment-methods {
    margin-top: 25px;
}

.moho_payment-methods ul {
    padding: 0;
    list-style: none;
}

.moho_payment-methods li {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.moho_payment-methods li input[type="radio"] {
    display: none;
}

.moho_payment-methods li label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 15px;
    flex-grow: 1;
}

.payment_box {
    width: 100%;
    padding: 15px;
    background: rgba(0, 37, 71, 0.02);
    border-radius: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.moho_payment-methods li.payment_method_selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.03);
}

.moho_product-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.moho_product-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee;
}

.moho_product-info {
    flex-grow: 1;
}

.moho_product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    display: block;
}

.moho_product-meta {
    font-size: 12px;
    color: #888;
}

.moho_product-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Select2 Customization for Checkout */
.moho_checkout-wrapper .select2-container--default .select2-selection--single {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 54px;
    background-color: #fcfdfe;
    display: flex;
    align-items: center;
}

.moho_checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    padding-right: 20px;
}

.moho_checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 54px;
}

/* Checkout Coupon Styles */
.moho_coupon-checkout {
    padding: 20px 35px !important;
}

.moho_coupon-checkout .woocommerce-info {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.moho_coupon-checkout .woocommerce-info::before {
    display: none;
}

.moho_coupon-checkout .showcoupon {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.moho_coupon-checkout form.checkout_coupon {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

/* Thank You Page Styles */
.moho_thankyou-info-item {
    background: #fcfdfe;
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 12px;
}

.woocommerce-order-details {
    margin: 0;
}

.woocommerce-order-details .woocommerce-table--order-details {
    margin-bottom: 0;
    border: none;
    width: 100%;
}

.woocommerce-table--order-details th {
    background: #fcfdfe;
    padding: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-table--order-details td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-table--order-details tfoot th {
    background: #fcfdfe;
    border-top: 1px solid var(--border-color);
}

.woocommerce-table--order-details tfoot td {
    font-weight: 700;
    color: var(--primary-color);
}

.woocommerce-customer-details address {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    font-style: normal;
    background: #fcfdfe;
    margin-top: 15px;
}

.woocommerce-order-details__title {
    display: none;
}

.moho_checkout-wrapper {
    margin-top: 60px;
}

/* --- My Account Styling --- */
:root {
    --moho-primary: #FF6B35;
    --moho-secondary: #002547;
    --moho-bg-light: #F9FBFD;
    --moho-border: #E6EEF6;
    --moho-text-dark: #333333;
    --moho-text-muted: #666666;
    --moho-shadow: 0 10px 30px rgba(0, 37, 71, 0.05);
    --moho-radius: 20px;
}

.moho_account-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.moho_account-sidebar {
    background: #fff;
    border-radius: var(--moho-radius);
    padding: 30px 20px;
    box-shadow: var(--moho-shadow);
    position: sticky;
    top: 20px;
}

.moho_user-profile-card {
    border-bottom: 1px solid var(--moho-border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.moho_user-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.moho_avatar-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.moho_user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--moho-border);
}

.moho_avatar-edit {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--moho-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.moho_avatar-edit:hover {
    transform: scale(1.1);
    background: #e55a2b;
}

.moho_user-name {
    color: var(--moho-secondary);
    font-weight: 700;
    margin-top: 15px;
    font-size: 1.1rem;
}

.moho_user-role {
    font-size: 13px;
    color: var(--moho-text-muted);
}

.moho_nav-item {
    margin-bottom: 8px;
    list-style: none;
}

.moho_nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--moho-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.moho_nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.moho_nav-item.is-active .moho_nav-link,
.moho_nav-link:hover {
    background: rgba(255, 107, 53, 0.08);
    color: var(--moho-primary);
}

.moho_logout-item .moho_nav-link {
    margin-top: 20px;
    border-top: 1px solid var(--moho-border);
    padding-top: 20px;
    border-radius: 0;
}

.moho_logout-item .moho_nav-link:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.moho_welcome-banner {
    background: var(--moho-secondary);
    background-image: linear-gradient(135deg, var(--moho-secondary) 0%, #003a70 100%);
    border-radius: var(--moho-radius);
    padding: 40px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 37, 71, 0.2);
}

.moho_welcome-banner h3 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.moho_welcome-banner p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.8;
}

.moho_stat-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--moho-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--moho-shadow);
    height: 100%;
    transition: transform 0.3s ease;
}

.moho_stat-card:hover {
    transform: translateY(-5px);
}

.moho_stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.moho_stat-icon.orange { background: rgba(255, 107, 53, 0.1); color: var(--moho-primary); }
.moho_stat-icon.navy { background: rgba(0, 37, 71, 0.1); color: var(--moho-secondary); }
.moho_stat-icon.green { background: rgba(40, 167, 69, 0.1); color: #28a745; }

.moho_stat-info {
    flex: 1;
}

.moho_stat-label {
    display: block;
    font-size: 13px;
    color: var(--moho-text-muted);
    margin-bottom: 5px;
}

.moho_stat-value {
    margin: 0;
    font-weight: 800;
    color: var(--moho-secondary);
    font-size: 1.2rem;
}

.moho_stat-value span {
    font-size: 12px;
    font-weight: 400;
    margin-right: 4px;
}

.moho_content-card {
    background: #fff;
    border-radius: var(--moho-radius);
    padding: 30px;
    box-shadow: var(--moho-shadow);
}

.moho_card-title {
    font-weight: 700;
    color: var(--moho-secondary);
    position: relative;
    padding-right: 15px;
}

.moho_card-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--moho-primary);
    border-radius: 2px;
}

.moho_link-more {
    color: var(--moho-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.moho_link-more:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.moho_custom-table {
    margin-top: 10px;
    width: 100%;
}

.moho_custom-table thead th {
    background: var(--moho-bg-light);
    border: none;
    padding: 15px;
    font-weight: 600;
    color: var(--moho-secondary);
    white-space: nowrap;
}

.moho_custom-table thead th:first-child { border-radius: 0 12px 12px 0; }
.moho_custom-table thead th:last-child { border-radius: 12px 0 0 12px; }

.moho_custom-table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--moho-border);
    color: var(--moho-text-dark);
    font-size: 0.95rem;
}

.moho_badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-processing { background: rgba(255, 193, 7, 0.15); color: #856404; }
.status-completed { background: rgba(40, 167, 69, 0.15); color: #155724; }

.moho_btn-table {
    border: 1px solid var(--moho-border);
    padding: 7px 18px;
    border-radius: 10px;
    color: var(--moho-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.moho_btn-table:hover {
    background: var(--moho-secondary);
    color: #fff !important;
    border-color: var(--moho-secondary);
}

.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info {
    border: none;
    background: var(--moho-bg-light);
    padding: 25px;
    border-radius: var(--moho-radius);
    color: var(--moho-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content .woocommerce-message .button,
.woocommerce-MyAccount-content .woocommerce-info .button {
    order: 2;
    margin-right: auto;
}

.woocommerce-pagination .moho_btn-primary {
    margin-top: 0;
    font-size: 14px;
}

.woocommerce-MyAccount-downloads-file i {
    font-size: 14px;
    vertical-align: middle;
}

.moho_custom-table td.download-product a {
    color: var(--moho-secondary);
    font-weight: 700;
    text-decoration: none;
}

.moho_custom-table td.download-product a:hover {
    color: var(--moho-primary);
}

/* --- Addresses Styling --- */
.moho_address-box {
    background: var(--moho-bg-light);
    border: 1px solid var(--moho-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.moho_address-box:hover {
    border-color: var(--moho-primary);
    box-shadow: var(--moho-shadow);
    transform: translateY(-3px);
}

.moho_address-title {
    color: var(--moho-secondary);
    font-weight: 700;
    font-size: 16px;
}

.moho_address-title i {
    color: var(--moho-primary);
}

.moho_address-content address {
    margin-bottom: 0;
    font-style: normal;
    color: var(--moho-text-muted);
    line-height: 1.8;
    font-size: 14px;
}

/* --- Account Form Styling --- */
.moho_account-form .moho_form-label {
    font-weight: 600;
    color: var(--moho-secondary);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.moho_account-form .input-text {
    border-radius: 12px;
    border: 1px solid var(--moho-border);
    padding: 12px 20px;
    height: 52px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--moho-bg-light);
    width: 100%;
}

.moho_account-form .input-text:focus {
    border-color: var(--moho-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
    background-color: #fff;
}

.moho_account-form fieldset {
    border: 1px solid var(--moho-border);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.moho_account-form fieldset legend {
    font-weight: 700;
    color: var(--moho-secondary);
    padding: 0 15px;
    font-size: 16px;
}

.moho_account-form .moho_btn-primary {
    padding: 12px 40px;
    height: auto;
    width: auto !important;
}

/* --- Password Fields Enhancement --- */
.woocommerce-form-row {
    position: relative;
}

.show-password-input {
    position: absolute;
    top: calc(50% + 15px);
    left: 15px; /* RTL position */
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--moho-text-muted);
    z-index: 10;
}

.show-password-input::after {
    content: "\ea3f"; /* iconsax eye */
    font-family: 'iconsax-outline' !important;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.show-password-input.display-password::after {
    content: "\ea40"; /* iconsax eye-slash */
}

/* Password Strength Meter */
.woocommerce-password-strength {
    background: var(--moho-bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.woocommerce-password-strength.strong { color: #28a745; background: rgba(40, 167, 69, 0.1); }
.woocommerce-password-strength.short { color: #dc3545; background: rgba(220, 53, 69, 0.1); }
.woocommerce-password-strength.bad { color: #ffc107; background: rgba(255, 193, 7, 0.1); }
.woocommerce-password-strength.good { color: #002547; background: rgba(0, 37, 71, 0.1); }

.woocommerce-password-hint {
    font-size: 12px;
    color: var(--moho-text-muted);
    margin-top: 8px;
    display: block;
    line-height: 1.6;
}

/* --- Login/Register Form Specifics --- */
.woocommerce-form-login .woocommerce-form__input-checkbox {
    margin-left: 8px; /* RTL spacing */
    vertical-align: middle;
}

.woocommerce-privacy-policy-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--moho-text-muted);
}

.woocommerce-privacy-policy-link {
    color: var(--moho-primary);
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-privacy-policy-link:hover {
    text-decoration: underline;
}

.woocommerce-address-fields__field-wrapper .form-row {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.woocommerce-address-fields__field-wrapper .form-row label {
    font-weight: 600;
    color: var(--moho-secondary);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.woocommerce-address-fields__field-wrapper .form-row .input-text,
.woocommerce-address-fields__field-wrapper .form-row select {
    border-radius: 12px;
    border: 1px solid var(--moho-border);
    padding: 12px 20px;
    height: 52px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--moho-bg-light);
    width: 100%;
}

.woocommerce-address-fields__field-wrapper .form-row .input-text:focus,
.woocommerce-address-fields__field-wrapper .form-row select:focus {
    border-color: var(--moho-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
    background-color: #fff;
}

.woocommerce-address-fields__field-wrapper .form-row.col-md-6 {
    float: right;
    padding-left: 10px;
}

.woocommerce-address-fields__field-wrapper .form-row.col-md-6:nth-child(even) {
    padding-left: 0;
    padding-right: 10px;
}

/* --- View Order Styling --- */
.moho_card-title mark {
    background: transparent;
    color: var(--moho-primary);
    font-weight: 800;
}

.woocommerce-order-details__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--moho-secondary);
    margin: 30px 0 20px;
    padding-right: 15px;
    position: relative;
}

.woocommerce-order-details__title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--moho-primary);
    border-radius: 2px;
}

.moho_custom-table tfoot th {
    background: var(--moho-bg-light);
    border-color: var(--moho-border);
    color: var(--moho-secondary);
    font-weight: 700;
}

.moho_custom-table tfoot td {
    color: var(--moho-primary);
    font-weight: 700;
    text-align: left;
}

[dir="rtl"] .moho_custom-table tfoot td {
    text-align: left;
}

.woocommerce-customer-details {
    margin-top: 40px;
}

.woocommerce-customer-details h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--moho-secondary);
    margin-bottom: 20px;
}

.last-child-border-0:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.woocommerce-OrderUpdate-description p:last-child {
    margin-bottom: 0;
}

.woocommerce-form-login .moho_btn-primary,
.woocommerce-form-register .moho_btn-primary {
    width: 100% !important;
    padding: 14px;
    font-size: 16px;
}

@media (max-width: 991px) {
    .moho_account-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .moho_welcome-banner {
        padding: 30px;
        text-align: center;
    }
}

.woocommerce-column--billing-address {
    width: 100% !important;
}

body > section > div > div.moho_checkout-wrapper > div > div > div.row > div.col-lg-4 > div.moho_card > section > section > div.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
    width: 100% !important;
}