.payment-section {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  /* Mobile dropdown */
  .country-selector {
    position: relative;
    min-width: 250px;
    display: block;
  }
  
  .selected-country {
    position: relative;
    padding: 10px 15px;
    background: var(--color-white-true);
    color: var(--color-text);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
  }
  
  .selected-country img {
    width: 24px;
    height: auto;
  }
  
  .country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100;
  }

  .selected-country::after{
    content: "\276F";
    position: absolute;
    right: 24px;
    top: 24px;
    color: var(--color-text);
    transform: rotateZ(90deg);
  }
  
  .country-dropdown.show {
    display: block;
  }
  
  .region-group {
    border-bottom: 1px solid #eee;
  }
  
  .region-title {
    padding: 8px 15px;
    background: #f5f5f5;
    font-weight: bold;
    color: #555;
  }
  
  .country-option {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .country-option:hover {
    background: #f0f7ff;
  }
  
  .country-option img {
    width: 20px;
    height: auto;
  }
  
  #countryHeader {
    color: #0056b3;
    font-size: 1.5rem;
    margin: 0;
  }
  
  #methodsGridContainer {
    margin-top: 20px;
  }
  
  /* Desktop country buttons */
  .country-buttons {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .country-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.5s ease;
    min-width: 200px;
    justify-content: center;
    background: var(--color-white-true);
    height: 64px;
  }
  
  .country-button:hover {
    background: rgba(173, 66, 244, 0.1);
    color:var(--color-secondary);
    
  }
  
  .country-button.active {
    background: var(--color-primary);
    color: var(--color-white);
  }
  
  .country-button img {
    width: 24px;
    height: auto;
  }

  .country-headline{
    margin: var(--space-xl) 0;
  }
  
  .search-bar {
    flex: 1;
    min-width: 250px;
    margin: var(--space-md) 0 var(--space-md) 0;
  }
  
  .search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
  }
  
  .methods-container {
    padding: 20px;
  }
  
  .type-section {
    margin-bottom: 30px;
  }
  
  .type-header {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-light-gray);
  }
  
  .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .method-card {
    /*
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    */
    transition: transform 0.2s;
  }
  
  .method-card:hover {
    transform: translateY(-3px);
  }
  
  .method-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }
  
  .method-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .method-name {
    text-align: center;
    font-weight: 400;
    color: var(--color-gray);
  }
  
  .no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
  }
  
  /* Desktop styles */
  @media (min-width: 768px) {
    .country-selector {
      display: none;
    }
  
    .country-buttons {
      display: flex;
    }
  
    .methods-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  /* Mobile styles */
  @media (max-width: 767px) {
    .section-header {
      flex-direction: column;
      align-items: stretch;
    }
  
    .methods-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  }
  
  .search-bar{
    display: none;
  }