@charset "utf-8";
/* CSS Document */


    .ust-search-icon {color: #fff;
      font-size: 26px;
      cursor: pointer;
      transition: color 0.3s;
    }

    .ust-search-icon:hover {
      color: #f39c12;
    }

    .ust-search-box {
      position: absolute;
      top: 100%;
      right: 20px;
      width: 400px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 10px;
      margin-top: 10px;
      overflow: hidden;

      /* animasyon başlangıç */
      max-height: 0;
      opacity: 0;
      transition: all 0.4s ease;
      pointer-events: none; /* kapalıyken tıklanamaz */
    }

    .ust-search-box.active {display: flex;
      max-height: 80px; /* kutunun yüksekliği */
      opacity: 1;
      pointer-events: auto;
    }

    .ust-search-box form {
      display: flex;
      align-items: center;
    }

   .ust-search-box input {
      width: 344px;
      height: 36px;
      border: 1px solid #ccc;
      border-radius: 6px 0 0 6px;
      padding: 0 10px;
      outline: none;
      font-size: 14px;
    }

    .ust-search-box button {
      width: 36px;
      height: 36px;
      border: none;
      background: #f39c12;
      color: #fff;
      font-size: 16px;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      transition: background 0.3s;
    }

   .ust-search-box button:hover {
      background: #d35400;
    }