/* Mobile navbar styles */
.mobile-navbar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.mobile-navbar a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.mobile-navbar img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease-in-out;
}

.mobile-navbar span {
    font-size: 12px;
    margin-top: 5px;
    color: white;
}

.home-container {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.mobile-navbar a:hover {
    transform: scale(1.1);
}

.home-container:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.4);
}

.mobile-navbar a.active {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
}

.support-dropdown {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 180px;
}

.support-dropdown a {
    display: block;
    color: black;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.1);
}

.support-dropdown a:hover {
    background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .mobile-navbar {
        display: none;
    }
}

/* Wallet styles */
.handcrafted-wallet-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.handcrafted-wallet-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.handcrafted-wallet-balance-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.handcrafted-wallet-label {
    font-size: 14px;
    color: #6c757d;
}

.handcrafted-wallet-amount {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.handcrafted-wallet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.handcrafted-wallet-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.handcrafted-wallet-button:hover {
    background: #0069d9;
    transform: translateY(-2px);
}

.wallet-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.wallet-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.woo-wallet-add-amount {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.amount-suggestion {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amount-chip {
    padding: 8px 12px;
    background: #e9ecef;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-chip:hover {
    background: #dee2e6;
}

.currency-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-icon i {
    position: absolute;
    left: 10px;
    color: #6c757d;
}

.woo-wallet-balance-to-add {
    width: 100%;
    padding: 10px 15px 10px 35px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.woo-add-to-wallet {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.woo-add-to-wallet:hover {
    background-color: #218838;
}

/* Variation buttons styles */
.variation-options-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #33495c;
    border-radius: 15px;
}

.variation-attribute-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    color: #fff;
}

.variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variation-buttons label {
    flex: 0 0 auto;
    min-width: 80px;
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: #123663;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    color: #fff;
}

.variation-buttons label:hover {
    border-color: #ddd;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.variation-buttons label.active {
    background-color: #6366f1;
    color: white;
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.variation-buttons label.active:before {
    content: "✓";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    background-color: white;
    color: #6366f1;
    border-radius: 50%;
}

.variation-reset {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #6366f1;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
}

.variation-reset:hover {
    text-decoration: underline;
    color: #4f46e5;
}

.variation-buttons label.unavailable {
    background-color: #f9f9f9;
    color: #bbb;
    border-color: #eee;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.7;
}

.selected-variations-summary {
    margin: 15px 0;
    padding: 12px 15px;
    background-color: black;
    border-radius: 10px;
    border-left: 3px solid #6366f1;
    font-size: 14px;
    display: none;
    color: #fff;
}

.selected-variations-summary.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.price-summary {
    margin-top: 15px;
    padding: 12px;
    background-color: #123663;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.price-summary .price-label {
    font-weight: 600;
}

.price-summary .price-value {
    font-weight: 700;
    color: #6366f1;
    font-size: 18px;
}

/* Cards container styles */
.cards-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #09345e;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: #fff;
}

.cards-container h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.custom-btn {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.custom-btn-primary {
    background: #2ecc71;
    color: #fff;
}

.custom-btn-primary:hover {
    background: #27ae60;
}

.custom-btn-secondary {
    background: #3498db;
    color: #fff;
}

.custom-btn-secondary:hover {
    background: #2980b9;
}

.custom-btn-action {
    background: #f39c12;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
}

.custom-btn-action:hover {
    background: #e67e22;
}

.cards-container ul {
    list-style-type: none;
    padding: 0;
}

.card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.notification-popup {
    visibility: hidden;
    width: auto;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 8px 15px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(10px);
}

.notification-popup.show {
    visibility: visible;
    animation: slideIn 2.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(10px); }
    15% { opacity: 1; transform: translateX(0); }
    85% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(10px); }
}

@media (max-width: 767px) {
    .variation-buttons label {
        min-width: calc(33.33% - 8px);
        padding: 10px 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .variation-buttons label {
        min-width: calc(50% - 8px);
    }
}




.woo-wallet-my-wallet-container .woo-wallet-sidebar {
 
  display: none;
}

.woo-wallet-my-wallet-container {

  border: none;!important
}

/* إخفاء أسهم الزيادة والنقصان من حقول الإدخال الرقمية */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}


