:root {
    --primary-color: #7d266d;
    --primary-light: rgba(18, 75, 99, 0.05);
    --primary-hover: #0e3a4d;
    --text-color: #222;
    --text-light: #555;
    --white: #fff;
    --border-light: #eaeaea;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 3px 10px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.25s ease;
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --accent-color: #ff6b4a;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #1a6b8f 100%);
}








main {
	padding: 50px 0
		background: white;
}

figure {
	padding: 10px 5px 20px 5px;
	border: solid 1px #3993b5;
	border-radius: 5px
}

.single img,
figure img {
	max-width: 100%
}


.rtl {
	direction: rtl
}

.ltr {
	direction: ltr
}



.align-center {
	text-align: center !important
}

.hidden {
	display: none
}

.container {
	max-width: 1200px
}


/**
 * CSS for the single-product.php template
 * Add this to your theme's style.css or create a separate stylesheet
 */

/* Main Product Container */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

/* Product Main Section Layout */
.product-main {
    margin-bottom: 60px;
}

.product-main .row {
    display: flex;
    flex-wrap: wrap;
}

.product-main .col-md-6 {
    width: 50%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .product-main .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Product Gallery */
.product-gallery .woocommerce-product-gallery {
    margin-bottom: 0;
}

.product-gallery .woocommerce-product-gallery__image {
    border-radius: 8px;
    overflow: hidden;
}

/* Product Summary */
.product-summary {
    padding-left: 30px;
}

.product-summary .product_title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-summary .price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.product-summary .woocommerce-product-details__short-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-summary .cart {
    margin-bottom: 30px;
}

.product-summary .quantity .qty {
    width: 70px;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.product-summary .single_add_to_cart_button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-summary .single_add_to_cart_button:hover {
    background-color: #2980b9;
}

.product-summary .product_meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
}

.product-summary .product_meta > span {
    display: block;
    margin-bottom: 8px;
}

/* Product Tabs */
.product-details-tabs {
    margin-bottom: 60px;
}

.woocommerce-tabs ul.tabs {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    border-bottom: 1px solid #eee;
}

.woocommerce-tabs ul.tabs li {
    margin-right: 30px;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #3498db;
    border-bottom-color: #3498db;
}

.woocommerce-tabs .panel {
    padding: 20px 0;
}

.woocommerce-tabs .panel h2:first-child {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Related Products Section */
.related-products-section {
    margin-bottom: 60px;
}

.related-products-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

.related-product {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.related-product:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-product img {
    border-radius: 6px;
    margin-bottom: 15px;
}

.related-product h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.related-product .price {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.related-product .button {
    background-color: #3498db;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s;
}

.related-product .button:hover {
    background-color: #2980b9;
}







/*header*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   
    color: var(--text-color);
    margin: 0;
    padding: 0;
    direction: rtl;
    line-height: 1.6;
}

.svg-icon {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    fill: currentColor;
    vertical-align: middle;
	color:#333;
}

/* Header Styles - Enhanced */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.main-header.scrolled {
    padding: 5px 0;
}

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
}

.scrolled .header-wrapper {
    height: 70px;
}



/* Logo Container - Enhanced */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container img {
    max-height: 60px;
    width: auto;
}

.logo-container a {
    display: block;
    overflow: hidden;
    position: relative;
}





.woocommerce-form .form-row {
    margin-bottom: 22px;
}

.woocommerce-form input[type="text"],
.woocommerce-form input[type="email"],
.woocommerce-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.woocommerce-form input[type="text"]:focus,
.woocommerce-form input[type="email"]:focus,
.woocommerce-form input[type="password"]:focus {
    border-color: #3a7cbd;
    box-shadow: 0 0 0 2px rgba(58, 124, 189, 0.2);
    background-color: #fff;
}

.woocommerce-button.button {
    background: #3a7cbd;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(58, 124, 189, 0.2);
}

.woocommerce-button.button:hover {
    background: #2c5c8e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(58, 124, 189, 0.3);
}









        
   /* حاوية حقل الكمية */
        .quantity {
            display: inline-flex;
            align-items: center;
            height: 40px;
            margin: 0 8px 0 8px;
            border: 1px solid #d2d2d2;
            border-radius: 4px;
            overflow: hidden;
            background: #fff;
        }
        
        /* أزرار الزيادة والنقصان */
        .quantity button.qty-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 40px;
            border: none;
            color: #000;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            background: transparent;
            transition: background 0.2s;
            padding: 0;
        }
        
        
        /* حقل الإدخال */
        .quantity .qty {
            width: 45px !important;
            height: 40px !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            text-align: center !important;
        }
        
        /* إخفاء أزرار الزيادة والنقصان الافتراضية في المتصفح */
        .quantity .qty::-webkit-outer-spin-button,
        .quantity .qty::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        .quantity .qty[type=number] {
            -moz-appearance: textfield;
        }














.single-product .product-page {
    color: var(--color-text);
    padding: 20px 0;
}



.breadcrumbs-container {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumbs-container a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-container a:hover {
    color: var(--color-primary);
}

/* Product Layout */
.single-product .product-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .single-product .product-layout {
        grid-template-columns: 1fr;
    }
}

/* Product Gallery */
.single-product .product-gallery-section {
    position: relative;
}

.single-product .gallery-container {
    position: inherit;
    width: 75%;
    height: 75%;
}

.single-product .sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.single-product .main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.single-product .main-product-img {
    width: 42%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.single-product .main-image-wrapper:hover .main-product-img {
    transform: scale(1.05);
}

.single-product .thumbnails-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg-light);
}

.single-product .thumbnails-slider::-webkit-scrollbar {
    height: 6px;
}

.single-product .thumbnails-slider::-webkit-scrollbar-track {
    background: var(--color-bg-light);
    border-radius: 10px;
}

.single-product .thumbnails-slider::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
}

.single-product .thumb {
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.single-product .thumb.active {
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.single-product .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.single-product .product-info-section {
    display: flex;
    flex-direction: column;
}

.single-product .product-category-wrapper {
    margin-bottom: 10px;
}

.single-product .product-category-wrapper a {
    color: var(--color-text-light);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.single-product .product-category-wrapper a:hover {
    color: var(--color-primary);
}

.single-product .product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
    line-height: 1.2;
}

.single-product .rating-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.single-product .stars-rating {
    display: flex;
    gap: 5px;
    margin-left: 10px;
}

.single-product .star {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.single-product .star:before {
    content: "★";
    position: absolute;
    color: #e2e8f0;
    font-size: 20px;
}

.single-product .star.filled:before {
    color: var(--color-accent);
}

.single-product .star.half:before {
    background: linear-gradient(to right, var(--color-accent) 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-product .reviews-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.single-product .reviews-link:hover {
    color: var(--color-primary);
}

.single-product .price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 5px;
}

.single-product .price-old {
    text-decoration: line-through;
    color: var(--color-text-lighter);
    font-size: 18px;
}

.single-product .price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
}

.single-product .price-current.on-sale {
    color: var(--color-secondary);
}

.single-product .currency {
    font-size: 20px;
    font-weight: normal;
}

.single-product .discount-percentage {
    background-color: var(--color-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-product .product-brief {
    margin: 0px;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 9px;
}



.single-product .info-row {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--color-text-light);
}

.single-product .info-label {
    font-weight: 600;
    color: var(--color-text);
    margin-left: 5px;
}

.single-product .social-share {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.single-product .share-buttons {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.single-product .share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.single-product .share-button:hover {
    transform: translateY(-3px);
}



/* Product Tabs */
.single-product .product-details-tabs {
    margin: 50px 0;
}

.single-product .tabs-wrapper {
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.single-product .tabs-nav {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
    background: linear-gradient(to left, #f8f9fa, #ffffff);
    padding: 0;
    width: 250px;
    float: right;
}

.single-product .tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
    text-align: right;
    width: 100%;
}

.single-product .tab-btn:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--color-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.single-product .tab-btn:hover {
    color: var(--color-primary);
    background-color: rgba(58, 134, 255, 0.05);
}

.single-product .tab-btn.active {
    color: var(--color-primary);
    background-color: rgba(58, 134, 255, 0.1);
}

.single-product .tab-btn.active:after {
    transform: scaleY(1);
}

.single-product .tabs-content {
    padding: 25px;
    flex: 1;
}

.single-product .tab-pane {
    display: none;
}

.single-product .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.single-product .description-content,
.single-product .additional-content {
    line-height: 1.8;
    color: var(--color-text);
}

/* Reviews */
.single-product .reviews-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .single-product .reviews-summary {
        grid-template-columns: 1fr;
    }
}

.single-product .reviews-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-product .overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.single-product .rating-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.single-product .rating-stars {
    display: flex;
    gap: 5px;
    margin: 15px 0;
}

.single-product .rating-count {
    font-size: 14px;
    color: var(--color-text-light);
}

.single-product .rating-breakdown {
    padding: 25px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.single-product .rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single-product .stars-label {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.single-product .star-icon:after {
    content: "★";
    color: var(--color-accent);
    margin-right: 5px;
}

.single-product .progress-bar {
    flex: 1;
    height: 10px;
    background-color: var(--color-border);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 15px;
}

.single-product .progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary-light), var(--color-primary));
    border-radius: 5px;
    transition: width 0.5s ease;
}

.single-product .rating-value {
    width: 40px;
    text-align: left;
    font-weight: 600;
}

/* Related Products */
.single-product .related-products {
    margin: 50px 0;
}

.single-product .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.single-product .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(to left, var(--color-primary), var(--color-primary-light));
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
    .single-product .product-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .single-product .product-page {
        padding: 15px 0;
    }
    
    .single-product .product-layout {
        gap: 20px;
    }
    
    .single-product .main-image-wrapper {
		height: auto;
    width: 135%;
    }
    
    .single-product .product-title {
        font-size: 24px;
    }
    
    .single-product .price-current {
        font-size: 28px;
    }
    
    .single-product .tabs-wrapper {
        flex-direction: column;
    }
    
    .single-product .tabs-nav {
        width: 100%;
        float: none;
        border-left: none;
    }
    
    .single-product .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .single-product .tab-btn:after {
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
    }
    
    .single-product .tabs-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .single-product .main-image-wrapper {
        height: auto;
		width: 135%;
    }
    
    .single-product .thumb {
        min-width: 60px;
        height: 60px;
    }
}






#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
 
  background-color: var(--primary-color);
}

















input[type="email"], input[type="date"], input[type="search"], input[type="number"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
  padding: 15px;
  max-width: 100%;
  width: 100%;
  height: var(--wd-form-height);
  border: none;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: none;
  color: var(--wd-form-color);
  vertical-align: middle;
  font-size: 14px;
  transition: border-color .5s ease;
}




     

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 15px;
	border-bottom: 2px solid #7b256b;
    position: relative;
}

.category-header .section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: #7d266d;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: #7d266d;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 8px 20px;
border: 2px solid #7b256b;;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    background-color: #7d266d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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


























.modern-dashboard {
  max-width: 700px;
  padding: 20px;
  font-family: 'Cairo', sans-serif;
  color: #2c3e50;
}
.dashboard-header {
  text-align: center;
  margin-bottom: 25px;
}
.dashboard-header h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 5px;
}
.dashboard-header .subtitle {
  color: #666;
  font-size: 14px;
}

/* بطاقة الرصيد */
.wallet-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #7d266d, #9b4f9c);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(125,38,109,0.3);
  text-decoration: none;
  transition: 0.3s ease;
}
.wallet-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(125,38,109,0.35);
}
.wallet-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallet-svg {
  width: 42px;
  height: 42px;
  display: block;
}
.wallet-info {
  flex: 1;
  text-align: right;
}
.wallet-label {
  font-size: 14px;
  opacity: 0.9;
}
.wallet-balance {
  font-size: 22px;
  font-weight: bold;
  margin: 5px 0 0;
}

/* روابط الحساب */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.dash-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.dash-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  background: #f9faff;
}
.icon-svg {
  width: 28px;
  height: 28px;
  color: #7d266d;
  flex-shrink: 0;
}
.dash-card h4 {
  font-size: 16px;
  margin: 0;
  color: #222;
}
.dash-card p {
  font-size: 13px;
  color: #777;
  margin: 2px 0 0;
}
.logout {
  background: #fff4f4;
  border: 1px solid #ffe0e0;
}
.logout .icon-svg {
  color: #c0392b;
}
.logout:hover {
  background: #ffeaea;
}

/* الهاتف */
@media (max-width: 480px) {
  .wallet-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    padding: 14px 18px;
  }
  .wallet-icon {
    margin-left: 0;
    margin-bottom: 0;
  }
  .wallet-svg {
    width: 36px;
    height: 36px;
  }
  .wallet-info {
    text-align: left;
  }
}





.select2-container .select2-dropdown, .select2-container .select2-selection {
  background-color: var(--wc-form-color-background,#fff);
  border: var(--wc-form-border-width,1px) solid rgb(235, 237, 240);
	border-radius: 10px;
  padding: 17px;
	width: 78%;
}







