.qlk-commerce-hide{
    display: none !important;
}

.qlk-commerce-error{
    color: #E74C3C;
}

.woocommerce-cart-form .eael-cart-coupon-wrapper .coupon {
    display: none !important;
}



/* 2FA Status Component */

.qlk-commerce-2fa-container {
    max-width: 800px;
    margin: 40px auto 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .qlk-commerce-2fa-section {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
  }
  
  .qlk-commerce-2fa-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .qlk-commerce-2fa-section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
  }
  
  .qlk-commerce-2fa-section-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .qlk-commerce-2fa-section-content {
    flex: 1;
  }
  
  .qlk-commerce-2fa-section-content h3 {
    font-family: 'Presicav', sans-serif;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #000000;
  }
  
  .qlk-commerce-2fa-info {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0 0 12px 0;
  }
  
  .qlk-commerce-2fa-info:last-child {
    margin-bottom: 0;
  }
  
  .qlk-commerce-2fa-info strong {
    color: #000000;
    font-weight: bold;
  }
  
  /* 2FA Status Badges */
  
  .qlk-commerce-2fa-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Presicav', sans-serif;
  }
  
  .qlk-commerce-2fa-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .qlk-commerce-2fa-enabled {
    background: #E8F5E9;
    color: #2E7D32;
  }
  
  .qlk-commerce-2fa-enabled .qlk-commerce-2fa-badge-dot {
    background: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  }
  
  .qlk-commerce-2fa-disabled {
    background: #FFF3E0;
    color: #E65100;
  }
  
  .qlk-commerce-2fa-disabled .qlk-commerce-2fa-badge-dot {
    background: #E65100;
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.2);
  }
  
  /* 2FA Buttons */
  
  .qlk-commerce-2fa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Presicav', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 8px;
    cursor: pointer;
  }
  
  .qlk-commerce-2fa-button-primary {
    background: #EB0578;
    color: #ffffff !important;
    border: 2px solid #EB0578;
  }
  
  .qlk-commerce-2fa-button-primary:hover {
    background: #a72550;
    border-color: #a72550;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(235, 5, 120, 0.3);
  }
  
  .qlk-commerce-2fa-button-secondary {
    background: #ffffff;
    color: #000000 !important;
    border: 2px solid #000000;
  }
  
  .qlk-commerce-2fa-button-secondary:hover {
    background: #000000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Last Login Section */
  
  .qlk-commerce-last-login .qlk-commerce-2fa-section-icon {
    background: #E3F2FD;
    color: #1565C0;
  }
  
  /* Responsive Design */
  
  @media (max-width: 768px) {
    .qlk-commerce-2fa-container {
      margin: 20px 0;
      padding: 0 10px;
    }
  
    .qlk-commerce-2fa-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .qlk-commerce-2fa-section-icon {
      width: 40px;
      height: 40px;
    }
  
    .qlk-commerce-2fa-section-icon svg {
      width: 20px;
      height: 20px;
    }
  
    .qlk-commerce-2fa-button {
      width: 100%;
    }
  }