/* export-market.css */

.export-section {
  padding: 10px 20px 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.export-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  color: #1F2A44;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.export-section p.subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
}

/* Tabs Navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 20px;
}

.tab-btn {
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #cbd5e0;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
  background: #edf2f7;
  color: #1F2A44;
  border-color: #a0aec0;
}

.tab-btn.active {
  background: #F57C00;
  color: white;
  border-color: #F57C00;
  box-shadow: 0 4px 6px rgba(245, 124, 0, 0.2);
}

/* Search Bar styling */
.search-wrapper {
  max-width: 480px;
  margin: 0 auto 40px auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 2px solid #cbd5e0;
  border-radius: 30px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: #0594ec;
  box-shadow: 0 0 0 3px rgba(5, 148, 236, 0.15);
}

.search-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
}

/* Region content container */
.region-content {
  display: none;
  animation: tabFadeIn 0.35s ease;
}

.region-content.active {
  display: block;
}

/* Countries Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.country-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.country-item:hover {
  transform: translateY(-2px);
  border-color: #0594ec;
  background: #f0f9ff;
  color: #0594ec;
  box-shadow: 0 4px 6px rgba(5, 148, 236, 0.08);
}

.country-item.hidden {
  display: none !important;
}

/* Back to Top Floating Button styles if any */
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
  .export-section h2 {
    font-size: 32px;
  }
  
  .export-section p.subtitle {
    font-size: 16px;
  }
  
  .tab-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
