/* ============================================
   PG Selector Dropdown - ilovepdf Clean Style
   ============================================ */

.blog-lang-switcher-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0 28px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-lang-dropdown {
  position: relative;
  display: inline-block;
}

/* Main Button - Clean & Simple */
.blog-lang-btn {
  position: relative;
  background: #E5322D;
  color: #FFF;
  padding: 12px 44px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(229, 50, 45, 0.2);
  transition: all 0.2s ease;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blog-lang-btn:hover {
  background: #C41E1A;
  box-shadow: 0 4px 14px rgba(229, 50, 45, 0.3);
  transform: translateY(-1px);
}

.blog-lang-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(229, 50, 45, 0.2);
}

.btn-glow {
  display: none;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.blog-lang-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
}

/* Dropdown Content - Clean White Card */
.blog-lang-dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
  top: calc(100% + 10px);
  text-align: left;
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
  border: 1px solid #E8E8E8;
}

.blog-lang-dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Section Headers */
.pg-type-header {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid #F0F0F0;
  background: #FAFAFA;
}

.pg-type-header i {
  font-size: 10px;
}

/* Option Items */
.pg-option {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
  position: relative;
  border-bottom: 1px solid #F5F5F5;
}

.pg-option:last-child {
  border-bottom: none;
}

.pg-option:hover {
  background: #F9F9F9;
  color: #E5322D;
}

.pg-option::before {
  display: none;
}

.option-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.pg-option:hover .option-icon {
  background: #FFEBEE;
}

.option-icon i {
  font-size: 14px;
  color: #666;
}

.pg-option:hover .option-icon i {
  color: #E5322D;
}

.option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.pg-option:hover .option-title {
  color: #E5322D;
}

.option-desc {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.option-arrow {
  opacity: 0;
  transition: all 0.15s ease;
  color: #CCC;
  font-size: 12px;
}

.pg-option:hover .option-arrow {
  opacity: 1;
  color: #E5322D;
}

/* Color Variants */
.pg-boy .option-icon { color: #E5322D; }
.pg-girl .option-icon { color: #E91E63; }
.pg-premium .option-icon { color: #F97316; }