.brand-card .row {
  padding: 1.5rem;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  border-radius: 0.5rem;
  margin: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Grid */
.brand-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Base Card */
.info-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Titles */
.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title svg,
.title-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  flex-shrink: 0;
}

/* Card Body Text */
.card-text {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

/* Download Card */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.download-link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Country Card */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  line-height: 1rem;
}

.country-flag {
  font-size: 1.75rem;
  margin-left: auto;
}

.moq-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
}

/* Restrictions Card */
.restrictions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.restriction-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.restriction-icon {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.restriction-forbidden .restriction-text {
  color: #dc2626;
}
.restriction-limited .restriction-text {
  color: #d97706;
}
.restriction-allowed .restriction-text {
  color: #059669;
}
