/* ====================================================================
   📊 FREQUENCY GUIDE - مؤشر التكرار
   ==================================================================== */

/* ===== HERO ===== */
.freq-hero {
  background: linear-gradient(135deg, #0a1f14 0%, #1a3d2b 50%, #0f2a1c 100%);
  padding: 70px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.freq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.6' opacity='0.12'%3E%3Cpath d='M50 0 L50 100 M0 50 L100 50'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px;
  pointer-events: none;
}

.freq-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.freq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.freq-hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  color: #e8c96a;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.freq-hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(36px, 6vw, 56px);
  color: #ffffff;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.freq-hero-tagline {
  font-family: 'Amiri', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #e8c96a;
  margin: 0 0 16px;
  font-weight: 700;
}

.freq-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PYRAMID ===== */
.freq-pyramid-section {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 24px;
  text-align: center;
}

.freq-section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--green-dark);
  margin: 0 0 8px;
  font-weight: 700;
}

.freq-section-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 32px;
}

.freq-pyramid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.freq-level {
  border-radius: 14px;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.freq-level:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.freq-level::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.95;
  z-index: 0;
}

.freq-level-content {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  text-align: right;
}

.freq-level-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.freq-level-info {
  flex: 1;
}

.freq-level-name {
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.freq-level-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Level 1: Daily (base - largest, full width) */
.freq-level-1 {
  background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
  width: 100%;
}

/* Level 2: Weekly (smaller) */
.freq-level-2 {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
  width: 80%;
  margin: 0 auto;
}

.freq-level-2 .freq-level-name,
.freq-level-2 .freq-level-count {
  color: #1a3d2b;
}

/* Level 3: Sometimes */
.freq-level-3 {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  width: 60%;
  margin: 0 auto;
}

/* Level 4: Never (top - smallest) */
.freq-level-4 {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  width: 40%;
  margin: 0 auto;
}

/* ===== CARDS SECTION ===== */
.freq-cards-section {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 24px;
}

.freq-card {
  background: white;
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}

.freq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.freq-card-daily {
  border-color: rgba(82, 183, 136, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0faf4 100%);
}

.freq-card-weekly {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fdf6e3 100%);
}

.freq-card-sometimes {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f5f0fc 100%);
}

.freq-card-never {
  border-color: rgba(192, 57, 43, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fff0f0 100%);
}

.freq-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.freq-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Amiri', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.freq-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.freq-dot-daily { background: #52b788; box-shadow: 0 0 12px rgba(82, 183, 136, 0.6); }
.freq-dot-weekly { background: #c9a84c; box-shadow: 0 0 12px rgba(201, 168, 76, 0.6); }
.freq-dot-sometimes { background: #8b5cf6; box-shadow: 0 0 12px rgba(139, 92, 246, 0.6); }
.freq-dot-never { background: #c0392b; box-shadow: 0 0 12px rgba(192, 57, 43, 0.6); }

.freq-card-count {
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}

.freq-card-tagline {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.freq-card-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 60px;
}

.freq-item-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.freq-item-chip:hover {
  transform: translateY(-1px);
  border-color: var(--green-mid);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.freq-card-daily .freq-item-chip:hover { border-color: #52b788; }
.freq-card-weekly .freq-item-chip:hover { border-color: #c9a84c; }
.freq-card-sometimes .freq-item-chip:hover { border-color: #8b5cf6; }
.freq-card-never .freq-item-chip:hover { border-color: #c0392b; }

.freq-card-link {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.freq-card-daily .freq-card-link {
  background: #2d6a4f;
  color: white;
}

.freq-card-weekly .freq-card-link {
  background: #c9a84c;
  color: #1a3d2b;
}

.freq-card-sometimes .freq-card-link {
  background: #8b5cf6;
  color: white;
}

.freq-card-never .freq-card-link {
  background: #c0392b;
  color: white;
}

.freq-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.freq-loading {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== CTA ===== */
.freq-cta-section {
  max-width: 800px;
  margin: 80px auto 60px;
  padding: 0 24px;
}

.freq-cta-card {
  background: linear-gradient(135deg, #1a3d2b 0%, #2d6a4f 100%);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 14px 50px rgba(26, 61, 43, 0.25);
  position: relative;
  overflow: hidden;
}

.freq-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.freq-cta-card h3 {
  font-family: 'Amiri', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  margin: 0 0 12px;
  color: #e8c96a;
  position: relative;
  z-index: 1;
}

.freq-cta-card p {
  font-size: 15px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.freq-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
  color: #1a3d2b;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.freq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.55);
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .freq-hero {
    padding: 50px 16px 70px;
  }

  .freq-pyramid-section,
  .freq-cards-section,
  .freq-cta-section {
    padding: 0 16px;
  }

  .freq-card {
    padding: 22px 20px;
  }

  .freq-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .freq-cta-card {
    padding: 36px 24px;
  }

  /* الهرم على الموبايل: كل المستويات بنفس العرض تقريباً */
  .freq-level-2 { width: 90%; }
  .freq-level-3 { width: 80%; }
  .freq-level-4 { width: 70%; }

  .freq-level-name {
    font-size: 17px;
  }
}

/* ===== Dark theme ===== */
[data-theme="dark"] .freq-card {
  background: #141410 !important;
  border-color: rgba(212, 160, 23, 0.2) !important;
}

[data-theme="dark"] .freq-card-daily,
[data-theme="dark"] .freq-card-weekly,
[data-theme="dark"] .freq-card-sometimes,
[data-theme="dark"] .freq-card-never {
  background: #141410 !important;
}

[data-theme="dark"] .freq-card-badge {
  color: #f0e6c0 !important;
}

[data-theme="dark"] .freq-card-tagline {
  color: #d4c890 !important;
}

[data-theme="dark"] .freq-item-chip {
  background: #1e1a10 !important;
  color: #f0e6c0 !important;
  border-color: rgba(212, 160, 23, 0.2) !important;
}

[data-theme="dark"] .freq-section-title {
  color: #d4a017 !important;
}

/* ====================================================================
   📊 MINI-PYRAMID (في الصفحة الرئيسية)
   ==================================================================== */
.freq-mini-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px 30px;
}

.freq-mini-container {
  background: linear-gradient(135deg, #fefcf6 0%, #faf5e8 100%);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 30px rgba(26, 61, 43, 0.08);
}

.freq-mini-header {
  text-align: center;
  margin-bottom: 28px;
}

.freq-mini-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.15);
  color: #b08938;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.freq-mini-title {
  font-family: 'Amiri', serif;
  font-size: clamp(24px, 4vw, 32px);
  color: #1a3d2b;
  margin: 0 0 6px;
  font-weight: 700;
}

.freq-mini-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.freq-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.freq-mini-item {
  background: white;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.freq-mini-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.freq-mini-daily { border-color: rgba(82, 183, 136, 0.3); }
.freq-mini-daily:hover { border-color: #52b788; background: linear-gradient(135deg, white 0%, #f0faf4 100%); }

.freq-mini-weekly { border-color: rgba(201, 168, 76, 0.3); }
.freq-mini-weekly:hover { border-color: #c9a84c; background: linear-gradient(135deg, white 0%, #fdf6e3 100%); }

.freq-mini-sometimes { border-color: rgba(139, 92, 246, 0.3); }
.freq-mini-sometimes:hover { border-color: #8b5cf6; background: linear-gradient(135deg, white 0%, #f5f0fc 100%); }

.freq-mini-never { border-color: rgba(192, 57, 43, 0.3); }
.freq-mini-never:hover { border-color: #c0392b; background: linear-gradient(135deg, white 0%, #fff0f0 100%); }

.freq-mini-emoji {
  font-size: 28px;
  margin-bottom: 4px;
}

.freq-mini-count {
  font-size: 28px;
  font-weight: 900;
  color: #1a3d2b;
  line-height: 1;
}

.freq-mini-daily .freq-mini-count { color: #2d6a4f; }
.freq-mini-weekly .freq-mini-count { color: #b08938; }
.freq-mini-sometimes .freq-mini-count { color: #7c3aed; }
.freq-mini-never .freq-mini-count { color: #c0392b; }

.freq-mini-label {
  font-family: 'Amiri', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a3d2b;
  margin-top: 4px;
}

.freq-mini-desc {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}

.freq-mini-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1a3d2b, #2d6a4f);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  max-width: 320px;
  margin: 0 auto;
}

.freq-mini-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 61, 43, 0.3);
}

/* Mobile: 2 أعمدة بدل 4 */
@media (max-width: 600px) {
  .freq-mini-section {
    padding: 30px 16px 20px;
  }
  .freq-mini-container {
    padding: 24px 18px;
  }
  .freq-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .freq-mini-item {
    padding: 14px 8px;
  }
  .freq-mini-emoji {
    font-size: 24px;
  }
  .freq-mini-count {
    font-size: 24px;
  }
  .freq-mini-label {
    font-size: 14px;
  }
}

/* Dark theme */
[data-theme="dark"] .freq-mini-container {
  background: linear-gradient(135deg, #141410 0%, #181812 100%) !important;
  border-color: rgba(212, 160, 23, 0.25) !important;
}
[data-theme="dark"] .freq-mini-title {
  color: #d4a017 !important;
}
[data-theme="dark"] .freq-mini-item {
  background: #1e1a10 !important;
}
[data-theme="dark"] .freq-mini-count,
[data-theme="dark"] .freq-mini-label {
  color: #f0e6c0 !important;
}

/* ====================================================================
   ⭐ FREQUENCY FILTERS (في صفحة allowed.html)
   ==================================================================== */
.freq-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--cream-dark);
  background: white;
  color: var(--text-mid);
  transition: all 0.2s;
}

.freq-filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.freq-filter-btn.active {
  color: white;
  border-color: transparent;
}

.freq-filter-btn[data-freq="all"].active {
  background: linear-gradient(135deg, #1a3d2b, #2d6a4f);
}

.freq-filter-daily.active {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
}

.freq-filter-weekly.active {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #1a3d2b !important;
}

.freq-filter-sometimes.active {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* ====================================================================
   ⭐ FREQUENCY BADGE على بطاقة المنتج
   ==================================================================== */
.product-freq-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
}

.product-freq-badge.freq-daily {
  background: rgba(82, 183, 136, 0.15);
  color: #2d6a4f;
}

.product-freq-badge.freq-weekly {
  background: rgba(201, 168, 76, 0.18);
  color: #b08938;
}

.product-freq-badge.freq-sometimes {
  background: rgba(139, 92, 246, 0.15);
  color: #7c3aed;
}

.product-freq-badge.freq-never {
  background: rgba(192, 57, 43, 0.15);
  color: #c0392b;
}

/* Dark theme */
[data-theme="dark"] .freq-filter-btn {
  background: #1e1a10 !important;
  color: #d4c890 !important;
  border-color: rgba(212, 160, 23, 0.2) !important;
}

/* ====================================================================
   ⭐ مؤشر التكرار المدمج (في weekly-plan + about)
   ==================================================================== */
.wp-freq-info-section {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.about-freq-section {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px 20px 0;
}

.wp-freq-details {
  background: linear-gradient(135deg, #fefcf6 0%, #faf5e8 100%);
  border-radius: 18px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 6px 24px rgba(26, 61, 43, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.wp-freq-details[open] {
  box-shadow: 0 10px 32px rgba(26, 61, 43, 0.12);
}

.wp-freq-summary {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
  list-style: none;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
  transition: background 0.2s;
}

.wp-freq-summary::-webkit-details-marker { display: none; }
.wp-freq-summary::marker { display: none; }

.wp-freq-summary:hover {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(201, 168, 76, 0.08));
}

.wp-freq-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.wp-freq-summary-text {
  flex: 1;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.wp-freq-summary-text strong {
  color: var(--green-dark);
  font-family: 'Amiri', serif;
  font-size: 18px;
}

.wp-freq-arrow {
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.wp-freq-details[open] .wp-freq-arrow {
  transform: rotate(180deg);
}

.wp-freq-content {
  padding: 24px;
  border-top: 1.5px dashed rgba(201, 168, 76, 0.25);
}

.wp-freq-intro {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 0 0 20px;
  text-align: center;
}

.wp-freq-intro strong {
  color: var(--green-dark);
}

.wp-freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.wp-freq-item {
  background: white;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.wp-freq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.wp-freq-daily { border-color: rgba(82, 183, 136, 0.3); background: linear-gradient(135deg, white 0%, #f0faf4 100%); }
.wp-freq-weekly { border-color: rgba(201, 168, 76, 0.3); background: linear-gradient(135deg, white 0%, #fdf6e3 100%); }
.wp-freq-sometimes { border-color: rgba(139, 92, 246, 0.3); background: linear-gradient(135deg, white 0%, #f5f0fc 100%); }
.wp-freq-never { border-color: rgba(192, 57, 43, 0.3); background: linear-gradient(135deg, white 0%, #fff0f0 100%); }

.wp-freq-emoji {
  font-size: 32px;
  margin-bottom: 6px;
}

.wp-freq-name {
  font-family: 'Amiri', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wp-freq-daily .wp-freq-name { color: #2d6a4f; }
.wp-freq-weekly .wp-freq-name { color: #b08938; }
.wp-freq-sometimes .wp-freq-name { color: #7c3aed; }
.wp-freq-never .wp-freq-name { color: #c0392b; }

.wp-freq-desc {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.wp-freq-examples {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.8;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.wp-freq-note {
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.08), rgba(42, 171, 238, 0.08));
  border: 1.5px solid rgba(34, 158, 217, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #1c5475;
}

.wp-freq-note strong {
  color: #1c8bc7;
}

.wp-freq-link {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1a3d2b, #2d6a4f);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.wp-freq-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 61, 43, 0.3);
}

/* Mobile */
@media (max-width: 600px) {
  .wp-freq-summary {
    padding: 14px 16px;
    gap: 10px;
  }
  .wp-freq-summary-text {
    font-size: 14px;
  }
  .wp-freq-summary-text strong {
    font-size: 15px;
  }
  .wp-freq-content {
    padding: 18px 16px;
  }
  .wp-freq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .wp-freq-item {
    padding: 12px 10px;
  }
  .wp-freq-emoji {
    font-size: 26px;
  }
  .wp-freq-name {
    font-size: 15px;
  }
  .wp-freq-desc {
    font-size: 11px;
  }
  .wp-freq-examples {
    font-size: 10px;
  }
}

/* Dark theme */
[data-theme="dark"] .wp-freq-details {
  background: linear-gradient(135deg, #141410 0%, #181812 100%) !important;
  border-color: rgba(212, 160, 23, 0.3) !important;
}

[data-theme="dark"] .wp-freq-item {
  background: #1e1a10 !important;
}

[data-theme="dark"] .wp-freq-summary-text strong {
  color: #d4a017 !important;
}
