.lang-element {
    display: none !important;
}

html[lang="en"] .lang-en,
html[lang="ar"] .lang-ar,
html[lang="zh"] .lang-zh {
    display: initial !important;
}

html[lang="ar"] body {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

html[lang="zh"] body {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
}

html[dir="rtl"] {
    direction: rtl;
}

:root {
    --color-primary: #059669;
    --color-primary-dark: #047857;
}

body {
    color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-primary-dark {
    color: var(--color-primary-dark) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-primary-dark {
    background-color: var(--color-primary-dark) !important;
}

.hover\:text-primary:hover {
    color: var(--color-primary) !important;
}

.hover\:bg-primary-dark:hover {
    background-color: var(--color-primary-dark) !important;
}

.focus\:border-primary:focus {
    border-color: var(--color-primary) !important;
}

.focus\:ring:focus {
    box-shadow: 0 0 0 3px rgba(5,150,105,0.5) !important;
}

.focus\:ring-opacity-50:focus {
    --tw-ring-opacity: .5 !important;
}

/* Page-specific styles from coconut-briquette-charcoal.html */
.charcoal-specs-container {
  max-width: 800px;
  margin: 20px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.spec-title {
  color: #2c3e50;
  font-size: 1.25rem;
  margin-top: 25px;
  margin-bottom: 12px;
  border-bottom: 2px solid #27ae60;
  padding-bottom: 5px;
  display: inline-block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table th, .spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #eef0f2;
}

.spec-table th {
  background-color: #f8f9fa;
  color: #333333;
  width: 35%;
  font-weight: 600;
}

.spec-table td {
  color: #555555;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover {
  background-color: #f1f8f4;
  transition: background-color 0.2s ease;
}

@media (max-width: 600px) {
  .spec-table th, .spec-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .spec-table th {
    width: 40%;
  }
}
