
    /* Country Selector */
    .country-selector {
      position: relative;
      display: inline-flex;
      align-items: center;
      margin-left: 12px;
    }
    .country-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #e5e5e5;
      background: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.2s ease;
    }
    .country-btn:hover {
      border-color: #141414;
    }
    .country-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      padding-top: 8px;
      background: transparent;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
      z-index: 1000;
    }
    .country-dropdown-inner {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      min-width: 180px;
      overflow: hidden;
    }
    .country-selector:hover .country-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .country-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      transition: background 0.2s ease;
    }
    .country-option:hover {
      background: #f5f5f5;
    }
    .country-option.active {
      background: #f0f0f0;
    }
    .country-option span.flag {
      font-size: 20px;
    }
    /* Fiscal AI Link */
    .fiscal-ai-link {
      display: inline-flex !important;
      align-items: center;
      gap: 6px;
      background: #cef17b;
      color: #1a1a1a !important;
      padding: 6px 14px !important;
      border-radius: 20px;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .fiscal-ai-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.5s ease;
    }
    .fiscal-ai-link:hover {
      background: #c4e96e;
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 20px rgba(206, 241, 123, 0.6);
    }
    .fiscal-ai-link:hover::before {
      left: 100%;
    }
    .fiscal-ai-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
    }
    .fiscal-ai-link:hover svg {
      transform: rotate(20deg) scale(1.15);
    }
